diff --git a/2026/day-01/learning-plan.md b/2026/day-01/learning-plan.md new file mode 100644 index 0000000000..c5d8336aba --- /dev/null +++ b/2026/day-01/learning-plan.md @@ -0,0 +1,20 @@ +# Current Level - Fresher in DevOps +(Ex- Electrical Maintenance Engineer of Tata Steel with 5 year Experience). + +--- +## Goals of 90 Days of DevOps +1. learning a Basics of DevOps. +2. Making Notes with Consistency. +3. Improveing Myself Everyday with Hands-On Practice. + +--- +## Core DevOps Skills +1. Linux and Networking +2. Git & Docker, Kubernetes +3. Understand how to debug the problems and finding a reason behind the problem why it's occur?. + +--- +## Weekly Time Budget - +1. Daily - 3 Hours spending on learning and hands-on. +2. Weekdays - 2 Hours spending on learning and hands-on. +---- diff --git a/2026/day-02/linux-architecture-notes.md b/2026/day-02/linux-architecture-notes.md new file mode 100644 index 0000000000..3e17a7e911 --- /dev/null +++ b/2026/day-02/linux-architecture-notes.md @@ -0,0 +1,113 @@ +# Linux Operating System +## Operating System +- The operating system manages the communication between your software and your hardware. Without the operating system (OS), the software wouldn’t function. +- It is the manager and administrator of all the system resources and facilities. Without it, nothing works. +## What is Linux? +- Just like Windows, iOS, and Mac OS, Linux is an operating system. +- An operating system is software that manages all of the hardware resources associated with your desktop or laptop. +--- +### Linux Operating System have several different pieces. +- Bootloader – The software that manages the boot process of your computer. For most users, this will simply be a splash screen that pops up and eventually goes away to boot into the operating system. +- Kernel – The kernel is the core of the system and manages the CPU, memory, and peripheral devices. + -The kernel is the lowest level of the OS. +- Init system – This is a sub-system that bootstraps the user space and is charged with controlling daemons. + - One of the most widely used init systems is systemd. It is the init system that manages the boot process, once the initial booting is handed over from the bootloader (i.e., GRUB or GRand Unified Bootloader). +- Daemons – These are background services (printing, sound, scheduling, etc.). + - It will start up during boot or after you log into the desktop. +- Graphical server – This is the sub-system that displays the graphics on your monitor. +- Desktop environment – This is the piece that the users actually interact with. +- Applications – Ubuntu Linux has the Ubuntu Software Center (a rebrand of GNOME Software) which allows you to quickly search among the thousands of apps and install them from one centralized location. +--- +## Why Use Linux? +- Linux is less vulnerable to such attacks. As for server reboots, they’re only necessary if the kernel is updated. +- It is not out of the ordinary for a Linux server to go years without being rebooted. +- If you follow the regular recommended updates, stability and dependability are practically assured. +- You can install Linux on many computers as you like without paying a rupees for software or server licensing. +--- + +## Open Source +- You can freely run the program, for any purpose. +- You can freely study how the program works, and change it, make it according to what you want. +- You can freely redistribute copies so you can help others. +- You can freely distribute copies of your modified versions to others. +--- + +## What is a “distribution?” +Linux has a number of different versions to suit From new users to hard-core users, you’ll find a “flavor” of Linux. +These versions are called distributions (or, in the short form, “distros”). +- Popular Linux distributions include: +1. LINUX MINT +2. MANJARO +3. DEBIAN +4. UBUNTU +5. ANTERGOS +6. SOLUS +7. FEDORA +8. ELEMENTARY OS +9. OPENSUSE +--- + +## Which distribution is right for you? + +- For Beginner with basic skills --- Linux Mint, Ubuntu, Elementary OS or Deepin. +- For Intermediate or above-average range skills, you could go with a distribution like --- Debian or Fedora. +- For Advanced level skills which know's computer and system administration, use a distribution like --- Gentoo. +- If you want a challenge, you can build your own Linux distribution, with the help of Linux From Scratch. +--- + +## Installing Linux in Windows +- Through WSL2. +- Through Virtual Machines. +- Through DualBoot. + +The Ubuntu Server does not install a GUI interface +- You can install a GUI package on the Ubuntu Server with a single command like. +- `sudo apt-get install ubuntu-desktop` +--- + +## Process & Process States: + +- A process is more than just a program. For example, if you are using a text editor, the file you are editing is not part of the program on disk, but is part of the process in memory. If someone else were to be using the same editor, both of you would be using the same program. However, each of you would have a different process in memory + +- Many different users can be on the system at the same time, they have processes that are in memory all at the same time. The system needs to keep track of what user is running what process, which terminal the process is running on, and what other resources the process has (such as open files). All of this is part of the process. +With the exception of the init process (PID 1) every process is the child of another process. Therefore every process with the exception of the init process has a “parent” process. +--- + +### Process States +The states that a Process enters in working from start till end are known as Process states. These are listed below as: +- Created -Process is newly created by system call, is not ready to run +- User running -Process is running in user mode which means it is a user process. +- Kernel Running -Indicates process is a kernel process running in kernel mode. +- Zombie- Process does not exist/ is terminated. +- Preempted- When process runs from kernel to user mode, it is said to be preempted. +- Ready to run in memory- It indicated that process has reached a state where it is ready to run in memory and is waiting for kernel to schedule it. +- Ready to run, swapped - Process is ready to run but no empty main memory is present +- Sleep, swapped- Process has been swapped to secondary storage and is at a blocked state. +- Asleep in memory- Process is in memory(not swapped to secondary storage) but is in blocked state. +--- + +### After Process States status will be changing like this- +- User-running: Process is in user-running. +- Kernel-running: Process is allocated to kernel and hence, is in kernel mode. +- Ready to run in memory: Further, after processing in main memory process is rescheduled to the Kernel.i.e.The process is not executing but is ready to run as soon as the kernel schedules it. +- Asleep in memory: Process is sleeping but resides in main memory. It is waiting for the task to begin. +- Ready to run, swapped: Process is ready to run and be swapped by the processor into main memory, thereby allowing kernel to schedule it for execution. +- Sleep, Swapped: Process is in sleep state in secondary memory, making space for execution of other processes in main memory. It may resume once the task is fulfilled. +- Pre-empted: Kernel preempts an on-going process for allocation of another process, while the first process is moving from kernel to user mode. +- Created: Process is newly created but not running. This is the start state for all processes. +- Zombie: Process has been executed thoroughly and exit call has been enabled. The process, thereby, no longer exists. But, it stores a statistical record for the process. This is the final state of all processes. +--- + +## Commands in daily use +1. `pwd` +2. `ls` +3. `cd` +4. `mkdir` +5. `touch` + +--- + + + + + diff --git a/2026/day-03/linux-commands-cheatsheet.md b/2026/day-03/linux-commands-cheatsheet.md new file mode 100644 index 0000000000..053738dddd --- /dev/null +++ b/2026/day-03/linux-commands-cheatsheet.md @@ -0,0 +1,70 @@ +# Linux Commands Cheatsheet +---- +## Linux Commands list & Networking Commands +---- +| Commands | Description | +| ---------| ----------- | +| `pwd` | It shows the present working directory | +| `ls` | It shows available files and directories list in present working directory | +| `uname` | It shows name of the OS | +| `uname -r` | It shows version of OS | +| `cd` | It use for change directory from currently you are | +| `clear` | It use for clear screen | +| `whoami` | It shows currently login user name | +| `history` | It show history list of your commands | +| `date` | It show time and date | +| `mkdir` | It use for creating a directory(folder) like `mkdir Documents`. | +| `touch` | It use for create a file like `touch hello.txt`. | +| `cp` | It use for copy and paste file or directory `cp /`. | +| `mv` | It use for 1.( move file/directory{folder}) and 2. (rename file/directory{folder}). | +| `rm` | It use for remove file/directory(folder). like `rm /Documents`. | +| `ps` | It show the process for current shell | +| `htop` | This will open an interactive interface showing all running processes. | +| `exit` | It use for logout. | +| `ping` | It use to check Internet connection between host/server and user/server | +| `ip addr` | It show information of all network interfaces and IPs | +| `dig` | It shows information about DNS. | +| `host` | It prints IP address of a specific domain. | +| `ping` | It use for testing connectivity between two systems on a network | + +---- +## Linux User Management and Group Management Commands. +| Commands | Description | Example | +| ---------| ----------- | ----------- | +| `useradd` | It use for add new useraccount in your system. | `useradd sumit` | +| `cat /etc/passwd \| grep sumit` | It show you the information of useraccount on your shell | `cat /etc/passwd \| grep sumit` | +| `userdel` | It use for deleting an existing useraccount from your system | `userdel sumit` | +| `users` | It use for showing name of current active logged-In Users | `users` | +| `who` | It use for showing information about current logged-In User | `who` | +| `whoami` | It use for display the name of current logged-In user | `whoami` | +| `passwd` | It use for password change of user | `passwd sumit` | +| `groupadd` | It use for adding a new usergroup | `groupadd Hello` | +| `groupdel` | It use for deleting an existing group | `groupdel Hello` | +| `groupmod -n` | It use for modify or change a group name | `groupmod -n Jai Hello` | +| `groups` | It use for show groups where Jai is a member of group. | `groups Jai` | +| `gpasswd -a` | It use for manage group members and group passwords | `gpasswd -a sumit Jai` | +| `grpck` | It use for check group configuration files for errors | `grpck` | + +---- + + + + + + + + + + + + + + + + + + + + + + diff --git a/2026/day-04/linux-practice.md b/2026/day-04/linux-practice.md new file mode 100644 index 0000000000..b2d2999bf3 --- /dev/null +++ b/2026/day-04/linux-practice.md @@ -0,0 +1,140 @@ +# Practiced on Process commands, Service Commands, Log Commands. +---- + +## Process Management Commands. +**1. ps** command show you process running on your kernel.:- +* PID :- is the unique processID of process. * +* TTY:- is the type of terminal where user is logged in. pts means pseudo terminal. * +* TIME gives you how long the process has been running. * +* CMD is the command that you run to launch the process. * + +| Commands | Description | Example | +| -------- | ----------- | ------- | +| `ps` | It show running process in the current shell | `ps` | +| `ps -U` | It show information about all processes run by user. | `ps -U username` | +| `pstree` | It show running processs information in tree . | `pstree` | + +------ + +**2. top** command show you the running process in real-time with memory and cpu usage. +**top** command use for monitoring of processes. +* PID: Unique Process ID given to each process. * +* User: Username of the process owner. * +* PR: Priority given to a process while scheduling. * +* NI: ‘nice’ value of a process. * +* VIRT: Amount of virtual memory used by a process. * +* RES: Amount of physical memory used by a process. * +* SHR: Amount of memory shared with other processes. * +* S: state of the process +‘D’ = uninterruptible sleep +‘R’ = running +‘S’ = sleeping +‘T’ = traced or stopped +‘Z’ = zombie * +* %CPU: Percentage of CPU used by the process. * +* %MEM; Percentage of RAM used by the process. * +* TIME+: Total CPU time consumed by the process. * +* Command: Command used to activate the process. * + +| Commands | Description | Example | +| -------- | ----------- | ------- | +| `top` | It track the running process. | `top` | + +------ + +**3. kill** command **kill(stop)** your running process. +* it will use with speccific process ID or name of the process. * + +| Commands | Description | Example | +| -------- | ----------- | ------- | +| `kill` | It use for stop process in your OS. | `kill 9 1234` | + +------- + +**4. nice** command use for start new process with priority. +* Priority values range from -20 (highest) to 19 (lowest). * +* it will use with speccific process ID or name of the process. * +* **renice** command use for change priority of running process. * +* it will use with speccific process ID or name of the process. * + +| Commands | Description | Example | +| -------- | ----------- | ------- | +| `nice` | It will use for start new process with priority | `nice -n 10 command` | +| `renice` | It will use for change priority of process | `renice -n 5 -p 1234` | + +------- + +**5. free** command show free and used memory(RAM) on linux. +* **free -m** show you output in MB. * +* **free -g** show you output in GB. * +* **free -h** show you output in readable format. * + +| Commands | Description | Example | +| -------- | ----------- | ------- | +| `free` | It show you free and used memory on your system. | `free -h` | + +----- + +6. **df** command show free hard disk space on your linux system. +* **df -h** show you output in readable format. * + +| Commands | Description | Example | +| -------- | ----------- | ------- | +| `df` | It show you free hard disk on your linux system.| `df -h` | + +----- + +**7. bg** command send process to background. + +| Commands | Description | Example | +| -------- | ----------- | ------- | +| `bg` | It use to start a recently suspended job on your linux system.| `bg` | + +----- +**8. fg** command use to run a stopped process in foreground. + +| Commands | Description | Example | +| -------- | ----------- | ------- | +| `fg` | It will run process in forground which is stopped.| `fg %id_of_job &` | + +----------- +# system Management Commands + +**1. `systemctl`** It controls system startup, and manages background services. +* `systemctl start apache` start the service of apache with this command. * +* `systemctl stop apache` stop the service of apache with this command. * +* `systemctl status ssh` show status of ssh service with this command. * +* `sudo systemctl enable apache2` It Enables the Apache web server to start automatically at system boot. * +* `sudo systemctl disable apache2` It Disables the Apache web server, preventing it from starting automatically at boot. * +* `sudo systemctl status apache2` It Displays the "current status" of Apache (whether it’s _active_, _inactive_, _running_, or _failed_). * +* `sudo systemctl restart apache2` It Restarts the Apache web server, applying any configuration or update changes. * +* `sudo systemctl reload apache2` It Reloads Apache configuration without completely stopping the service, useful after minor config edits. * +* `sudo systemctl mask apache2` It Prevents the Apache service from being started manually or automatically, even if required by other services. * +* `sudo systemctl unmask apache2` It Allows the Apache service to be started or enabled again. * +* `sudo systemctl set-default graphical.target` It Sets the system to boot into the graphical (GUI) mode by default instead of command-line mode. * +* `systemctl list-unit-files` It Lists all available unit files on the system, showing which are enabled, disabled, or static. * + +---------- + +# Logging and Monitoring Commands + +**1. `journalctl`** It command is used to view logs collected by the systemd journal. +* `journalctl -xe` This shows detailed error logs and recent system messages. * +* `last` The last command displays the login and logout history of users. * +* `history` The history command shows previously executed commands by the user. * +* `sar -u` The sar command collects and reports system performance statistics. * +* `script session.log` The script command records all terminal activity in a file. * +* `scriptreplay timing.log session.log` The scriptreplay command replays a terminal session recorded using the script command. * +------ + + + + + + + + + + + + diff --git a/2026/day-05/linux-troubleshooting-runbook.md b/2026/day-05/linux-troubleshooting-runbook.md new file mode 100644 index 0000000000..4ce3c6245b --- /dev/null +++ b/2026/day-05/linux-troubleshooting-runbook.md @@ -0,0 +1,147 @@ +# Linux Troubleshooting Runbook – Day 05 + +## Target service / process + +* **Service:** `sshd` (OpenSSH Daemon) * +* **Purpose:** Remote access to the system * +* **Why chosen:** Critical service, always running, clear logs * + +--- + +## Environment basics + +```bash +uname -a +``` + +**Observed:** Linux kernel 5.x, x86_64. Confirms kernel version and architecture. + +```bash +cat /etc/os-release +``` + +**Observed:** Ubuntu 22.04 LTS. Confirms distro and release for package/log locations. + +--- + +## Filesystem sanity check + +```bash +mkdir /tmp/runbook-demo +``` + +**Observed:** Directory created successfully — filesystem is writable. + +```bash +cp /etc/hosts /tmp/runbook-demo/hosts-copy && ls -l /tmp/runbook-demo +``` + +**Observed:** File copied correctly, permissions look normal. No disk or permission issues. + +--- + +## Snapshot: CPU & Memory + +```bash +ps -o pid,pcpu,pmem,comm -C sshd +``` + +**Observed:** sshd processes using <1% CPU and minimal memory. No abnormal usage. + +```bash +free -h +``` + +**Observed:** ~60% memory available, no swap pressure. Memory not constrained. + +--- + +## Snapshot: Disk & IO + +```bash +df -h +``` + +**Observed:** Root filesystem at ~45% usage. Plenty of free disk space. + +```bash +du -sh /var/log +``` + +**Observed:** /var/log ~250MB. Logs not consuming excessive disk. + +--- + +## Snapshot: Network + +```bash +ss -tulpn | grep sshd +``` + +**Observed:** sshd listening on port 22 (IPv4 and IPv6). Service is bound correctly. + +```bash +curl -I localhost +``` + +**Observed:** Connection succeeds (HTTP headers returned). Network stack responsive. + +--- + +## Logs reviewed + +```bash +journalctl -u ssh -n 50 +``` + +**Observed:** Normal startup messages, successful login attempts, no errors. + +```bash +tail -n 50 /var/log/auth.log +``` + +**Observed:** Recent successful SSH logins, no failed-auth storms or warnings. + +--- + +## Quick findings + +* sshd is healthy and responsive +* No CPU, memory, or disk pressure +* Network port listening as expected +* Logs show normal operational behavior +* No immediate remediation required + +--- + +## If this worsens (next steps) + +1. **Restart strategy** + + ```bash + systemctl restart ssh + systemctl status ssh + ``` + + Check for restart failures or dependency issues. + +2. **Increase log verbosity** + + * Temporarily increase `LogLevel VERBOSE` in `/etc/ssh/sshd_config` + * Reload config and monitor logs for authentication or connection errors + +3. **Deep inspection** + + * Attach `strace -p ` if sshd is hanging + * Capture network traffic with `tcpdump` to identify connection issues. + +--- + + + + + + + + + diff --git a/2026/day-06/file-io-practice.md b/2026/day-06/file-io-practice.md new file mode 100644 index 0000000000..acb0737639 --- /dev/null +++ b/2026/day-06/file-io-practice.md @@ -0,0 +1,17 @@ +# Day-06 + +------ +## For Creating a Empty file + +## How to create a single and multiple files ? +* use this command for single file --> `touch notes.txt` . +* use this command for multiple file --> `touch app.py notes.txt day-06.md` . +------- +## How to write file using redirection( > ) ? +* use like this - `echo "Line 1" > notes.txt` +* use like this - `echo "Line 2" >> notes.txt` +* use like this - `echo "Line 3" | tee -a notes.txt` +* use for reading the file `cat notes.txt` +* `head -n 2 notes.txt` +* `tail -n 2 notes.txt` +* diff --git a/2026/day-07/day-07-linux-fs-and-scenarios.md b/2026/day-07/day-07-linux-fs-and-scenarios.md new file mode 100644 index 0000000000..614d75f60a --- /dev/null +++ b/2026/day-07/day-07-linux-fs-and-scenarios.md @@ -0,0 +1,81 @@ +# Day-07 Linux File system hierarchy and practice +---- +## Part-1 : Linux file system Hierarchy +---- + +**/: Root directory, the top level of the file system.** +* Everything, all the files and directories, in Linux are located under ‘root’ represented by ‘/’. +----- +**/home: User home directories**. +* Home directory contains personal directories for the users. The home directory contains the user data and user-specific configuration files. As a user, you’ll put your personal files, notes, programs etc in your home directory. +----- +**/bin: Essential binary executables.** +* The ‘/bin’ directly contains the executable files of many basic shell commands like ls, cp, cd etc. +------ +**/sbin: System administration binaries.** +* This is similar to the /bin directory. The only difference is that is contains the binaries that can only be run by root or a sudo user. You can think of the ‘s’ in ‘sbin’ as super or sudo. +----- +**/etc: Configuration files.** +* The /etc directory contains the core configuration files of the system, use primarily by the administrator and services, such as the password file and networking files. +----- +**/var: Variable data (logs, spool files).** +* Var, short for variable, is where programs store runtime information like system logging, user tracking, caches, and other files that system programs create and manage. +----- +**/usr: User programs and data.** +* in ‘/usr’ go all the executable files, libraries, source of most of the system programs. For this reason, most of the files contained therein is read­only (for the normal user). +* ‘/usr/bin’ contains basic user commands +* ‘/usr/sbin’ contains additional commands for the administrator +* ‘/usr/lib’ contains the system libraries +* ‘/usr/share’ contains documentation or common to all libraries, for example ‘/usr/share/man’ contains the text of the manpage +------- +**/lib: Shared libraries.** +* Libraries are basically codes that can be used by the executable binaries. The /lib directory holds the libraries needed by the binaries in /bin and /sbin directories. +----- +**/tmp: Temporary files.** +* As the name suggests, this directory holds temporary files. Many applications use this directory to store temporary files. Even you can use directory to store temporary files. +-------- +**/opt: Third-party applications.** +* Traditionally, the /opt directory is used for installing/storing the files of third-party applications that are not available from the distribution’s repository. +------ +**/mnt: mnt is used by system administrators to manually mount a filesystem.** + +---- +**/dev: This directory only contains special files, including those relating to the devices. These are virtual files, not physically on the disk.** +* /dev/null: can be sent to destroy any file or string +* /dev/zero: contains an infinite sequence of 0 +* /dev/random: contains an infinite sequence of random values +----- +**/boot: The ‘/boot’ directory contains the files of the kernel and boot image, in addition to LILO and Grub. It is often advisable that the directory resides in a partition at the beginning of the disc.** + +---- +**/proc – Process and kernel files.** +* The ‘/proc’ directory contains the information about currently running processes and kernel parameters. The content of the proc directory is used by a number of tools to get runtime system information. +------- +**/root – The home directory of the root.** +* There is /root directory as well and it works as the home directory of the root user. So instead of /home/root, the home of root is located at /root. Do not confuse it with the root directory (/). +-------- +**/media – Mount point for removable media.** +* When you connect a removable media such as USB disk, SD card or DVD, a directory is automatically created under the /media directory for them. You can access the content of the removable media from this directory. +---- +**/mnt – Mount directory.** +* This is similar to the /media directory but instead of automatically mounting the removable media, mnt is used by system administrators to manually mount a filesystem. +---- +**/srv – Service data** +* The /srv directory contains data for services provided by the system. For example, if you run a HTTP server, it’s a good practice to store the website data in the /srv directory. +---- +## Part-2 : Scenario-based Practice +---- + +* **step 1:** I install the nginx service using `sudo apt install nginx` & run (on my web browser using public ip). +* **step 2:** I checked status of the nginx service using `systemctl status nginx`. +* **step 3:** I enable nginx service is enabled on boot using `systemctl is-enabled nginx. +* **step 4:** I disable nginx service is disabled on boot using `sudo systemctl disable nginx. +* **step 5:** I checked cpu usage, cpu percentage & PID, service running of the nginx service using- +* `ps`, +* `top`, +* `htop`, +* `ps aux --sort=-%cpu | tail -10`. + + + + diff --git a/2026/day-08/day-08-cloud-deplayment.md b/2026/day-08/day-08-cloud-deplayment.md new file mode 100644 index 0000000000..d7e4fae7bf --- /dev/null +++ b/2026/day-08/day-08-cloud-deplayment.md @@ -0,0 +1,21 @@ +# Day-08 Cloud Server Setup: Nginx & Web deployment Task done. + +------- +Screenshots of +* Connecting EC2 server in my local machine via ssh. +* installed nginx service in my web server. +* running nginx service on web browser. +* checked all access and error logs of nginx. +* exported from /var/log/nginx to /home/ubuntu of access and error logs files +* logs files imported in my local macine via scp -i. +----- +![20260202_173626](https://github.com/user-attachments/assets/9c627178-23f9-409a-87c8-f45f6bfccc85) + +![20260202_154421](https://github.com/user-attachments/assets/1b8b8146-d277-41d3-ac79-2279e9b2f7bb) +![20260202_154608](https://github.com/user-attachments/assets/06646b2d-ba07-40c8-8b7c-a83fac4af2a1) +![20260202_154719](https://github.com/user-attachments/assets/3bdf8bdb-6e89-42be-9705-d0211bf0f238) +![20260202_155414](https://github.com/user-attachments/assets/77455691-0017-48bb-b4dc-fcfac84d3483) +![20260202_160947](https://github.com/user-attachments/assets/1272fe06-6f05-4100-ad65-d98cf55222d0) +![20260202_171415](https://github.com/user-attachments/assets/2bc38ff1-716d-4242-bdb6-083d984ea22d) +![20260202_171443](https://github.com/user-attachments/assets/5aa46f51-4dc3-4091-b858-1be4d2473c47) +![20260202_173117](https://github.com/user-attachments/assets/72a20efd-55dd-4b39-a292-8962b319a7f9) diff --git a/2026/day-09/day-09-user-management.md b/2026/day-09/day-09-user-management.md new file mode 100644 index 0000000000..8c6b83cde9 --- /dev/null +++ b/2026/day-09/day-09-user-management.md @@ -0,0 +1,41 @@ +# Day 09 Challenge +---- +## Users & Groups Created +- Users: tokyo, berlin, professor, nairobi +- Groups: developers, admins, project-team +----- + +## Group Assignments + +| Group | Users in Groups | +| ----- | --------------- | +| developers | tokyo, berlin | +| admins | berlin, professor | +| project-team | tokyo, nairobi | + +------ + +## Directories Created + +* drwxrwxr-x 2 775 developers 4096 Feb 2 12:57 /opt/dev-project +* drwxrwxr-x 2 root project-team 4096 Feb 2 13:20 /opt/team-workspace/ +----- + +## Commands Used +| Commands | Used for | +| ----- | --------------- | +| `sudo useradd -m -s /bin/bash tokyo` | This command use for add user with bash terminal | +| `cat /etc/passwd` | this command shows you list of users | +| `cd /home` | This command take you to home directory. | +| `sudo groupadd developers` | This command use to add group. | +| `sudo usermod -aG developers tokyo` | This command use to add user to group. | +| `sudo mkdir -p /opt/dev-project` | This command is use to create directory. | +| `sudo groupadd -f developers` | This command is used to add group. | +| `sudo chown :developers /opt/dev-project` | This command is use for change ownership of directory. | +| `sudo chmod 775 /opt/dev-project` | This command is use for change permission of directory. | +| `ls -ld /opt/dev-project` | This command is use to show directory. | +| `sudo -u tokyo touch /opt/dev-project/tokyo_file` | This command is use to create file in directory through user. | +| `ls -l /opt/dev-project/tokyo_file` | This command is use to show directory. | +| `sudo -u berlin touch /opt/dev-project/berlin_file` | This command is use to create file in directory through user | +| `ls -l /opt/dev-project/` | This command is use to show directory. | +| `sudo chgrp project-team /opt/team-workspace` | This command is used to change group of directory. | diff --git a/2026/day-10/day-10-file-permissions.md b/2026/day-10/day-10-file-permissions.md new file mode 100644 index 0000000000..786fc3da69 --- /dev/null +++ b/2026/day-10/day-10-file-permissions.md @@ -0,0 +1,63 @@ +# Day 10 – File Permissions & File Operations Challenge +--------- +## Files Created +* File created `devops.txt` +* File created `notes.txt` +* File created `script.sh` + +--------- +## Permission Changes +* **Before** -rw-rw-r-- read and write permissions have owner and group, others have only read permission. +* **After devops.txt** -r--r--r-- read permission have owner, group and others. +* **After notes.txt** -rw-r----- read and write permissions have owner, group have read write, others haven't any permission. +* **After script.sh** -rwxrw-r-- read, write, execute permissions have owner, group have read, write permissions and others have only read permission. + +| file | permissions (Before) | permissions (after) | +| ---- | -------------------- | ------------------- | +| `devops.txt` |`-rw-rw-r-- 1 ubuntu ubuntu 0 Feb 3 09:58` | `-r--r--r-- 1 ubuntu ubuntu 0 Feb 3 09:58` | +| `notes.txt` | `-rw-rw-r-- 1 ubuntu ubuntu 0 Feb 3 09:58` | `-rw-r----- 1 ubuntu ubuntu 87 Feb 3 10:14` | +| `script.sh` | `-rw-rw-r-- 1 ubuntu ubuntu 0 Feb 3 09:59` | `-rwxrw-r-- 1 ubuntu ubuntu 260 Feb 3 10:09` | +------ + +## Commands Used +| commands | Used for | +| -------- | -------- | +| `touch` | This command is use to create a new file. | +| `ls -l` | This command is use to show detailed information of files. | +| `echo "Line 1" > notes.txt` | This command is use to write a Line 1 in file. | +| `echo "Line 2" >> notes.txt` | This command is use to append and write a Line 2 in file. | +| `echo "Line 3" /| tee -a notes.txt` | This command is use to append and print a Line 3 in file. | +| `cat notes.txt` | Cat command is use to print the file. | +| `vim script.sh` | vim is a editor in linux to write a file. for inserting press i, for save esc, :wq and hit enter. | +| `head -n 5 /etc/passwd` | This command show first 5 system's user account database. | +| `tail -n 5 /etc/passwd` | Thi command displays the last five lines of the user account file | +| `view script.sh` | This command is use for view file | +| `vim -R script.sh` | This command is use for readonly mode in vim | +| `chmod u+x script.sh` | It add execute permission for the user (owner) of the file. | +| `./script.sh` | This command is use to execute the file | +| `mkdir -p project` | This command is use to create a directory for prevention of error if directory is existing. | +---------- +When i try to write something or redirecting something to the file i got an error message. +----- +* ubuntu@ip-172-31-45-52:~$ `cat devops.txt` +* ubuntu@ip-172-31-45-52:~$ `echo "Hello devops" > devops.txt` +* `-bash: devops.txt: Permission denied` +--------- +When i try to execute the file without execution permission i got an error message. +---- +* ubuntu@ip-172-31-45-52:~$ `./notes.txt` +* `-bash: ./notes.txt: Permission denied` +--------- +## What I Learned +* Files are not executable when it's haven't a permission for execution. +* Files aren't writable when it's haven't permission for writing. +* When you try to execute, read, write any file first check the file permissions. + +----------- + + + + + + + diff --git a/2026/day-11/day-11-file-ownership.md b/2026/day-11/day-11-file-ownership.md new file mode 100644 index 0000000000..561a0b6450 --- /dev/null +++ b/2026/day-11/day-11-file-ownership.md @@ -0,0 +1,62 @@ +# Day 11 Challenge +------ +## Files & Directories Created + +| list of files and directories | +| ----------------------------- | +|drwxrwxr-x 2 berlin heist-team 4096 Feb 4 09:46 app-logs | +| drwxrwxr-x 2 ubuntu ubuntu 4096 Feb 4 09:58 bank-heist | +| -rw-rw-r-- 1 berlin heist-team 13 Feb 4 09:32 devops-file.txt | +| drwxrwxr-x 4 professor planners 4096 Feb 4 09:48 heist-project | +| -rw-rw-r-- 1 professor heist-team 0 Feb 4 09:41 project-config.yaml | +| -rw-rw-r-- 1 ubuntu heist-team 0 Feb 4 09:37 team-notes.txt | +| --rw-rw-r-- 1 tokyo vault-team 0 Feb 4 09:58 /bank-heist/access-codes.txt | +| -rw-rw-r-- 1 berlin tech-team 0 Feb 4 09:58 /bank-heist/blueprints.pdf | +| -rw-rw-r-- 1 nairobi vault-team 0 Feb 4 09:58 /bank-heist/escape-plan.txt | +| drwxrwxr-x 2 professor planners 4096 Feb 4 09:48 /heist-project/plans | +| drwxrwxr-x 2 professor planners 4096 Feb 4 09:48 /heist-project/vault | +| -rw-rw-r-- 1 professor planners 0 Feb 4 09:48 /heist-project/plans/strategy.conf | +| -rw-rw-r-- 1 professor planners 0 Feb 4 09:48 /heist-project/vault/gold.txt | + +------- + +## Ownership Changes + +| Files/Directory | Before Change| After Change | +| ----------------------------- | ----------------------------- | ----------------------------- | +| /app-logs | drwxrwxr-x 2 berlin heist-team 4096 Feb 4 09:46 app-logs | drwxrwxr-x 2 berlin heist-team 4096 Feb 4 09:46 app-logs | +| /bank-heist | drwxrwxr-x 2 ubuntu ubuntu 4096 Feb 4 09:58 bank-heist | drwxrwxr-x 2 ubuntu ubuntu 4096 Feb 4 09:58 bank-heist | +| devops-file.txt | -rw-rw-r-- 1 ubuntu ubuntu 13 Feb 4 09:09 devops-file.txt | -rw-rw-r-- 1 tokyo ubuntu 13 Feb 4 09:09 devops-file.txt | +| devops-file.txt | -rw-rw-r-- 1 berlin ubuntu 13 Feb 4 09:32 devops-file.txt | -rw-rw-r-- 1 berlin heist-team 13 Feb 4 09:32 devops-file.txt | +| /heist-project | drwxrwxr-x 4 ubuntu ubuntu 4096 Feb 4 09:48 heist-project | drwxrwxr-x 4 professor planners 4096 Feb 4 09:48 heist-project | +| project-config.yaml | -rw-rw-r-- 1 ubuntu ubuntu 0 Feb 4 09:41 project-config.yaml | -rw-rw-r-- 1 professor heist-team 0 Feb 4 09:41 project-config.yaml | +| team-notes.txt | -rw-rw-r-- 1 ubuntu heist-team 0 Feb 4 09:37 team-notes.txt | -rw-rw-r-- 1 ubuntu heist-team 0 Feb 4 09:37 team-notes.txt | +| /bank-heist/access-codes.txt | --rw-rw-r-- 1 ubuntu ubuntu 0 Feb 4 09:58 /bank-heist/access-codes.txt | --rw-rw-r-- 1 tokyo vault-team 0 Feb 4 09:58 /bank-heist/access-codes.txt | +| /bank-heist/blueprints.pdf | rw-rw-r-- 1 ubuntu ubuntu 0 Feb 4 09:58 /bank-heist/blueprints.pdf | rw-rw-r-- 1 berlin tech-team 0 Feb 4 09:58 /bank-heist/blueprints.pdf | +| /bank-heist/escape-plan.txt | -rw-rw-r-- 1 ubuntu ubuntu 0 Feb 4 09:58 /bank-heist/escape-plan.txt | -rw-rw-r-- 1 nairobi vault-team 0 Feb 4 09:58 /bank-heist/escape-plan.txt | +| /heist-project/plans | drwxrwxr-x 2 ubuntu ubuntu 4096 Feb 4 09:48 /heist-project/plans | drwxrwxr-x 2 professor planners 4096 Feb 4 09:48 /heist-project/plans | +| /heist-project/vault | drwxrwxr-x 2 ubuntu ubuntu 4096 Feb 4 09:48 /heist-project/vault| drwxrwxr-x 2 professor planners 4096 Feb 4 09:48 /heist-project/vault | +| /heist-project/plans/strategy.conf | -rw-rw-r-- 1 ubuntu ubuntu 0 Feb 4 09:48 /heist-project/plans/strategy.conf | -rw-rw-r-- 1 professor planners 0 Feb 4 09:48 /heist-project/plans/strategy.conf | +| /heist-project/vault/gold.txt | -rw-rw-r-- 1 ubuntu ubuntu 0 Feb 4 09:48 /heist-project/vault/gold.txt | -rw-rw-r-- 1 professor planners 0 Feb 4 09:48 /heist-project/vault/gold.txt | + +---------- + +## Commands Used + +| Commands | Usage | +| -------- | ----- | +| `touch heist-project/vault/gold.txt` | This command is use to create file under direcories. | +| `sudo adduser tokyo` | This command is use to add user. | +| `sudo chown tokyo devops-file.txt` | This command is use to change ownership of file. | +| `ls -l` | This command shows information of files and directories. | +| `sudo chown professor:heist-team project-config.yaml` | This command is use to change ownership and group permission of file | +| `mkdir -p heist-project/plans` | This command is use to create directory and prevent from error if file already exist. | +| `sudo chown -R professor:planners heist-project/` | This command is use to change ownership and group recursively of directory or file. | + +-------- +## What I Learned +* How to change ownership and group in one command. +* How to change ownership and group of file or directory recursively. +* How to create files and directories recursively. + +---------- \ No newline at end of file diff --git a/2026/day-14/day-14-networking.md b/2026/day-14/day-14-networking.md new file mode 100644 index 0000000000..4932e1ef3c --- /dev/null +++ b/2026/day-14/day-14-networking.md @@ -0,0 +1,74 @@ +# Day-14 Networking Fundamentals & Hands-on Checks + +## OSI Model ( Open System Interconnection ). 7-Layer +1. **Application Layer** - Direct interface for user software (e.g., HTTP for browsers). +2. **Presentation Layer** - Translates, encrypts, and compresses data (e.g., SSL/TLS). +3. **Session Layer** - Manages, synchronizes, and terminates "conversations" between apps. +4. **Transport Layer** - Ensures reliable end-to-end data delivery (TCP, UDP). +5. **Network Layer** - Routes and addresses packets across different networks (IP, ICMP). +6. **Data Link Layer** - Transfers data between devices on the same local network (Ethernet, MAC addresses). +7. **Physical Layer** - Transmits raw 0s and 1s over hardware like cables or Wi-Fi. +------ +## TCP/IP Model ( Transmision Control Protocol/ Internet Protocol ). 4-Layer +1. **Application Layer** - Combines OSI's Application, Presentation, and Session layers. +2. **Transport Layer** - Ensures reliable end-to-end data delivery (TCP, UDP). +3. **Internet Layer** - Network layer; handles IP routing, Routes and addresses packets across different networks (IP, ICMP). +4. **Network Access Layer** - Combines OSI's Data Link and Physical layers. +---------- +## OSI vs TCP/IP model + +| **Parameters** | **OSI Model** | **TCP/IP Model** | +| ------------- | ---------------- | ---------------- | +| Full Form | Open Systems Interconnection | Transmission Control Protocol/Internet Protocol | +| Layers | OSI Model has 7 Layers |TCP/IP Model has only 4 Layers | +| Development | It was developed by ISO | It was developed by DOD | +| Usage | Its the reference model used for study purposes, never implemented |This is the concise version of OSI, and it is logical model which is being implemented | +| Approach | It follows a vertical approach | It follows a horizontal approach | +| Service | Provides quality services | Doesn’t provide quality services | +| Dependency | It is a protocol-independent standard, and it acts as a communication gateway between network and end-user. | It is based on standard protocols. This is a protocol for communication that allows hosts to connect to networks. | +| Delivery | It guarantees the delivery of package | It doesn’t guarantee package delivery | +| Reliability | Less Reliable | Very Reliable | +| Ease of Change | Changes can be done easily in this model | It is not easy to make changes in TCP/IP Model | +------------- + +**Which command gives you the fastest signal when something is broken?** +------- +| For | Command Usage | Why It's fast | +| --------------- | ----------------------------- | -------- | +| **For a Specific Service:** | systemctl is-failed ssh | It bypass the long textual output of systemctl status and gives you a direct "yes/no" on the failure state. | +| **For Recent System-Wide Errors:** | journalctl -xe | The -x flag adds explanatory help text to errors, and -e jumps straight to the end of the log where the most recent failures are recorded. | +| **For Hardware/Kernel Issues:** | sudo dmesg -T --level=err,crit | It hides routine "info" messages and only shows the red flags. | +--------------- +**What layer (OSI/TCP-IP) would you inspect next if DNS fails? If HTTP 500 shows up?** +---- +* If DNS Fails: Inspect Layer 7 (Application) +* Verify local configuration files (like /etc/resolv.conf) or use tools like `nslookup` or `dig` to see if your local resolver can reach the DNS server. +* Next Check: Examine Server Error Logs (e.g., /var/log/nginx/error.log or application-specific logs). This error is almost always caused by server-side code bugs, database connection failures, or misconfigured files like .htaccess. +* Pivoting Sideways: You rarely need to check lower layers (like Layer 3 or 4) for a 500 error because the fact that you received a "500" response proves the network and transport layers are working perfectly. + + +**Two follow-up checks you’d run in a real incident.** +---- +* A service that is "listening" but not "responding" (like an HTTP 500 error) is often choking because it can't write to the disk or has run out of RAM. +* Action: Run `df -h` to see if a partition (especially /var) is 100% full, preventing log or database writes. +* Action: Run `top` or `htop` to identify if a "runaway" process is hogging 100% of the CPU, making the application unresponsive. +* Review Live Application Logs (`tail -f` or `journalctl`): If the network is fine but the app is broken, you need to see exactly what the application is "screaming" about in real-time. +* Action: Use `sudo tail -f /var/log/nginx/error.log` (for web servers) or `journalctl -u -f` to watch errors as they happen. +* Goal: This will tell you if the issue is a database connection failure, a permissions error, or a fatal bug in the code that simple reachability tests can't see. +------------ +**Hands-on Checklist** +----- +* `hostname -I` indicates your machine's private IP on the local network. +* `ping google.com` heck the summary at the end; 0% packet loss indicates a healthy connection, while >5% signals congestion or hardware issues. +* `traceroute ` (or `tracepath`) Lists each "hop" (router) to the destination. Look for asterisks (*), which indicate a timeout or a router refusing to respond—often due to firewall rules—and watch for large jumps in RTT between hops that might signal a bottleneck. +* `ss -tulpn` or `netstat -tulpn` Lists one listening service. For example, SSH on port 22 or HTTP on port 80. The LISTEN state confirms the port is open and waiting for connections. +* `dig google.com` or `nslookup google.com` Records the resolved IP address (e.g., 142.250.xxx.xxx). This confirms your DNS server is working correctly. +* `curl -I https://www.google.com` Note the HTTP status code. A 200 OK means success; a 301 or 302 indicates a redirect; and codes like 404 or 500 signal application-level errors. +* `netstat -an | head` or `ss -an | head` LISTEN: Sockets waiting for a connection (e.g., a web server ready to accept users). ESTABLISHED: Active, ongoing data transfers between your machine and another. + + +------------- + + + + diff --git a/2026/day-15/day-15-networking-concepts.md b/2026/day-15/day-15-networking-concepts.md new file mode 100644 index 0000000000..d1cbf63e48 --- /dev/null +++ b/2026/day-15/day-15-networking-concepts.md @@ -0,0 +1,81 @@ +# Day 15 Networking Concepts: DNS, IP, Subnets & Ports +----------- +## Task 1: DNS - How Names Becomes IPs +- DNS translates human-readable domain names (like google.com) into machine-readable IP addresses. +- When you type a URL, your computer queries a recursive resolver, +- **User request --> recursive resolver --> Root --> TLD[Top Level Domain] --> Authoritative servers,** to return the correct IP to your browser. +--------- +**DNS Record Types** +- **A:** Maps a domain to an IPv4 address. +- **AAAA:** Maps a domain to an IPv6 address. +- **CNAME:** An alias that points one domain name to another. +- **MX:** Directs email to the domain's mail servers. +- **NS:** Identifies the authoritative name servers for the zone. +- `dig google.com` +- Output +text +`ANSWER SECTION: +google.com. 300 IN A 142.250.190.46` + +`A Record: 142.250.190.46` +`TTL: 300 seconds` + +----- +## Task 2: IP Addressing +- An IPv4 address is a 32-bit numeric identifier structured as four octets (e.g., 192.168.1.10). +- Public IPs are unique globally and reachable via the internet. +- Private IPs are used for internal communication within a local network (e.g., 10.0.0.5). +Private IP Ranges +- `10.0.0.0 – 10.255.255.255` +- `172.16.0.0 – 172.31.255.255` +- `192.168.0.0 – 192.168.255.255` +- `ip addr show` Results +In my output, the private IP is identified under the inet field of the primary interface: +`inet 192.168.1.15/24 brd 192.168.1.255` scope global dynamic eth0 + +------- +## Task 3: Subnetting & CIDR +Subnetting divides a large network into smaller, +manageable segments to improve security, +reduce broadcast traffic, and organize devices logically. +* **CIDR Table** + +| CIDR | Subnet Mask | Total IPs | Usable Hosts | +| ---- | ------------ | --------- | ------------ | +| /24 | 255.255.255.0 | 256 | 254 | +| /16 | 255.255.0.0 | 65,536 | 65,534 | +| /28 | 255.255.255.240 | 16 | 14 | +-------- +## Task 4: Ports – The Doors to Services +Ports are virtual "doors" that allow multiple services to share a single IP address. +| Port | Service | +| ---- | -------- | +| 22 | SSH | +| 80 | HTTP | +| 443 | HTTPS | +| 53 | DNS | +| 3306 | MySQL | +| 6379 | Redis | +| 27017 | MongoDB | +- `ss -tulpn` Output (Match Examples) +- Port 22: Service sshd (SSH) is listening for remote connections. +- Port 53: Service systemd-resolve (DNS) is listening for name resolution requests. +---------- +## Task 5: Putting It Together +1. **Using `curl http://myapp.com:8080:` +This involves DNS to resolve the domain name, IP routing to find the server, + and a TCP handshake specifically on Port 8080 to reach the application layer.** +2. Database connection failure `(10.0.1.50:3306):` +I would first check Network Connectivity (can I ping the IP?) + and then Firewall/Security Groups to ensure port 3306 is open for my application's IP. +---------- +## 3 Key Learnings +- DNS is Hierarchical: It’s not just one server, +but a distributed chain of authority that makes the internet searchable. +- **The Usable Host Rule: Always subtract 2 from the total IPs in a subnet (one for the Network ID and one for the Broadcast address).** +- IPs get you to the Building, Ports get you to the Room: + **An IP address locates the host, but the port is what connects you to the specific software service you need.** + +----------- + + diff --git a/2026/day-16/day-16-shell-script.md b/2026/day-16/day-16-shell-script.md new file mode 100644 index 0000000000..54ab662b13 --- /dev/null +++ b/2026/day-16/day-16-shell-script.md @@ -0,0 +1,135 @@ +# Day 16 - Shell Scripting Basics + +-------- + +## Task1 : First Script in hello.sh + +```bash +#!/bin/bash + +echo "Hello DevOps!" +``` +When i remove shebang line it will automatically predict for bash and shell. + +```shell +chmod +x hello.sh +./hello.sh +``` +---------- + +## Task 2: Variables +created a `variables.sh` file + +```bash +#!/bin/bash + + +read -p 'Enter your name' NAME +read -p 'Enter your role' ROLE + +echo 'Hello, I am a $NAME and I am a $ROLE' +``` +```shell +chmod 755 variables.sh +./variables.sh +``` +--------- +## Task 3: User Input with read +created a `greet.sh` file +```bash + +#!/bin/bash + + +read -p "Enter Your Name" NAME +read -p "Enter Your Favourite Tool" TOOL + +echo "Hello, $NAME your favourite tool is $TOOL" +``` +```shell +chmod 755 greet.sh +./greet.sh +``` +--------- +## Task 4: If-Else Conditions +1. created a `check_number.sh` file. +```bash +#!/bin/bash + + +read -p "Enter a Number" NUM + +if [ $NUM -lt 0 ] +then + echo "$NUM number is negative" +elif [ $NUM -gt 0 ] +then + echo "$NUM number is positive" +else + echo "$NUM number is zero" +fi +``` +```shell +chmod 755 check_number.sh +./check_number.sh +``` +2. created a `file_check.sh` file. +```bash +#!/bin/bash + + +echo -e "Enter the file name: \c" + +read file_name + +if [ -f $file_name ] +then + echo "file exist and file name is $file_name" +else + echo "file doesn't exist $file_name" +fi +``` +```shell +chmod 755 file_check.sh +./file_check.sh +``` +-------- +## Task 5: Combine It All + created a `service_check.sh` file. +```bash +#!/bin/bash + + +read -p "Enter the service name" service_name + +read -p "Do you want to check the status? (y/n)" state + +if [ $state==y ] +then + echo "service status $service_name is checking" + systemctl is-active $service_name + + if [ $? -eq 0 ] + then + echo "$service_name is running...." + else + echo "$service_name is not running" + fi +else + echo "Skipped" +fi +``` +```shell +chmod 755 service_check.sh +./service_check.sh +``` +------- +## 3 key points +- When you writing a variable with read give a space between variable name and string. +- When you writing a conditional statement always close condition with `fi`. +- When you printing variables's value make sure it is in double qoute don't use single qoute. + + +---------- + + diff --git a/2026/day-17/day-17-scripting.md b/2026/day-17/day-17-scripting.md new file mode 100644 index 0000000000..c468528fef --- /dev/null +++ b/2026/day-17/day-17-scripting.md @@ -0,0 +1,260 @@ +# Day 17 – Shell Scripting: Loops, Arguments & Error Handling +------- + +## 1. Handling Command-Line Arguments +- Arguments allow you to pass data into your script at runtime without hardcoding values. + +| Variable | Description | +| -------- | ------------ | +| $0 | The name of the script itself. | +| $1, $2...$n | The first, second, etc., arguments passed. | +| $# | The total number of arguments provided. | +| $@ | All arguments passed (useful for looping through them). | +| $? | The exit status of the last command (0 = success, 1+ = error). | + +----------- +## Task 1: For Loop +1. Created a `for_loop.sh` script file +```bash +#!/bin/bash + +fruits=("Apple" "Banana" "Greps" "Mango" "Orange") + +for fruit in "${fruits[@]}"; +do + echo "Fruit: $fruit" +done +``` +Output: +```shell +ubuntu@ip-172-31-23-228:~/day17$ chmod 755 for_loop.sh +ubuntu@ip-172-31-23-228:~/day17$ ./for_loop.sh +Fruit: Apple +Fruit: Banana +Fruit: Greps +Fruit: Mango +Fruit: Orange +```` +2. Created a `count.sh` script file +- code +```bash + #!/bin/bash + +for i in {1..10}; +do + echo "Number: $i" +done +``` +- Output: +```shell +ubuntu@ip-172-31-23-228:~/day17$ chmod 755 count.sh +ubuntu@ip-172-31-23-228:~/day17$ ./count.sh +Number: 1 +Number: 2 +Number: 3 +Number: 4 +Number: 5 +Number: 6 +Number: 7 +Number: 8 +Number: 9 +Number: 10 +``` +--------- +## Task 2: While Loop +Created a `countdown.sh` script file +- code: +```bash +#!/bin/bash + +echo -n "Enter a number to start the countdown:" +read count +while [ $count -ge 0 ]; +do + echo "$count" + ((count--)) + sleep 1 +done +echo "Done!" +``` +- Output: +```shell +ubuntu@ip-172-31-23-228:~/day17$ chmod 755 countdown.sh +ubuntu@ip-172-31-23-228:~/day17$ ./countdown.sh +Enter a number to start the countdown:5 +5 +4 +3 +2 +1 +0 +Done! +``` +------------ +## Task 3: Command-Line Arguments +1. Created a `greet.sh` script file. +- code: +```bash +#!/bin/bash + + +if [ -z "$1" ]; then + echo "Usage: ./greet.sh" +else + echo "Hello, $1!" +fi +``` +- Output +```shell +ubuntu@ip-172-31-23-228:~/day17$ chmod 755 countdown.sh +ubuntu@ip-172-31-23-228:~/day17$ ./greet.sh +Usage: ./greet.sh +ubuntu@ip-172-31-23-228:~/day17$ ./greet.sh rajkumar +Hello, rajkumar! +``` +2. Created a `args_demo.sh` script file. +- code: +```bash +#!/bin/bash + +echo "-------Argument Demo------" +echo "Total Number of Arguments (\$#): $#" +echo "All Arguments (\$@): $@" +echo "-----------------" +``` +- Output +```shell +ubuntu@ip-172-31-23-228:~/day17$ chmod 755 args_demo.sh +ubuntu@ip-172-31-23-228:~/day17$ ./args_demo.sh +-------Argument Demo------ +Total Number of Arguments ($#): 0 +All Arguments ($@): +----------------- +ubuntu@ip-172-31-23-228:~/day17$ ./args_demo.sh devops python raja +-------Argument Demo------ +Total Number of Arguments ($#): 3 +All Arguments ($@): devops python raja +----------------- +``` +------------- +## Task 4: Install Packages via Script +1. Created a `install_packages.sh` script file +- code: +```bash +#!/bin/bash +# Ensure the script is run as root +if [ "$EUID" -ne 0 ]; then + echo "Please run as root (use sudo)." + exit 1 +fi +# List of packages to manage +PACKAGES=("nginx" "curl" "wget") +echo "Starting package check..." +for pkg in "${PACKAGES[@]}"; do + # Check if the package is installed via dpkg + if dpkg -s "$pkg" > /dev/null 2>&1; then + echo "[SKIP] $pkg is already installed." + else + echo "[INSTALLING] $pkg not found. Installing now..." + # Install the package + apt-get update > /dev/null 2>&1 + apt-get install -y "$pkg" > /dev/null 2>&1 + # Error Handling: Check if the installation succeeded + if [ $? -eq 0 ]; then + echo "[SUCCESS] $pkg installed successfully." + else + echo "[ERROR] Failed to install $pkg." + fi + fi +done +echo "All tasks complete." +``` +- Output +```shell +ubuntu@ip-172-31-23-228:~/day17$ chmod 755 install_packages.sh +ubuntu@ip-172-31-23-228:~/day17$ ./install_packages.sh +Please run as root (use sudo). +ubuntu@ip-172-31-23-228:~/day17$ sudo ./install_packages.sh +Starting package check... +[SKIP] nginx is already installed. +[SKIP] curl is already installed. +[SKIP] wget is already installed. +All tasks complete. +``` +---------- +## Task 5: Error Handling +1. Created a `safe_script.sh` script file +- code: +```bash +#!/bin/bash + +# Exit immediately if a command exits with a non-zero status +set -e + +DIR="/tmp/devops-test" + +echo "Starting safe operations..." + +# Use || to provide context before the script potentially exits +mkdir "$DIR" 2>/dev/null || echo "Note: Directory already exists or cannot be created" + +cd "$DIR" || { echo "Failed to enter directory"; exit 1; } + +touch devops_is_awesome.txt || { echo "Failed to create file"; exit 1; } + +echo "Success! File created in $DIR" +``` +- Output +```shell +ubuntu@ip-172-31-23-228:~/day17$ chmod 755 safe_script.sh +ubuntu@ip-172-31-23-228:~/day17$ ./safe_script.sh +Starting safe operations... +Success! File created in /tmp/devops-test +ubuntu@ip-172-31-23-228:~/day17$ ./safe_script.sh +Starting safe operations... +Note: Directory already exists or cannot be created +Success! File created in /tmp/devops-test +``` +2. Modified `install_packages.sh` script file to `install_packages2.sh` script file. +- code: +```bash +#!/bin/bash + +# Root Check Error Handling +if [ "$EUID" -ne 0 ]; then + echo "CRITICAL ERROR: This script must be run as root." + echo "Please use: sudo $0" + exit 1 +fi + +PACKAGES=("nginx" "curl" "wget") + +for pkg in "${PACKAGES[@]}"; do + if dpkg -s "$pkg" > /dev/null 2>&1; then + echo "[SKIP] $pkg is already here." + else + echo "[INSTALL] Attempting to install $pkg..." + apt-get update > /dev/null 2>&1 + apt-get install -y "$pkg" > /dev/null 2>&1 || echo "[FAIL] Could not install $pkg" + fi +done +``` +- Output +```shell + +ubuntu@ip-172-31-23-228:~/day17$ chmod 755 install_packages2.sh +ubuntu@ip-172-31-23-228:~/day17$ ./install_packages2.sh +CRITICAL ERROR: This script must be run as root. +Please use: sudo ./install_packages2.sh +ubuntu@ip-172-31-23-228:~/day17$ sudo ./install_packages2.sh +[SKIP] nginx is already here. +[SKIP] curl is already here. +[SKIP] wget is already here. +``` +---------------- + ## 3 Key Point +- when you writing list of variables make sure there is no space between variable and list. +- When you writing for loop always use for new line with ; do. +- When you writing if condition always close with fi + +----------- diff --git a/2026/day-18/day-18-scripting.md b/2026/day-18/day-18-scripting.md new file mode 100644 index 0000000000..13f119bb7e --- /dev/null +++ b/2026/day-18/day-18-scripting.md @@ -0,0 +1,292 @@ +# Day 18 – Shell Scripting: Functions & Slightly Advanced Concepts +-------- +## Task 1: Basic Functions +1. created `functions.sh` script file. +- Code +```bash +#!/bin/bash + +greet() { + local name="$1" + echo "Hello, $name!" +} + +add() { + local num1="$1" + local num2="$2" + local sum=$((num1 + num2)) + echo "The sum of $num1 and $num2 is: $sum" +} + +greet "Alice" +add 15 27 +``` +- Output +```shell +ubuntu@ip-172-31-23-228:~/day18$ chmod 755 functions.sh +ubuntu@ip-172-31-23-228:~/day18$ ./functions.sh +Hello, Alice! +The sum of 15 and 27 is: 42 +``` +------------ +## Task 2: Functions with Return Values +1. created `disk_check.sh` script file. +- Code +```bash +#!/bin/bash + +check_disk() { + echo "---Disk Usage (Root/)---" + df -h / + # grep '/' isolates the root partition + echo "" +} + +check_memory(){ + echo "--Memory Usage--" + free -h + echo "" +} + +main(){ + echo "===================" + echo "SYSTEM HEALTH CHECK" + echo "===================" + check_disk + check_memory + echo "Check completed successfully." +} + +main +``` +- Output +```shell +ubuntu@ip-172-31-23-228:~/day18$ chmod 755 disk_check.sh +ubuntu@ip-172-31-23-228:~/day18$ ./disk_check.sh +=================== +SYSTEM HEALTH CHECK +=================== +---Disk Usage (Root/)--- +Filesystem Size Used Avail Use% Mounted on +/dev/root 6.8G 2.2G 4.6G 33% / + +--Memory Usage-- + total used free shared buff/cache available +Mem: 914Mi 391Mi 132Mi 2.7Mi 593Mi 522Mi +Swap: 0B 0B 0B + +Check completed successfully. +``` +------- +## Task 3: Strict Mode — set -euo pipefail +1. created `strict_demo.sh` script file. +- Code +--- +```bash +#!/bin/bash + +set -euo pipefail + +echo "--- Testing set -u (Undefined Variables) ---" +# This will trigger an error because 'USER_NAME' is not defined +# echo "Hello, $USER_NAME" + +echo "--- Testing set -e (Command Failure) ---" +# This will fail because the directory doesn't exist +# ls /non_existent_directory_123 + +echo "--- Testing set -o pipefail (Pipeline Failure) ---" +# Without pipefail, 'echo' succeeding would hide 'grep' failing. +# With pipefail, the failure of 'grep' stops the script. +# cat /etc/passwd | grep "non-existent-user-xyz" | wc -l + +echo "If you see this, the script didn't crash!" +``` +- Output +```shell +ubuntu@ip-172-31-23-228:~/day18$ chmod 755 strict_demo.sh +ubuntu@ip-172-31-23-228:~/day18$ ./strict_demo.sh +--- Testing set -u (Undefined Variables) --- +./strict_demo.sh: line 7: USER_NAME: unbound variable +ubuntu@ip-172-31-23-228:~/day18$ ./strict_demo.sh +--- Testing set -u (Undefined Variables) --- +--- Testing set -e (Command Failure) --- +ls: cannot access '/non_existent_directory_123': No such file or directory +ubuntu@ip-172-31-23-228:~/day18$ ./strict_demo.sh +--- Testing set -u (Undefined Variables) --- +--- Testing set -e (Command Failure) --- +--- Testing set -o pipefail (Pipeline Failure) --- +0 +ubuntu@ip-172-31-23-228:~/day18$ ./strict_demo.sh +--- Testing set -u (Undefined Variables) --- +--- Testing set -e (Command Failure) --- +--- Testing set -o pipefail (Pipeline Failure) --- +If you see this, the script didn't crash! +``` +------- +## Task 4: Local Variables +1. created `local_demo.sh` script file. +- Code +```bash +#!/bin/bash + +set -euo pipefail +# Initialize a global variable +name="Global Alice" +leaky_function() { + # This variable is NOT local + name="Leaky Bob" + echo "Inside leaky_function: name = $name" +} + +safe_function() { + # This variable IS local + local name="Safe Charlie" + echo "Inside safe_function: name = $name" +} + +echo "Starting value: $name" +# 1. Test the Safe Function +safe_function +echo "Value after safe_function: $name" +echo "(Result: Global variable was protected!)" +echo "--------------------------------" +# 2. Test the Leaky Function +leaky_function +echo "Value after leaky_function: $name" +echo "(Result: Global variable was OVERWRITTEN!)" +``` +- Output +```shell +ubuntu@ip-172-31-23-228:~/day18$ chmod 755 local_demo.sh +ubuntu@ip-172-31-23-228:~/day18$ ./local_demo.sh +Starting value: Global Alice +Inside safe_function: name = Safe Charlie +Value after safe_function: Global Alice +(Result: Global variable was protected!) +-------------------------------- +Inside leaky_function: name = Leaky Bob +Value after leaky_function: Leaky Bob +(Result: Global variable was OVERWRITTEN!) +``` +------- +## Task 5: Build a Script — System Info Reporter +1. created `system_info.sh` script file. +- Code +```bash +#!/bin/bash + +# Enable Unofficial Bash Strict Mode +set -euo pipefail +IFS=$'\n\t' +print_header() { + local title="$1" + echo -e "\n\033[1;34m=== $title ===\033[0m" +} +get_os_info() { + print_header "HOSTNAME & OS" + echo "Hostname: $(hostname)" + # Extract OS name from os-release + local os_name=$(grep '^PRETTY_NAME=' /etc/os-release | cut -d'=' -f2 | tr -d '"') + echo "Operating System: $os_name" +} +get_uptime() { + print_header "SYSTEM UPTIME" + uptime -p +} +get_disk_usage() { + print_header "TOP 5 DIRECTORIES BY SIZE (/)" + # Uses du to find sizes, sorts numerically, and takes top 5 + # Note: Redirecting errors to /dev/null to hide permission warnings + du -ah / 2>/dev/null | sort -rh | head -n 5 +} +get_memory_usage() { + print_header "MEMORY USAGE" + free -h +} +get_cpu_processes() { + print_header "TOP 5 CPU-CONSUMING PROCESSES" + # pcpu = % CPU usage, comm = command name + ps -eo pcpu,comm --sort=-pcpu | head -n 6 +} +# Main Logic +main() { + echo -e "\033[1;32mSYSTEM DATA REPORT - $(date)\033[0m" + get_os_info + get_uptime + get_memory_usage + get_cpu_processes + get_disk_usage + echo -e "\n\033[1;32mReport Generated Successfully.\033[0m" +} +main +``` +- Output +```shell +ubuntu@ip-172-31-23-228:~/day18$ chmod 755 system_info.sh +ubuntu@ip-172-31-23-228:~/day18$ ./system_info.sh +SYSTEM DATA REPORT - Thu Feb 12 11:35:15 UTC 2026 + +=== HOSTNAME & OS === +Hostname: ip-172-31-23-228 +Operating System: Ubuntu 24.04.3 LTS + +=== SYSTEM UPTIME === +up 1 hour, 32 minutes + +=== MEMORY USAGE === + total used free shared buff/cache available +Mem: 914Mi 393Mi 130Mi 2.7Mi 594Mi 520Mi +Swap: 0B 0B 0B + +=== TOP 5 CPU-CONSUMING PROCESSES === +%CPU COMMAND + 0.0 sshd + 0.0 snapd + 0.0 amazon-ssm-agen + 0.0 systemd + 0.0 kworker/0:1-events + +=== TOP 5 DIRECTORIES BY SIZE (/) === +3.3G / +1.5G /usr +1.0G /snap +894M /usr/lib +750M /var +``` +---------- +## Explanation of `set -euo pipefail`. +1. The Safety Header +The command `set -euo pipefail` is known as the Unofficial Bash Strict Mode. + +| Flag | Name | Function | +| ---- | ----- | --------- | +| -e | errexit | The script stops immediately if any command fails (returns non-zero). No more "ghost" executions after an error. | +| -u | nounset | The script crashes if you refer to a variable that hasn't been defined. Prevents typos like $BAKUP_DIR instead of $BACKUP_DIR. | +| -o pipefail | pipefail | If any part of a pipeline fails (e.g., grep failing in `cat file. | + +---------- +## 3 Key Points + +- When you define variable in function scope use with `local` keyword before variable. +- If you defining a variable in function without `local` it will overwritten the global variable. +- Always make sure when you defining a variable don't give space between variable and value. + + +--------------- + + + + + + + + + + + + + + + + diff --git a/2026/day-19/backup/backup-2026-02-23.tar.gz b/2026/day-19/backup/backup-2026-02-23.tar.gz new file mode 100644 index 0000000000..5a15065d4c Binary files /dev/null and b/2026/day-19/backup/backup-2026-02-23.tar.gz differ diff --git a/2026/day-19/day-19-project.md b/2026/day-19/day-19-project.md new file mode 100644 index 0000000000..90ba9943c3 --- /dev/null +++ b/2026/day-19/day-19-project.md @@ -0,0 +1,311 @@ +# Day 19 – Shell Scripting Project: Log Rotation, Backup & Crontab +----- +## Task 1: Log Rotation Script +Created a file log_rotate.sh +- Code: +```bash +#!/bin/bash + +set -euo pipefail +# If total arguments not equal to 1 then script will exited. +if [[ $# -ne 1 ]]; then + echo "Usage: $0 " + exit 1 +fi + +LOG_DIR="$1" +# if directory does not exists then script will exited. +if [[ ! -d "$LOG_DIR" ]]; then + echo "Error: Directory '$LOG_DIR' does not exist." + exit 1 +fi + +# Get files first (store in arrays) +# log files find if files are older than 7 days. +mapfile -d '' LOG_FILES < <(find "$LOG_DIR" -type f -name "*.log" -mtime +7 -print0) +# gzip files find if files are older than 30 days. +mapfile -d '' GZ_FILES < <(find "$LOG_DIR" -type f -name "*.gz" -mtime +30 -print0) + +# It will gzip the log files which are older than 7 days. +if (( ${#LOG_FILES[@]} > 0 )); then + printf '%s\0' "${LOG_FILES[@]}" | xargs -0 gzip +fi + +# It will removing the gzip files which are older than 30 days. +if (( ${#GZ_FILES[@]} > 0 )); then + printf '%s\0' "${GZ_FILES[@]}" | xargs -0 rm -f +fi + +echo "Files compressed: ${#LOG_FILES[@]}" +echo "Files deleted: ${#GZ_FILES[@]}" + +``` +- Output: +```shell +ubuntu@ip-172-31-22-48:~/day19$ ./log_rotate.sh +Usage: ./log_rotate.sh +ubuntu@ip-172-31-22-48:~/day19$ ./log_rotate.sh /var/log/nginx +Files compressed: 0 +Files deleted: 0 +ubuntu@ip-172-31-22-48:~/day19$ + +``` + +## Task 2: Server Backup Script +- Code: +```bash +#!/bin/bash + +set -euo pipefail + +if [[ $# -ne 2 ]]; then + echo "Usage: $0 " + exit 1 +fi + +SOURCE="$1" +DEST="$2" + +if [[ ! -d "$SOURCE" ]]; then + echo "Error: Source directory '$SOURCE' does not exist." + exit 1 +fi + +if [[ ! -d "$DEST" ]]; then + echo "Destination directory does not exist. Creating it..." + mkdir -p "$DEST" +fi + +TIMESTAMP=$(date +"%Y-%m-%d") +ARCHIVE_NAME="backup-${TIMESTAMP}.tar.gz" +ARCHIVE_PATH="${DEST}/${ARCHIVE_NAME}" +tar -czf "$ARCHIVE_PATH" -C "$(dirname "$SOURCE")" "$(basename "$SOURCE")" + + +if [[ ! -f "$ARCHIVE_PATH" ]]; then + echo "Error: Backup archive was not created." + exit 1 +fi + +ARCHIVE_SIZE=$(du -h "$ARCHIVE_PATH" | cut -f1) + +echo "Backup successful." +echo "Archive: $ARCHIVE_NAME" +echo "Size: $ARCHIVE_SIZE" +DELETED_COUNT=0 + +while IFS= read -r -d '' file; do + rm -f "$file" + ((DELETED_COUNT++)) +done < <(find "$DEST" -type f -name "backup-*.tar.gz" -mtime +14 -print0) + +echo "Old backups deleted: $DELETED_COUNT" + +exit 0 +``` +- Output: +```shell +ubuntu@ip-172-31-22-48:~/day19$ chmod 755 backup.sh +ubuntu@ip-172-31-22-48:~/day19$ ./backup.sh +Usage: ./backup.sh +ubuntu@ip-172-31-22-48:~/day19$ ./backup.sh /var/log/nginx /home/ubuntu/backup +Destination directory does not exist. Creating it... +Backup successful. +Archive: backup-2026-02-23.tar.gz +Size: 4.0K +Old backups deleted: 0 +ubuntu@ip-172-31-22-48:~/day19$ ls -l /home/ubuntu/ +total 16 +drwxrwxr-x 2 ubuntu ubuntu 4096 Feb 23 11:38 backup +drwxrwxr-x 2 ubuntu ubuntu 4096 Feb 23 11:37 day19 +drwxrwxr-x 3 ubuntu ubuntu 4096 Feb 23 07:53 day20 +drwxrwxr-x 2 ubuntu ubuntu 4096 Feb 23 06:09 nginx +ubuntu@ip-172-31-22-48:~/day19$ ls -l /home/ubuntu/backup/ +total 4 +-rw-rw-r-- 1 ubuntu ubuntu 615 Feb 23 11:38 backup-2026-02-23.tar.gz + +``` + +# Task 3: Crontab +Read: crontab -l — what's currently scheduled? +Understand cron syntax: +* * * * * command +│ │ │ │ │ +│ │ │ │ └── Day of week (0-7) +│ │ │ └──── Month (1-12) +│ │ └────── Day of month (1-31) +│ └──────── Hour (0-23) +└────────── Minute (0-59) + + +```bash +# m h dom mon dow command +0 2 * * * /home/ubuntu/log_rotzte.sh >> /var/log/log_rotate.log 2>&1 +0 3 * * * /home/ubuntu/backup.sh >> /var/log/backup.log 2>&1 +*/5 * * * * /home/ubuntu/health_check.sh >> /var/log/health_check.log 2>&1 +0 1 * * * /home/ubuntu/maintenance.sh >> /var/log/maintenance.log 2>&1 + +``` +```shell +ubuntu@ip-172-31-22-48:~/day19$ systemctl status cron +● cron.service - Regular background program processing daemon + Loaded: loaded (/usr/lib/systemd/system/cron.service; enabled; preset: enabled) + Active: active (running) since Mon 2026-02-23 11:33:34 UTC; 8min ago + Docs: man:cron(8) + Main PID: 509 (cron) + Tasks: 1 (limit: 1015) + Memory: 1000.0K (peak: 5.1M) + CPU: 306ms + CGroup: /system.slice/cron.service + └─509 /usr/sbin/cron -f -P + +Feb 23 11:42:01 ip-172-31-22-48 CRON[1643]: (ubuntu) CMD (/home/ubuntu/health_check.sh >> /var/log/health_check.log 2>&1) +Feb 23 11:42:01 ip-172-31-22-48 CRON[1644]: (ubuntu) CMD (/home/ubuntu/log_rotzte.sh >> /var/log/log_rotate.log 2>&1) +Feb 23 11:42:01 ip-172-31-22-48 CRON[1641]: pam_unix(cron:session): session opened for user ubuntu(uid=1000) by ubuntu(uid=0) +Feb 23 11:42:01 ip-172-31-22-48 CRON[1645]: (ubuntu) CMD (/home/ubuntu/backup.sh >> /var/log/backup.log 2>&1) +Feb 23 11:42:01 ip-172-31-22-48 CRON[1642]: (CRON) info (No MTA installed, discarding output) +Feb 23 11:42:01 ip-172-31-22-48 CRON[1640]: (CRON) info (No MTA installed, discarding output) +Feb 23 11:42:01 ip-172-31-22-48 CRON[1640]: pam_unix(cron:session): session closed for user ubuntu +Feb 23 11:42:01 ip-172-31-22-48 CRON[1642]: pam_unix(cron:session): session closed for user ubuntu +Feb 23 11:42:01 ip-172-31-22-48 CRON[1641]: (CRON) info (No MTA installed, discarding output) +Feb 23 11:42:01 ip-172-31-22-48 CRON[1641]: pam_unix(cron:session): session closed for user ubuntu + +``` +- When i used cronjob for every minute it will running every minute and giving me output like that---- +- you can run one more command for checking runtime status `tail -f /var/log/syslog` +```shell +ubuntu@ip-172-31-22-48:~/day19$ grep CRON /var/log/syslog +2026-02-23T05:12:57.054671+00:00 ip-172-31-22-48 cron[598]: (CRON) INFO (pidfile fd = 3) +2026-02-23T05:12:57.054678+00:00 ip-172-31-22-48 cron[598]: (CRON) INFO (Running @reboot jobs) +2026-02-23T05:15:01.300656+00:00 ip-172-31-22-48 CRON[1479]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1) +2026-02-23T05:17:01.331501+00:00 ip-172-31-22-48 CRON[1819]: (root) CMD (cd / && run-parts --report /etc/cron.hourly) +2026-02-23T05:25:01.350787+00:00 ip-172-31-22-48 CRON[1896]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1) +2026-02-23T05:35:01.372316+00:00 ip-172-31-22-48 CRON[1907]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1) +2026-02-23T05:45:01.387127+00:00 ip-172-31-22-48 CRON[1957]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1) +2026-02-23T05:55:01.426046+00:00 ip-172-31-22-48 CRON[1968]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1) +2026-02-23T06:05:01.479487+00:00 ip-172-31-22-48 CRON[1982]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1) +2026-02-23T06:15:01.514104+00:00 ip-172-31-22-48 CRON[2015]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1) +2026-02-23T06:17:01.530476+00:00 ip-172-31-22-48 CRON[2098]: (root) CMD (cd / && run-parts --report /etc/cron.hourly) +2026-02-23T06:25:01.554580+00:00 ip-172-31-22-48 CRON[2134]: (root) CMD (test -x /usr/sbin/anacron || { cd / && run-parts --report /etc/cron.daily; }) +2026-02-23T06:25:01.566399+00:00 ip-172-31-22-48 CRON[2135]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1) +2026-02-23T06:25:01.574482+00:00 ip-172-31-22-48 CRON[2137]: (ubuntu) CMD (/home/ubuntu/health_check.sh >> /var/log/health_check.log 2>&1) +2026-02-23T06:25:01.591367+00:00 ip-172-31-22-48 CRON[2133]: (CRON) info (No MTA installed, discarding output) +2026-02-23T06:28:01.671434+00:00 ip-172-31-22-48 CRON[2168]: (ubuntu) CMD (/home/ubuntu/health_check.sh >> /var/log/health_check.log 2>&1) +2026-02-23T06:28:01.678864+00:00 ip-172-31-22-48 CRON[2169]: (ubuntu) CMD (/home/ubuntu/log_rotzte.sh >> /var/log/log_rotate.log 2>&1) +2026-02-23T06:28:01.684817+00:00 ip-172-31-22-48 CRON[2170]: (ubuntu) CMD (/home/ubuntu/backup.sh >> /var/log/backup.log 2>&1) +2026-02-23T06:28:01.687846+00:00 ip-172-31-22-48 CRON[2165]: (CRON) info (No MTA installed, discarding output) +2026-02-23T06:28:01.694190+00:00 ip-172-31-22-48 CRON[2167]: (CRON) info (No MTA installed, discarding output) +2026-02-23T06:28:01.696214+00:00 ip-172-31-22-48 CRON[2166]: (CRON) info (No MTA installed, discarding output) +2026-02-23T06:29:01.711538+00:00 ip-172-31-22-48 CRON[2175]: (ubuntu) CMD (/home/ubuntu/health_check.sh >> /var/log/health_check.log 2>&1) +2026-02-23T06:29:01.736867+00:00 ip-172-31-22-48 CRON[2172]: (CRON) info (No MTA installed, discarding output) +2026-02-23T06:29:01.754377+00:00 ip-172-31-22-48 CRON[2176]: (ubuntu) CMD (/home/ubuntu/log_rotzte.sh >> /var/log/log_rotate.log 2>&1) +2026-02-23T06:29:01.770667+00:00 ip-172-31-22-48 CRON[2177]: (ubuntu) CMD (/home/ubuntu/backup.sh >> /var/log/backup.log 2>&1) +2026-02-23T06:29:01.792857+00:00 ip-172-31-22-48 CRON[2173]: (CRON) info (No MTA installed, discarding output) +2026-02-23T06:29:01.796199+00:00 ip-172-31-22-48 CRON[2174]: (CRON) info (No MTA installed, discarding output) +2026-02-23T06:30:01.862478+00:00 ip-172-31-22-48 CRON[2284]: (ubuntu) CMD (/home/ubuntu/backup.sh >> /var/log/backup.log 2>&1) +2026-02-23T06:30:01.888561+00:00 ip-172-31-22-48 CRON[2285]: (ubuntu) CMD (/home/ubuntu/health_check.sh >> /var/log/health_check.log 2>&1) +2026-02-23T06:30:01.889022+00:00 ip-172-31-22-48 CRON[2286]: (ubuntu) CMD (/home/ubuntu/log_rotzte.sh >> /var/log/log_rotate.log 2>&1) + +``` + +# Task 4: Combine — Scheduled Maintenance Script + +- Code: +```bash +#!/bin/bash + +# ===== Configuration ===== +LOG_FILE="/var/log/maintenance.log" +LOG_ROTATE_SCRIPT="/home/ubuntu/day19/log_rotate.sh" +BACKUP_SCRIPT="/home/ubuntu/day19/backup.sh" + +# ===== Timestamp Function ===== +timestamp() { + date "+%Y-%m-%d %H:%M:%S" +} + +# ===== Logging Wrapper ===== +log() { + echo "$(timestamp) - $1" >> "$LOG_FILE" +} + +# ===== Begin Maintenance ===== +log "===== Maintenance Job Started =====" + +# Run log rotation +if [ -x "$LOG_ROTATE_SCRIPT" ]; then + log "Starting log rotation..." + "$LOG_ROTATE_SCRIPT" >> "$LOG_FILE" 2>&1 + log "Log rotation completed with exit code $?" +else + log "ERROR: Log rotation script not found or not executable." +fi + +# Run backup +if [ -x "$BACKUP_SCRIPT" ]; then + log "Starting backup..." + "$BACKUP_SCRIPT" >> "$LOG_FILE" 2>&1 + log "Backup completed with exit code $?" +else + log "ERROR: Backup script not found or not executable." +fi + +log "===== Maintenance Job Finished =====" +echo "" >> "$LOG_FILE" + +``` + +- Output: +```shell +ubuntu@ip-172-31-22-48:~/day19$ ls +backup.sh log_rotate.sh maintenance.sh +ubuntu@ip-172-31-22-48:~/day19$ chmod 755 maintenance.sh +ubuntu@ip-172-31-22-48:~/day19$ ./maintenance.sh +./maintenance.sh: line 15: /var/log/maintenance.log: Permission denied +./maintenance.sh: line 15: /var/log/maintenance.log: Permission denied +./maintenance.sh: line 24: /var/log/maintenance.log: Permission denied +./maintenance.sh: line 15: /var/log/maintenance.log: Permission denied +./maintenance.sh: line 15: /var/log/maintenance.log: Permission denied +./maintenance.sh: line 33: /var/log/maintenance.log: Permission denied +./maintenance.sh: line 15: /var/log/maintenance.log: Permission denied +./maintenance.sh: line 15: /var/log/maintenance.log: Permission denied +./maintenance.sh: line 40: /var/log/maintenance.log: Permission denied +ubuntu@ip-172-31-22-48:~/day19$ sudo ./maintenance.sh + +``` + +```shell +ubuntu@ip-172-31-22-48:~/day19$ ls -l /var/log +total 1228 +lrwxrwxrwx 1 root root 39 Dec 12 10:00 README -> ../../usr/share/doc/systemd/README.logs +drwxr-xr-x 2 landscape landscape 4096 Feb 23 05:13 landscape +-rw-rw-r-- 1 root utmp 292292 Feb 23 11:34 lastlog +-rw-r--r-- 1 root root 456 Feb 23 12:06 maintenance.log +``` + +------ + +# What you learned +- 3 key points + +- File management with find and mtime +-Automating file lifecycle management is critical for production systems. + +- Error handling in shell scripts (set -e, input validation) + Defensive scripting prevents silent failures. + +- Cron scheduling & automation + Reliable infrastructure depends on scheduled, unattended tasks. + +🔎 Best Practice Notes + +- Maintenance scripts that write to /var/log must run with sudo + +- Always use absolute paths in cron jobs + +- Redirect both standard output and standard error in production scripts + +- Validate inputs before destructive operations (rm) + + +----------- diff --git a/2026/day-19/scripts/backup.sh b/2026/day-19/scripts/backup.sh new file mode 100644 index 0000000000..abae0ea322 --- /dev/null +++ b/2026/day-19/scripts/backup.sh @@ -0,0 +1,47 @@ +#!/bin/bash + +set -euo pipefail + +if [[ $# -ne 2 ]]; then + echo "Usage: $0 " + exit 1 +fi + +SOURCE="$1" +DEST="$2" + +if [[ ! -d "$SOURCE" ]]; then + echo "Error: Source directory '$SOURCE' does not exist." + exit 1 +fi + +if [[ ! -d "$DEST" ]]; then + echo "Destination directory does not exist. Creating it..." + mkdir -p "$DEST" +fi + +TIMESTAMP=$(date +"%Y-%m-%d") +ARCHIVE_NAME="backup-${TIMESTAMP}.tar.gz" +ARCHIVE_PATH="${DEST}/${ARCHIVE_NAME}" +tar -czf "$ARCHIVE_PATH" -C "$(dirname "$SOURCE")" "$(basename "$SOURCE")" + +if [[ ! -f "$ARCHIVE_PATH" ]]; then + echo "Error: Backup archive was not created." + exit 1 +fi + +ARCHIVE_SIZE=$(du -h "$ARCHIVE_PATH" | cut -f1) + +echo "Backup successful." +echo "Archive: $ARCHIVE_NAME" +echo "Size: $ARCHIVE_SIZE" +DELETED_COUNT=0 + +while IFS= read -r -d '' file; do + rm -f "$file" + ((DELETED_COUNT++)) +done < <(find "$DEST" -type f -name "backup-*.tar.gz" -mtime +14 -print0) + +echo "Old backups deleted: $DELETED_COUNT" + +exit 0 diff --git a/2026/day-19/scripts/log_rotate.sh b/2026/day-19/scripts/log_rotate.sh new file mode 100644 index 0000000000..94a1cd7e96 --- /dev/null +++ b/2026/day-19/scripts/log_rotate.sh @@ -0,0 +1,34 @@ +#!/bin/bash + +set -euo pipefail +# If total arguments not equal to 1 then script will exited. +if [[ $# -ne 1 ]]; then + echo "Usage: $0 " + exit 1 +fi + +LOG_DIR="$1" +# if directory does not exists then script will exited. +if [[ ! -d "$LOG_DIR" ]]; then + echo "Error: Directory '$LOG_DIR' does not exist." + exit 1 +fi + +# Get files first (store in arrays) +# log files find if files are older than 7 days. +mapfile -d '' LOG_FILES < <(find "$LOG_DIR" -type f -name "*.log" -mtime +7 -print0) +# gzip files find if files are older than 30 days. +mapfile -d '' GZ_FILES < <(find "$LOG_DIR" -type f -name "*.gz" -mtime +30 -print0) + +# It will gzip the log files which are older than 7 days. +if (( ${#LOG_FILES[@]} > 0 )); then + printf '%s\0' "${LOG_FILES[@]}" | xargs -0 gzip +fi + +# It will removing the gzip files which are older than 30 days. +if (( ${#GZ_FILES[@]} > 0 )); then + printf '%s\0' "${GZ_FILES[@]}" | xargs -0 rm -f +fi + +echo "Files compressed: ${#LOG_FILES[@]}" +echo "Files deleted: ${#GZ_FILES[@]}" diff --git a/2026/day-19/scripts/maintenance.sh b/2026/day-19/scripts/maintenance.sh new file mode 100644 index 0000000000..aced9d3818 --- /dev/null +++ b/2026/day-19/scripts/maintenance.sh @@ -0,0 +1,40 @@ +#!/bin/bash + +# ===== Configuration ===== +LOG_FILE="/var/log/maintenance.log" +LOG_ROTATE_SCRIPT="/home/ubuntu/day19/log_rotate.sh" +BACKUP_SCRIPT="/home/ubuntu/day19/backup.sh" + +# ===== Timestamp Function ===== +timestamp() { + date "+%Y-%m-%d %H:%M:%S" +} + +# ===== Logging Wrapper ===== +log() { + echo "$(timestamp) - $1" >> "$LOG_FILE" +} + +# ===== Begin Maintenance ===== +log "===== Maintenance Job Started =====" + +# Run log rotation +if [ -x "$LOG_ROTATE_SCRIPT" ]; then + log "Starting log rotation..." + "$LOG_ROTATE_SCRIPT" >> "$LOG_FILE" 2>&1 + log "Log rotation completed with exit code $?" +else + log "ERROR: Log rotation script not found or not executable." +fi + +# Run backup +if [ -x "$BACKUP_SCRIPT" ]; then + log "Starting backup..." + "$BACKUP_SCRIPT" >> "$LOG_FILE" 2>&1 + log "Backup completed with exit code $?" +else + log "ERROR: Backup script not found or not executable." +fi + +log "===== Maintenance Job Finished =====" +echo "" >> "$LOG_FILE" diff --git a/2026/day-20/day-20-solution.md b/2026/day-20/day-20-solution.md new file mode 100644 index 0000000000..470489c0b4 --- /dev/null +++ b/2026/day-20/day-20-solution.md @@ -0,0 +1,223 @@ +# Day 20 – Bash Scripting Challenge: Log Analyzer and Report Generator + +----- +## Task 1: Input and Validation +## Task 2: Error Count +## Task 3: Critical Events +## Task 4: Top Error Messages +## Task 5: Summary Report +## Task 6 (Optional): Archive Processed Logs +- Code: +```bash +#!/bin/bash + +set -euo pipefail + +# ============================== +# Log Analyzer Script +# ============================== + +# ---- Input Validation ---- +if [ $# -eq 0 ]; then + echo "ERROR: No log file provided." + echo "Usage: $0 " + exit 1 +fi + +LOG_FILE="$1" + +if [ ! -f "$LOG_FILE" ]; then + echo "ERROR: File '$LOG_FILE' does not exist." + exit 1 +fi + +DATE=$(date +%Y-%m-%d) +REPORT_FILE="log_report_${DATE}.txt" + +TOTAL_LINES=$(wc -l < "$LOG_FILE") + +# ---- Error Count (ERROR or Failed) ---- +ERROR_COUNT=$(grep -Eic "ERROR|Failed" "$LOG_FILE" || true) + +echo "Total ERROR/Failed occurrences: $ERROR_COUNT" + +# ---- Critical Events ---- +echo "" +echo "--- Critical Events ---" +CRITICAL_LINES=$(grep -n "CRITICAL" "$LOG_FILE" || true) + +if [ -z "$CRITICAL_LINES" ]; then + echo "No critical events found." +else + echo "$CRITICAL_LINES" +fi + +# ---- Top 5 Error Messages ---- +echo "" +echo "--- Top 5 Error Messages ---" + +TOP_ERRORS=$(grep -i "ERROR" "$LOG_FILE" \ + | sed -E 's/^[0-9-]+ [0-9:]+ //' \ + | sort \ + | uniq -c \ + | sort -rn \ + | head -5 || true) + +if [ -z "$TOP_ERRORS" ]; then + echo "No ERROR messages found." +else + echo "$TOP_ERRORS" + fi + + # ---- Generate Summary Report ---- +{ + echo "===== Log Analysis Report =====" + echo "Date of Analysis: $DATE" + echo "Log File: $LOG_FILE" + echo "Total Lines Processed: $TOTAL_LINES" + echo "Total ERROR/Failed Count: $ERROR_COUNT" + echo "" + + echo "--- Top 5 Error Messages ---" + if [ -z "$TOP_ERRORS" ]; then + echo "No ERROR messages found." + else + echo "$TOP_ERRORS" + fi + + echo "" + echo "--- Critical Events ---" + if [ -z "$CRITICAL_LINES" ]; then + echo "No critical events found." + else + echo "$CRITICAL_LINES" + fi + +} > "$REPORT_FILE" + +echo "" +echo "Summary report generated: $REPORT_FILE" + +# ---- Optional: Archive Processed Log ---- +ARCHIVE_DIR="archive" + +if [ ! -d "$ARCHIVE_DIR" ]; then + mkdir "$ARCHIVE_DIR" +fi + +mv "$LOG_FILE" "$ARCHIVE_DIR/" + +echo "Log file moved to $ARCHIVE_DIR/" + +``` +- Output: + +```shell +ubuntu@ip-172-31-22-48:~/day20$ ./log_analyzer.sh /home/ubuntu/day20/linux_2k.log +Total ERROR/Failed occurrences: 47 + +--- Critical Events --- +No critical events found. + +--- Top 5 Error Messages --- +No ERROR messages found. + +Summary report generated: log_report_2026-02-23.txt +Log file moved to archive/ +ubuntu@ip-172-31-22-48:~/day20$ vim apache_2k.log +ubuntu@ip-172-31-22-48:~/day20$ ./log_analyzer.sh /home/ubuntu/day20/apache_2k.log +Total ERROR/Failed occurrences: 595 + +--- Critical Events --- +No critical events found. + +--- Top 5 Error Messages --- + 5 [Sun Dec 04 19:36:07 2005] [error] mod_jk child workerEnv in error state 6 + 5 [Sun Dec 04 17:01:47 2005] [error] mod_jk child workerEnv in error state 6 + 4 [Sun Dec 04 20:16:15 2005] [error] mod_jk child workerEnv in error state 6 + 4 [Sun Dec 04 20:11:14 2005] [error] mod_jk child workerEnv in error state 6 + 4 [Sun Dec 04 20:05:59 2005] [error] mod_jk child workerEnv in error state 6 + +Summary report generated: log_report_2026-02-23.txt +Log file moved to archive/ +ubuntu@ip-172-31-22-48:~/day20$ +``` +```shell + +ubuntu@ip-172-31-22-48:~/day20$ ./sample_log_generator.sh +Usage: ./sample_log_generator.sh +ubuntu@ip-172-31-22-48:~/day20$ ./sample_log_generator.sh /home/ubuntu/day20/sample_log.log 2000 +Log file created at: /home/ubuntu/day20/sample_log.log with 2000 lines. +ubuntu@ip-172-31-22-48:~/day20$ ls +archive log_analyzer.sh log_report_2026-02-23.txt sample_log.log sample_log_generator.sh +ubuntu@ip-172-31-22-48:~/day20$ ./log_analyzer.sh /home/ubuntu/day20/sample_log.log +Total ERROR/Failed occurrences: 396 + +--- Critical Events --- +12:2026-02-23 12:39:59 [CRITICAL] - 5481 +13:2026-02-23 12:39:59 [CRITICAL] - 16942 +21:2026-02-23 12:39:59 [CRITICAL] - 21304 +23:2026-02-23 12:39:59 [CRITICAL] - 18797 +29:2026-02-23 12:39:59 [CRITICAL] - 29584 +31:2026-02-23 12:39:59 [CRITICAL] - 32110 +33:2026-02-23 12:39:59 [CRITICAL] - 11797 +41:2026-02-23 12:39:59 [CRITICAL] - 20331 +43:2026-02-23 12:39:59 [CRITICAL] - 7622 +1985:2026-02-23 12:40:02 [CRITICAL] - 9915 +1988:2026-02-23 12:40:02 [CRITICAL] - 16882 +1989:2026-02-23 12:40:02 [CRITICAL] - 910 +1990:2026-02-23 12:40:02 [CRITICAL] - 28876 +2000:2026-02-23 12:40:02 [CRITICAL] - 6817 + +--- Top 5 Error Messages --- + 2 [ERROR] Invalid input - 31046 + 1 [ERROR] Segmentation fault - 9580 + 1 [ERROR] Segmentation fault - 9222 + 1 [ERROR] Segmentation fault - 8188 + 1 [ERROR] Segmentation fault - 7381 + +Summary report generated: log_report_2026-02-23.txt +Log file moved to archive/ +ubuntu@ip-172-31-22-48:~/day20$ ls +archive log_analyzer.sh log_report_2026-02-23.txt sample_log_generator.sh +ubuntu@ip-172-31-22-48:~/day20$ cd archive/ +ubuntu@ip-172-31-22-48:~/day20/archive$ ls +apache_2k.log linux_2k.log log.txt log_report.txt log_report_2026-02-23.txt sample_log.log +``` +-------- + +# What commands/tools used +grep "ERROR" logfile.log \ +| awk '{$1=$2=$3=""; sub(/^ /,""); print}' \ +| sort \ +| uniq -c \ +| sort -rn \ +| head -5 + +Tools used: + +grep + +awk + +sort + +uniq + +wc + +sed +------------- + +# 3 Key Learnings + +- Command Pipelines Are Powerful +Combining grep, awk, sort, and uniq enables efficient log aggregation without complex scripting. + +- Input Validation Is Critical +Always validate arguments and file existence before processing. + +- Structured Reporting Improves Observability +Automating daily summaries improves operational visibility and reduces manual inspection effort. + +-------------- \ No newline at end of file diff --git a/2026/day-20/scripts/archive/log.txt b/2026/day-20/scripts/archive/log.txt new file mode 100644 index 0000000000..2850295675 --- /dev/null +++ b/2026/day-20/scripts/archive/log.txt @@ -0,0 +1,5000 @@ +2026-02-23 07:02:39 [WARNING] - 13405 +2026-02-23 07:02:39 [WARNING] - 16938 +2026-02-23 07:02:39 [DEBUG] - 11636 +2026-02-23 07:02:39 [CRITICAL] - 32056 +2026-02-23 07:02:39 [CRITICAL] - 23823 +2026-02-23 07:02:39 [INFO] - 31021 +2026-02-23 07:02:39 [DEBUG] - 314 +2026-02-23 07:02:39 [INFO] - 29088 +2026-02-23 07:02:39 [ERROR] Failed to connect - 8342 +2026-02-23 07:02:39 [CRITICAL] - 13421 +2026-02-23 07:02:39 [INFO] - 4088 +2026-02-23 07:02:39 [INFO] - 4113 +2026-02-23 07:02:39 [ERROR] Segmentation fault - 1777 +2026-02-23 07:02:39 [CRITICAL] - 16861 +2026-02-23 07:02:39 [WARNING] - 23217 +2026-02-23 07:02:39 [ERROR] Out of memory - 20935 +2026-02-23 07:02:39 [DEBUG] - 5971 +2026-02-23 07:02:39 [WARNING] - 19895 +2026-02-23 07:02:39 [WARNING] - 30443 +2026-02-23 07:02:39 [CRITICAL] - 559 +2026-02-23 07:02:39 [INFO] - 13009 +2026-02-23 07:02:39 [DEBUG] - 29637 +2026-02-23 07:02:39 [CRITICAL] - 11681 +2026-02-23 07:02:39 [DEBUG] - 25227 +2026-02-23 07:02:39 [CRITICAL] - 10106 +2026-02-23 07:02:39 [CRITICAL] - 21809 +2026-02-23 07:02:39 [WARNING] - 1032 +2026-02-23 07:02:39 [CRITICAL] - 25222 +2026-02-23 07:02:39 [WARNING] - 25289 +2026-02-23 07:02:39 [ERROR] Disk full - 14050 +2026-02-23 07:02:39 [ERROR] Invalid input - 13661 +2026-02-23 07:02:39 [CRITICAL] - 3088 +2026-02-23 07:02:39 [DEBUG] - 4539 +2026-02-23 07:02:39 [INFO] - 9200 +2026-02-23 07:02:39 [DEBUG] - 996 +2026-02-23 07:02:39 [WARNING] - 19562 +2026-02-23 07:02:39 [CRITICAL] - 26494 +2026-02-23 07:02:39 [WARNING] - 2796 +2026-02-23 07:02:39 [ERROR] Invalid input - 1530 +2026-02-23 07:02:39 [ERROR] Invalid input - 13725 +2026-02-23 07:02:39 [ERROR] Invalid input - 13874 +2026-02-23 07:02:39 [ERROR] Disk full - 3095 +2026-02-23 07:02:39 [CRITICAL] - 582 +2026-02-23 07:02:39 [DEBUG] - 13230 +2026-02-23 07:02:39 [CRITICAL] - 23801 +2026-02-23 07:02:39 [CRITICAL] - 5001 +2026-02-23 07:02:39 [WARNING] - 14225 +2026-02-23 07:02:39 [INFO] - 24092 +2026-02-23 07:02:39 [DEBUG] - 1582 +2026-02-23 07:02:39 [INFO] - 20925 +2026-02-23 07:02:39 [DEBUG] - 12156 +2026-02-23 07:02:39 [INFO] - 7152 +2026-02-23 07:02:39 [CRITICAL] - 2555 +2026-02-23 07:02:39 [ERROR] Invalid input - 21891 +2026-02-23 07:02:39 [DEBUG] - 30124 +2026-02-23 07:02:39 [ERROR] Invalid input - 15915 +2026-02-23 07:02:39 [ERROR] Invalid input - 15063 +2026-02-23 07:02:39 [CRITICAL] - 9576 +2026-02-23 07:02:39 [WARNING] - 15669 +2026-02-23 07:02:39 [CRITICAL] - 29919 +2026-02-23 07:02:39 [INFO] - 28353 +2026-02-23 07:02:39 [CRITICAL] - 29877 +2026-02-23 07:02:39 [INFO] - 21714 +2026-02-23 07:02:39 [ERROR] Invalid input - 29530 +2026-02-23 07:02:39 [DEBUG] - 3011 +2026-02-23 07:02:39 [ERROR] Invalid input - 15105 +2026-02-23 07:02:39 [ERROR] Failed to connect - 3793 +2026-02-23 07:02:39 [CRITICAL] - 15354 +2026-02-23 07:02:39 [CRITICAL] - 13986 +2026-02-23 07:02:39 [INFO] - 20242 +2026-02-23 07:02:39 [DEBUG] - 31833 +2026-02-23 07:02:39 [INFO] - 13611 +2026-02-23 07:02:39 [CRITICAL] - 1635 +2026-02-23 07:02:40 [ERROR] Out of memory - 17600 +2026-02-23 07:02:40 [INFO] - 22504 +2026-02-23 07:02:40 [DEBUG] - 8414 +2026-02-23 07:02:40 [INFO] - 23475 +2026-02-23 07:02:40 [WARNING] - 4310 +2026-02-23 07:02:40 [ERROR] Failed to connect - 7048 +2026-02-23 07:02:40 [INFO] - 27957 +2026-02-23 07:02:40 [INFO] - 2346 +2026-02-23 07:02:40 [INFO] - 31926 +2026-02-23 07:02:40 [DEBUG] - 24823 +2026-02-23 07:02:40 [WARNING] - 8877 +2026-02-23 07:02:40 [ERROR] Out of memory - 19827 +2026-02-23 07:02:40 [ERROR] Disk full - 29511 +2026-02-23 07:02:40 [DEBUG] - 247 +2026-02-23 07:02:40 [DEBUG] - 15609 +2026-02-23 07:02:40 [WARNING] - 16787 +2026-02-23 07:02:40 [DEBUG] - 3431 +2026-02-23 07:02:40 [DEBUG] - 32458 +2026-02-23 07:02:40 [CRITICAL] - 27997 +2026-02-23 07:02:40 [INFO] - 4606 +2026-02-23 07:02:40 [CRITICAL] - 12331 +2026-02-23 07:02:40 [INFO] - 23860 +2026-02-23 07:02:40 [CRITICAL] - 9442 +2026-02-23 07:02:40 [WARNING] - 20803 +2026-02-23 07:02:40 [DEBUG] - 994 +2026-02-23 07:02:40 [CRITICAL] - 18770 +2026-02-23 07:02:40 [WARNING] - 16324 +2026-02-23 07:02:40 [CRITICAL] - 5661 +2026-02-23 07:02:40 [WARNING] - 28706 +2026-02-23 07:02:40 [DEBUG] - 10603 +2026-02-23 07:02:40 [INFO] - 3179 +2026-02-23 07:02:40 [ERROR] Invalid input - 1596 +2026-02-23 07:02:40 [WARNING] - 28899 +2026-02-23 07:02:40 [INFO] - 1006 +2026-02-23 07:02:40 [CRITICAL] - 15220 +2026-02-23 07:02:40 [WARNING] - 16013 +2026-02-23 07:02:40 [CRITICAL] - 2241 +2026-02-23 07:02:40 [DEBUG] - 21814 +2026-02-23 07:02:40 [INFO] - 19396 +2026-02-23 07:02:40 [INFO] - 29377 +2026-02-23 07:02:40 [ERROR] Segmentation fault - 31050 +2026-02-23 07:02:40 [CRITICAL] - 2459 +2026-02-23 07:02:40 [WARNING] - 13535 +2026-02-23 07:02:40 [CRITICAL] - 24304 +2026-02-23 07:02:40 [INFO] - 935 +2026-02-23 07:02:40 [WARNING] - 9038 +2026-02-23 07:02:40 [CRITICAL] - 5813 +2026-02-23 07:02:40 [WARNING] - 13212 +2026-02-23 07:02:40 [ERROR] Invalid input - 5129 +2026-02-23 07:02:40 [INFO] - 21702 +2026-02-23 07:02:40 [DEBUG] - 21054 +2026-02-23 07:02:40 [ERROR] Failed to connect - 32286 +2026-02-23 07:02:40 [INFO] - 19046 +2026-02-23 07:02:40 [CRITICAL] - 24425 +2026-02-23 07:02:40 [CRITICAL] - 3903 +2026-02-23 07:02:40 [DEBUG] - 10534 +2026-02-23 07:02:40 [DEBUG] - 30782 +2026-02-23 07:02:40 [INFO] - 6029 +2026-02-23 07:02:40 [CRITICAL] - 27321 +2026-02-23 07:02:40 [INFO] - 16280 +2026-02-23 07:02:40 [WARNING] - 19750 +2026-02-23 07:02:40 [ERROR] Out of memory - 3201 +2026-02-23 07:02:40 [ERROR] Segmentation fault - 10210 +2026-02-23 07:02:40 [CRITICAL] - 9574 +2026-02-23 07:02:40 [CRITICAL] - 24330 +2026-02-23 07:02:40 [CRITICAL] - 9876 +2026-02-23 07:02:40 [WARNING] - 10226 +2026-02-23 07:02:40 [ERROR] Out of memory - 25688 +2026-02-23 07:02:40 [INFO] - 10399 +2026-02-23 07:02:40 [ERROR] Disk full - 16240 +2026-02-23 07:02:40 [INFO] - 2609 +2026-02-23 07:02:40 [ERROR] Out of memory - 3436 +2026-02-23 07:02:40 [ERROR] Disk full - 22927 +2026-02-23 07:02:40 [DEBUG] - 15039 +2026-02-23 07:02:40 [CRITICAL] - 16994 +2026-02-23 07:02:40 [INFO] - 10048 +2026-02-23 07:02:40 [ERROR] Invalid input - 27584 +2026-02-23 07:02:40 [ERROR] Out of memory - 24121 +2026-02-23 07:02:40 [ERROR] Invalid input - 22784 +2026-02-23 07:02:40 [INFO] - 32489 +2026-02-23 07:02:40 [WARNING] - 28872 +2026-02-23 07:02:40 [INFO] - 12493 +2026-02-23 07:02:40 [DEBUG] - 16080 +2026-02-23 07:02:40 [INFO] - 23323 +2026-02-23 07:02:40 [CRITICAL] - 30984 +2026-02-23 07:02:40 [ERROR] Segmentation fault - 28476 +2026-02-23 07:02:40 [DEBUG] - 2886 +2026-02-23 07:02:40 [INFO] - 3152 +2026-02-23 07:02:40 [WARNING] - 19544 +2026-02-23 07:02:40 [INFO] - 13185 +2026-02-23 07:02:40 [INFO] - 13002 +2026-02-23 07:02:40 [INFO] - 11410 +2026-02-23 07:02:40 [ERROR] Failed to connect - 18016 +2026-02-23 07:02:40 [INFO] - 17396 +2026-02-23 07:02:40 [WARNING] - 1673 +2026-02-23 07:02:40 [INFO] - 1446 +2026-02-23 07:02:40 [DEBUG] - 10828 +2026-02-23 07:02:40 [ERROR] Out of memory - 1731 +2026-02-23 07:02:40 [CRITICAL] - 19588 +2026-02-23 07:02:40 [WARNING] - 16191 +2026-02-23 07:02:40 [CRITICAL] - 3339 +2026-02-23 07:02:40 [CRITICAL] - 12745 +2026-02-23 07:02:40 [DEBUG] - 3008 +2026-02-23 07:02:40 [WARNING] - 176 +2026-02-23 07:02:40 [WARNING] - 10417 +2026-02-23 07:02:40 [DEBUG] - 29184 +2026-02-23 07:02:40 [ERROR] Invalid input - 14522 +2026-02-23 07:02:40 [CRITICAL] - 20739 +2026-02-23 07:02:40 [ERROR] Segmentation fault - 25348 +2026-02-23 07:02:40 [ERROR] Disk full - 9371 +2026-02-23 07:02:40 [INFO] - 28642 +2026-02-23 07:02:40 [INFO] - 3895 +2026-02-23 07:02:40 [ERROR] Failed to connect - 27686 +2026-02-23 07:02:40 [WARNING] - 29933 +2026-02-23 07:02:40 [DEBUG] - 11263 +2026-02-23 07:02:40 [DEBUG] - 12605 +2026-02-23 07:02:40 [INFO] - 3991 +2026-02-23 07:02:40 [WARNING] - 31142 +2026-02-23 07:02:40 [CRITICAL] - 9533 +2026-02-23 07:02:40 [ERROR] Failed to connect - 17073 +2026-02-23 07:02:40 [ERROR] Out of memory - 19442 +2026-02-23 07:02:40 [WARNING] - 17912 +2026-02-23 07:02:40 [ERROR] Failed to connect - 21564 +2026-02-23 07:02:40 [DEBUG] - 18920 +2026-02-23 07:02:40 [CRITICAL] - 26053 +2026-02-23 07:02:40 [ERROR] Out of memory - 25799 +2026-02-23 07:02:40 [WARNING] - 23685 +2026-02-23 07:02:40 [ERROR] Invalid input - 25419 +2026-02-23 07:02:40 [INFO] - 21312 +2026-02-23 07:02:40 [WARNING] - 6461 +2026-02-23 07:02:40 [CRITICAL] - 18748 +2026-02-23 07:02:40 [DEBUG] - 29349 +2026-02-23 07:02:40 [INFO] - 24399 +2026-02-23 07:02:40 [ERROR] Failed to connect - 32424 +2026-02-23 07:02:40 [CRITICAL] - 21586 +2026-02-23 07:02:40 [DEBUG] - 22873 +2026-02-23 07:02:40 [DEBUG] - 16169 +2026-02-23 07:02:40 [INFO] - 30523 +2026-02-23 07:02:40 [INFO] - 23932 +2026-02-23 07:02:40 [CRITICAL] - 22429 +2026-02-23 07:02:40 [CRITICAL] - 14529 +2026-02-23 07:02:40 [WARNING] - 25980 +2026-02-23 07:02:40 [CRITICAL] - 4815 +2026-02-23 07:02:40 [DEBUG] - 10479 +2026-02-23 07:02:40 [WARNING] - 21142 +2026-02-23 07:02:40 [INFO] - 11783 +2026-02-23 07:02:40 [DEBUG] - 11877 +2026-02-23 07:02:40 [INFO] - 1116 +2026-02-23 07:02:40 [INFO] - 5422 +2026-02-23 07:02:40 [INFO] - 1151 +2026-02-23 07:02:40 [INFO] - 18778 +2026-02-23 07:02:40 [DEBUG] - 7038 +2026-02-23 07:02:40 [DEBUG] - 4345 +2026-02-23 07:02:40 [WARNING] - 17423 +2026-02-23 07:02:40 [INFO] - 14839 +2026-02-23 07:02:40 [DEBUG] - 12433 +2026-02-23 07:02:40 [CRITICAL] - 12523 +2026-02-23 07:02:40 [ERROR] Out of memory - 14578 +2026-02-23 07:02:40 [WARNING] - 22234 +2026-02-23 07:02:40 [WARNING] - 28822 +2026-02-23 07:02:40 [WARNING] - 6460 +2026-02-23 07:02:40 [INFO] - 20421 +2026-02-23 07:02:40 [INFO] - 28724 +2026-02-23 07:02:40 [WARNING] - 27805 +2026-02-23 07:02:40 [ERROR] Invalid input - 7191 +2026-02-23 07:02:40 [WARNING] - 14534 +2026-02-23 07:02:40 [ERROR] Out of memory - 7138 +2026-02-23 07:02:40 [CRITICAL] - 20255 +2026-02-23 07:02:40 [ERROR] Disk full - 2274 +2026-02-23 07:02:40 [ERROR] Disk full - 2240 +2026-02-23 07:02:40 [WARNING] - 10931 +2026-02-23 07:02:40 [INFO] - 5920 +2026-02-23 07:02:40 [DEBUG] - 6232 +2026-02-23 07:02:40 [CRITICAL] - 29181 +2026-02-23 07:02:40 [WARNING] - 20756 +2026-02-23 07:02:40 [CRITICAL] - 22800 +2026-02-23 07:02:40 [DEBUG] - 3330 +2026-02-23 07:02:40 [CRITICAL] - 14835 +2026-02-23 07:02:40 [WARNING] - 5417 +2026-02-23 07:02:40 [INFO] - 9356 +2026-02-23 07:02:40 [CRITICAL] - 29275 +2026-02-23 07:02:40 [INFO] - 20906 +2026-02-23 07:02:40 [ERROR] Invalid input - 11409 +2026-02-23 07:02:40 [CRITICAL] - 2770 +2026-02-23 07:02:40 [CRITICAL] - 2711 +2026-02-23 07:02:40 [WARNING] - 25250 +2026-02-23 07:02:40 [CRITICAL] - 26361 +2026-02-23 07:02:40 [WARNING] - 5411 +2026-02-23 07:02:40 [CRITICAL] - 29438 +2026-02-23 07:02:40 [ERROR] Segmentation fault - 1443 +2026-02-23 07:02:40 [INFO] - 259 +2026-02-23 07:02:40 [WARNING] - 31605 +2026-02-23 07:02:40 [ERROR] Invalid input - 31628 +2026-02-23 07:02:40 [DEBUG] - 24225 +2026-02-23 07:02:40 [WARNING] - 20901 +2026-02-23 07:02:40 [ERROR] Out of memory - 27238 +2026-02-23 07:02:40 [DEBUG] - 27285 +2026-02-23 07:02:40 [DEBUG] - 14453 +2026-02-23 07:02:40 [ERROR] Invalid input - 32361 +2026-02-23 07:02:40 [ERROR] Failed to connect - 19457 +2026-02-23 07:02:40 [ERROR] Failed to connect - 24068 +2026-02-23 07:02:40 [CRITICAL] - 29025 +2026-02-23 07:02:40 [CRITICAL] - 441 +2026-02-23 07:02:40 [DEBUG] - 18721 +2026-02-23 07:02:40 [ERROR] Disk full - 6721 +2026-02-23 07:02:40 [DEBUG] - 14842 +2026-02-23 07:02:40 [WARNING] - 2862 +2026-02-23 07:02:40 [WARNING] - 1423 +2026-02-23 07:02:40 [CRITICAL] - 32359 +2026-02-23 07:02:40 [ERROR] Invalid input - 22719 +2026-02-23 07:02:40 [CRITICAL] - 11961 +2026-02-23 07:02:40 [CRITICAL] - 250 +2026-02-23 07:02:40 [CRITICAL] - 21094 +2026-02-23 07:02:40 [ERROR] Out of memory - 18969 +2026-02-23 07:02:40 [CRITICAL] - 32480 +2026-02-23 07:02:40 [ERROR] Disk full - 25818 +2026-02-23 07:02:40 [WARNING] - 2561 +2026-02-23 07:02:40 [ERROR] Out of memory - 14891 +2026-02-23 07:02:40 [INFO] - 19114 +2026-02-23 07:02:40 [WARNING] - 27957 +2026-02-23 07:02:40 [WARNING] - 7353 +2026-02-23 07:02:40 [ERROR] Failed to connect - 29414 +2026-02-23 07:02:40 [WARNING] - 28461 +2026-02-23 07:02:40 [DEBUG] - 13691 +2026-02-23 07:02:40 [ERROR] Disk full - 19341 +2026-02-23 07:02:40 [WARNING] - 9333 +2026-02-23 07:02:40 [ERROR] Failed to connect - 4756 +2026-02-23 07:02:40 [ERROR] Failed to connect - 19390 +2026-02-23 07:02:40 [WARNING] - 27591 +2026-02-23 07:02:40 [DEBUG] - 22084 +2026-02-23 07:02:40 [CRITICAL] - 15297 +2026-02-23 07:02:40 [ERROR] Out of memory - 24413 +2026-02-23 07:02:40 [INFO] - 21460 +2026-02-23 07:02:40 [ERROR] Segmentation fault - 16886 +2026-02-23 07:02:40 [DEBUG] - 31573 +2026-02-23 07:02:40 [ERROR] Segmentation fault - 14958 +2026-02-23 07:02:40 [CRITICAL] - 12413 +2026-02-23 07:02:40 [CRITICAL] - 16660 +2026-02-23 07:02:40 [INFO] - 20784 +2026-02-23 07:02:40 [CRITICAL] - 2406 +2026-02-23 07:02:40 [CRITICAL] - 20864 +2026-02-23 07:02:40 [ERROR] Segmentation fault - 8353 +2026-02-23 07:02:40 [WARNING] - 365 +2026-02-23 07:02:40 [DEBUG] - 13906 +2026-02-23 07:02:40 [WARNING] - 10703 +2026-02-23 07:02:40 [DEBUG] - 16351 +2026-02-23 07:02:40 [WARNING] - 6537 +2026-02-23 07:02:40 [DEBUG] - 5660 +2026-02-23 07:02:40 [ERROR] Out of memory - 30004 +2026-02-23 07:02:40 [WARNING] - 18272 +2026-02-23 07:02:40 [DEBUG] - 26970 +2026-02-23 07:02:40 [INFO] - 29710 +2026-02-23 07:02:40 [WARNING] - 21814 +2026-02-23 07:02:40 [WARNING] - 3388 +2026-02-23 07:02:40 [DEBUG] - 14844 +2026-02-23 07:02:40 [ERROR] Out of memory - 5261 +2026-02-23 07:02:40 [CRITICAL] - 14662 +2026-02-23 07:02:40 [INFO] - 12433 +2026-02-23 07:02:40 [CRITICAL] - 16204 +2026-02-23 07:02:40 [ERROR] Invalid input - 14386 +2026-02-23 07:02:40 [INFO] - 21325 +2026-02-23 07:02:40 [INFO] - 12195 +2026-02-23 07:02:40 [WARNING] - 32410 +2026-02-23 07:02:40 [ERROR] Failed to connect - 22846 +2026-02-23 07:02:40 [CRITICAL] - 1027 +2026-02-23 07:02:40 [DEBUG] - 18168 +2026-02-23 07:02:40 [CRITICAL] - 22960 +2026-02-23 07:02:40 [WARNING] - 5360 +2026-02-23 07:02:40 [CRITICAL] - 2082 +2026-02-23 07:02:40 [DEBUG] - 8322 +2026-02-23 07:02:40 [WARNING] - 24530 +2026-02-23 07:02:40 [WARNING] - 30330 +2026-02-23 07:02:40 [ERROR] Segmentation fault - 28892 +2026-02-23 07:02:40 [INFO] - 32170 +2026-02-23 07:02:40 [CRITICAL] - 492 +2026-02-23 07:02:40 [ERROR] Failed to connect - 19182 +2026-02-23 07:02:40 [DEBUG] - 12350 +2026-02-23 07:02:40 [CRITICAL] - 9046 +2026-02-23 07:02:40 [INFO] - 14183 +2026-02-23 07:02:40 [WARNING] - 16932 +2026-02-23 07:02:40 [WARNING] - 19575 +2026-02-23 07:02:40 [INFO] - 26194 +2026-02-23 07:02:40 [WARNING] - 3711 +2026-02-23 07:02:40 [WARNING] - 21399 +2026-02-23 07:02:40 [DEBUG] - 27064 +2026-02-23 07:02:40 [INFO] - 2851 +2026-02-23 07:02:40 [DEBUG] - 6631 +2026-02-23 07:02:40 [DEBUG] - 9176 +2026-02-23 07:02:40 [WARNING] - 689 +2026-02-23 07:02:40 [WARNING] - 24676 +2026-02-23 07:02:40 [INFO] - 18297 +2026-02-23 07:02:40 [CRITICAL] - 19537 +2026-02-23 07:02:40 [INFO] - 30806 +2026-02-23 07:02:40 [WARNING] - 27284 +2026-02-23 07:02:40 [CRITICAL] - 24465 +2026-02-23 07:02:40 [CRITICAL] - 9466 +2026-02-23 07:02:40 [CRITICAL] - 26522 +2026-02-23 07:02:40 [ERROR] Out of memory - 27161 +2026-02-23 07:02:40 [INFO] - 24448 +2026-02-23 07:02:40 [DEBUG] - 26676 +2026-02-23 07:02:40 [WARNING] - 570 +2026-02-23 07:02:40 [INFO] - 22837 +2026-02-23 07:02:40 [CRITICAL] - 32712 +2026-02-23 07:02:40 [INFO] - 7322 +2026-02-23 07:02:40 [WARNING] - 19986 +2026-02-23 07:02:40 [DEBUG] - 10520 +2026-02-23 07:02:40 [DEBUG] - 947 +2026-02-23 07:02:40 [CRITICAL] - 30290 +2026-02-23 07:02:40 [WARNING] - 29243 +2026-02-23 07:02:40 [DEBUG] - 8756 +2026-02-23 07:02:40 [INFO] - 31390 +2026-02-23 07:02:40 [ERROR] Failed to connect - 29582 +2026-02-23 07:02:40 [DEBUG] - 8559 +2026-02-23 07:02:40 [ERROR] Segmentation fault - 2614 +2026-02-23 07:02:40 [DEBUG] - 20982 +2026-02-23 07:02:40 [DEBUG] - 11321 +2026-02-23 07:02:40 [ERROR] Invalid input - 8798 +2026-02-23 07:02:40 [DEBUG] - 193 +2026-02-23 07:02:40 [CRITICAL] - 15225 +2026-02-23 07:02:40 [WARNING] - 29361 +2026-02-23 07:02:40 [DEBUG] - 16474 +2026-02-23 07:02:40 [CRITICAL] - 16991 +2026-02-23 07:02:40 [DEBUG] - 25643 +2026-02-23 07:02:40 [DEBUG] - 14440 +2026-02-23 07:02:40 [DEBUG] - 504 +2026-02-23 07:02:40 [INFO] - 3362 +2026-02-23 07:02:40 [ERROR] Segmentation fault - 30455 +2026-02-23 07:02:40 [DEBUG] - 28631 +2026-02-23 07:02:40 [ERROR] Invalid input - 8684 +2026-02-23 07:02:40 [WARNING] - 15125 +2026-02-23 07:02:40 [DEBUG] - 5315 +2026-02-23 07:02:40 [INFO] - 10615 +2026-02-23 07:02:40 [CRITICAL] - 7150 +2026-02-23 07:02:40 [INFO] - 21248 +2026-02-23 07:02:40 [ERROR] Disk full - 7385 +2026-02-23 07:02:40 [INFO] - 31778 +2026-02-23 07:02:40 [DEBUG] - 9368 +2026-02-23 07:02:40 [WARNING] - 21975 +2026-02-23 07:02:40 [WARNING] - 27428 +2026-02-23 07:02:40 [INFO] - 22948 +2026-02-23 07:02:40 [DEBUG] - 12620 +2026-02-23 07:02:40 [WARNING] - 2683 +2026-02-23 07:02:40 [WARNING] - 1377 +2026-02-23 07:02:40 [CRITICAL] - 19119 +2026-02-23 07:02:40 [WARNING] - 14305 +2026-02-23 07:02:40 [ERROR] Disk full - 26851 +2026-02-23 07:02:40 [INFO] - 24931 +2026-02-23 07:02:40 [ERROR] Segmentation fault - 27705 +2026-02-23 07:02:40 [CRITICAL] - 14824 +2026-02-23 07:02:40 [WARNING] - 17512 +2026-02-23 07:02:40 [INFO] - 15422 +2026-02-23 07:02:40 [WARNING] - 15985 +2026-02-23 07:02:40 [ERROR] Segmentation fault - 21321 +2026-02-23 07:02:40 [INFO] - 29810 +2026-02-23 07:02:40 [CRITICAL] - 31675 +2026-02-23 07:02:40 [ERROR] Invalid input - 431 +2026-02-23 07:02:40 [WARNING] - 21295 +2026-02-23 07:02:40 [INFO] - 22390 +2026-02-23 07:02:40 [ERROR] Out of memory - 29242 +2026-02-23 07:02:40 [WARNING] - 7040 +2026-02-23 07:02:40 [INFO] - 31383 +2026-02-23 07:02:40 [WARNING] - 28103 +2026-02-23 07:02:40 [DEBUG] - 17090 +2026-02-23 07:02:40 [CRITICAL] - 28869 +2026-02-23 07:02:40 [WARNING] - 18679 +2026-02-23 07:02:40 [ERROR] Disk full - 30485 +2026-02-23 07:02:40 [CRITICAL] - 4420 +2026-02-23 07:02:40 [WARNING] - 14609 +2026-02-23 07:02:40 [CRITICAL] - 20505 +2026-02-23 07:02:40 [CRITICAL] - 4920 +2026-02-23 07:02:40 [CRITICAL] - 6291 +2026-02-23 07:02:40 [INFO] - 10628 +2026-02-23 07:02:40 [CRITICAL] - 22466 +2026-02-23 07:02:40 [INFO] - 24228 +2026-02-23 07:02:40 [INFO] - 18872 +2026-02-23 07:02:40 [INFO] - 5576 +2026-02-23 07:02:40 [ERROR] Out of memory - 26812 +2026-02-23 07:02:40 [ERROR] Segmentation fault - 22708 +2026-02-23 07:02:40 [DEBUG] - 24321 +2026-02-23 07:02:40 [WARNING] - 29671 +2026-02-23 07:02:40 [WARNING] - 13440 +2026-02-23 07:02:40 [CRITICAL] - 4598 +2026-02-23 07:02:40 [CRITICAL] - 25036 +2026-02-23 07:02:40 [DEBUG] - 14992 +2026-02-23 07:02:40 [INFO] - 12555 +2026-02-23 07:02:40 [CRITICAL] - 7609 +2026-02-23 07:02:40 [WARNING] - 26256 +2026-02-23 07:02:40 [WARNING] - 11680 +2026-02-23 07:02:40 [INFO] - 18833 +2026-02-23 07:02:40 [INFO] - 2276 +2026-02-23 07:02:40 [DEBUG] - 17581 +2026-02-23 07:02:40 [DEBUG] - 16687 +2026-02-23 07:02:40 [CRITICAL] - 7811 +2026-02-23 07:02:40 [ERROR] Out of memory - 31330 +2026-02-23 07:02:40 [WARNING] - 31804 +2026-02-23 07:02:40 [DEBUG] - 10168 +2026-02-23 07:02:40 [WARNING] - 18078 +2026-02-23 07:02:40 [CRITICAL] - 15743 +2026-02-23 07:02:40 [CRITICAL] - 14784 +2026-02-23 07:02:40 [CRITICAL] - 10962 +2026-02-23 07:02:40 [CRITICAL] - 29341 +2026-02-23 07:02:40 [CRITICAL] - 28423 +2026-02-23 07:02:40 [DEBUG] - 2517 +2026-02-23 07:02:40 [WARNING] - 22727 +2026-02-23 07:02:40 [DEBUG] - 17661 +2026-02-23 07:02:40 [DEBUG] - 32015 +2026-02-23 07:02:40 [INFO] - 9631 +2026-02-23 07:02:40 [WARNING] - 7053 +2026-02-23 07:02:40 [CRITICAL] - 25267 +2026-02-23 07:02:40 [ERROR] Failed to connect - 30868 +2026-02-23 07:02:40 [ERROR] Failed to connect - 24570 +2026-02-23 07:02:40 [WARNING] - 15087 +2026-02-23 07:02:40 [INFO] - 14036 +2026-02-23 07:02:40 [ERROR] Invalid input - 5964 +2026-02-23 07:02:40 [CRITICAL] - 4060 +2026-02-23 07:02:40 [WARNING] - 5148 +2026-02-23 07:02:40 [WARNING] - 29495 +2026-02-23 07:02:40 [DEBUG] - 15802 +2026-02-23 07:02:40 [INFO] - 22325 +2026-02-23 07:02:40 [INFO] - 20765 +2026-02-23 07:02:40 [CRITICAL] - 5876 +2026-02-23 07:02:40 [CRITICAL] - 104 +2026-02-23 07:02:40 [DEBUG] - 14533 +2026-02-23 07:02:40 [DEBUG] - 14747 +2026-02-23 07:02:40 [CRITICAL] - 25003 +2026-02-23 07:02:40 [INFO] - 1574 +2026-02-23 07:02:40 [DEBUG] - 9428 +2026-02-23 07:02:40 [CRITICAL] - 10225 +2026-02-23 07:02:40 [WARNING] - 27332 +2026-02-23 07:02:40 [CRITICAL] - 10997 +2026-02-23 07:02:40 [WARNING] - 13268 +2026-02-23 07:02:40 [DEBUG] - 3830 +2026-02-23 07:02:40 [DEBUG] - 1376 +2026-02-23 07:02:40 [CRITICAL] - 22877 +2026-02-23 07:02:40 [INFO] - 13340 +2026-02-23 07:02:40 [CRITICAL] - 17747 +2026-02-23 07:02:40 [DEBUG] - 24430 +2026-02-23 07:02:40 [ERROR] Invalid input - 4242 +2026-02-23 07:02:40 [WARNING] - 27801 +2026-02-23 07:02:40 [CRITICAL] - 7190 +2026-02-23 07:02:40 [ERROR] Invalid input - 28000 +2026-02-23 07:02:40 [WARNING] - 23699 +2026-02-23 07:02:40 [WARNING] - 29131 +2026-02-23 07:02:40 [ERROR] Disk full - 8767 +2026-02-23 07:02:40 [DEBUG] - 5728 +2026-02-23 07:02:40 [WARNING] - 1418 +2026-02-23 07:02:40 [WARNING] - 12672 +2026-02-23 07:02:40 [WARNING] - 9564 +2026-02-23 07:02:40 [CRITICAL] - 27455 +2026-02-23 07:02:40 [ERROR] Invalid input - 15516 +2026-02-23 07:02:40 [DEBUG] - 29320 +2026-02-23 07:02:40 [CRITICAL] - 11025 +2026-02-23 07:02:40 [CRITICAL] - 12770 +2026-02-23 07:02:40 [ERROR] Segmentation fault - 20595 +2026-02-23 07:02:40 [INFO] - 13779 +2026-02-23 07:02:40 [DEBUG] - 8709 +2026-02-23 07:02:40 [DEBUG] - 25534 +2026-02-23 07:02:40 [ERROR] Segmentation fault - 4560 +2026-02-23 07:02:40 [ERROR] Out of memory - 20801 +2026-02-23 07:02:40 [INFO] - 20146 +2026-02-23 07:02:40 [WARNING] - 11267 +2026-02-23 07:02:40 [CRITICAL] - 29115 +2026-02-23 07:02:40 [ERROR] Out of memory - 20197 +2026-02-23 07:02:40 [WARNING] - 17260 +2026-02-23 07:02:40 [WARNING] - 52 +2026-02-23 07:02:40 [INFO] - 14464 +2026-02-23 07:02:40 [DEBUG] - 19608 +2026-02-23 07:02:40 [WARNING] - 31587 +2026-02-23 07:02:40 [ERROR] Invalid input - 2468 +2026-02-23 07:02:40 [ERROR] Segmentation fault - 4302 +2026-02-23 07:02:40 [INFO] - 23506 +2026-02-23 07:02:40 [ERROR] Invalid input - 1021 +2026-02-23 07:02:40 [CRITICAL] - 4092 +2026-02-23 07:02:40 [CRITICAL] - 14053 +2026-02-23 07:02:40 [INFO] - 21114 +2026-02-23 07:02:40 [CRITICAL] - 29774 +2026-02-23 07:02:40 [CRITICAL] - 25297 +2026-02-23 07:02:40 [DEBUG] - 3512 +2026-02-23 07:02:40 [ERROR] Disk full - 25550 +2026-02-23 07:02:40 [DEBUG] - 20629 +2026-02-23 07:02:40 [WARNING] - 5752 +2026-02-23 07:02:40 [ERROR] Disk full - 14889 +2026-02-23 07:02:40 [DEBUG] - 4061 +2026-02-23 07:02:40 [CRITICAL] - 29549 +2026-02-23 07:02:40 [ERROR] Segmentation fault - 6918 +2026-02-23 07:02:40 [INFO] - 15859 +2026-02-23 07:02:40 [INFO] - 20812 +2026-02-23 07:02:40 [DEBUG] - 10012 +2026-02-23 07:02:40 [DEBUG] - 5291 +2026-02-23 07:02:40 [INFO] - 24571 +2026-02-23 07:02:40 [ERROR] Failed to connect - 19033 +2026-02-23 07:02:40 [CRITICAL] - 30453 +2026-02-23 07:02:40 [WARNING] - 29554 +2026-02-23 07:02:40 [DEBUG] - 20622 +2026-02-23 07:02:40 [WARNING] - 1695 +2026-02-23 07:02:40 [WARNING] - 3489 +2026-02-23 07:02:40 [DEBUG] - 27224 +2026-02-23 07:02:40 [DEBUG] - 4493 +2026-02-23 07:02:40 [DEBUG] - 2647 +2026-02-23 07:02:40 [DEBUG] - 15004 +2026-02-23 07:02:40 [WARNING] - 5631 +2026-02-23 07:02:40 [DEBUG] - 9407 +2026-02-23 07:02:40 [INFO] - 28229 +2026-02-23 07:02:40 [CRITICAL] - 6638 +2026-02-23 07:02:40 [ERROR] Segmentation fault - 20155 +2026-02-23 07:02:40 [DEBUG] - 21805 +2026-02-23 07:02:40 [DEBUG] - 19502 +2026-02-23 07:02:40 [CRITICAL] - 21384 +2026-02-23 07:02:40 [INFO] - 17560 +2026-02-23 07:02:40 [INFO] - 28740 +2026-02-23 07:02:40 [CRITICAL] - 9733 +2026-02-23 07:02:40 [ERROR] Invalid input - 18828 +2026-02-23 07:02:40 [ERROR] Out of memory - 8302 +2026-02-23 07:02:40 [WARNING] - 17126 +2026-02-23 07:02:40 [CRITICAL] - 22025 +2026-02-23 07:02:40 [WARNING] - 7837 +2026-02-23 07:02:40 [DEBUG] - 23282 +2026-02-23 07:02:40 [ERROR] Out of memory - 9034 +2026-02-23 07:02:40 [INFO] - 30979 +2026-02-23 07:02:40 [WARNING] - 22947 +2026-02-23 07:02:40 [ERROR] Failed to connect - 10179 +2026-02-23 07:02:40 [WARNING] - 30900 +2026-02-23 07:02:40 [ERROR] Out of memory - 18409 +2026-02-23 07:02:40 [ERROR] Segmentation fault - 1033 +2026-02-23 07:02:40 [DEBUG] - 3225 +2026-02-23 07:02:40 [INFO] - 8136 +2026-02-23 07:02:40 [DEBUG] - 3354 +2026-02-23 07:02:40 [CRITICAL] - 9047 +2026-02-23 07:02:40 [WARNING] - 18135 +2026-02-23 07:02:40 [INFO] - 1809 +2026-02-23 07:02:40 [DEBUG] - 4427 +2026-02-23 07:02:40 [ERROR] Out of memory - 29381 +2026-02-23 07:02:40 [ERROR] Out of memory - 26711 +2026-02-23 07:02:40 [ERROR] Failed to connect - 8390 +2026-02-23 07:02:40 [INFO] - 18180 +2026-02-23 07:02:40 [CRITICAL] - 31583 +2026-02-23 07:02:40 [WARNING] - 9718 +2026-02-23 07:02:40 [DEBUG] - 4967 +2026-02-23 07:02:40 [CRITICAL] - 17136 +2026-02-23 07:02:40 [CRITICAL] - 20862 +2026-02-23 07:02:40 [DEBUG] - 10559 +2026-02-23 07:02:40 [ERROR] Segmentation fault - 4467 +2026-02-23 07:02:40 [ERROR] Disk full - 11921 +2026-02-23 07:02:40 [INFO] - 17388 +2026-02-23 07:02:40 [DEBUG] - 475 +2026-02-23 07:02:40 [WARNING] - 2058 +2026-02-23 07:02:40 [WARNING] - 12093 +2026-02-23 07:02:40 [WARNING] - 4953 +2026-02-23 07:02:40 [ERROR] Disk full - 1433 +2026-02-23 07:02:40 [WARNING] - 22875 +2026-02-23 07:02:40 [DEBUG] - 15446 +2026-02-23 07:02:40 [CRITICAL] - 13259 +2026-02-23 07:02:40 [WARNING] - 24993 +2026-02-23 07:02:40 [DEBUG] - 17387 +2026-02-23 07:02:40 [WARNING] - 13969 +2026-02-23 07:02:40 [WARNING] - 18577 +2026-02-23 07:02:40 [DEBUG] - 15705 +2026-02-23 07:02:40 [ERROR] Out of memory - 10835 +2026-02-23 07:02:40 [INFO] - 26382 +2026-02-23 07:02:40 [WARNING] - 24654 +2026-02-23 07:02:40 [ERROR] Out of memory - 17672 +2026-02-23 07:02:40 [DEBUG] - 30888 +2026-02-23 07:02:40 [DEBUG] - 31838 +2026-02-23 07:02:40 [WARNING] - 13677 +2026-02-23 07:02:40 [DEBUG] - 18363 +2026-02-23 07:02:40 [WARNING] - 19068 +2026-02-23 07:02:40 [DEBUG] - 13456 +2026-02-23 07:02:40 [DEBUG] - 15160 +2026-02-23 07:02:40 [INFO] - 28460 +2026-02-23 07:02:40 [WARNING] - 32016 +2026-02-23 07:02:40 [CRITICAL] - 18099 +2026-02-23 07:02:40 [DEBUG] - 13954 +2026-02-23 07:02:40 [CRITICAL] - 25863 +2026-02-23 07:02:40 [INFO] - 30576 +2026-02-23 07:02:40 [DEBUG] - 11752 +2026-02-23 07:02:40 [CRITICAL] - 12391 +2026-02-23 07:02:40 [WARNING] - 11630 +2026-02-23 07:02:40 [WARNING] - 26851 +2026-02-23 07:02:40 [DEBUG] - 16270 +2026-02-23 07:02:40 [WARNING] - 18964 +2026-02-23 07:02:40 [WARNING] - 22040 +2026-02-23 07:02:40 [CRITICAL] - 3239 +2026-02-23 07:02:40 [DEBUG] - 11972 +2026-02-23 07:02:40 [INFO] - 30186 +2026-02-23 07:02:40 [CRITICAL] - 13672 +2026-02-23 07:02:40 [WARNING] - 12909 +2026-02-23 07:02:40 [DEBUG] - 13723 +2026-02-23 07:02:40 [DEBUG] - 12878 +2026-02-23 07:02:40 [CRITICAL] - 26405 +2026-02-23 07:02:40 [DEBUG] - 21069 +2026-02-23 07:02:40 [INFO] - 10843 +2026-02-23 07:02:40 [ERROR] Segmentation fault - 1394 +2026-02-23 07:02:40 [WARNING] - 29853 +2026-02-23 07:02:40 [WARNING] - 21939 +2026-02-23 07:02:40 [CRITICAL] - 10863 +2026-02-23 07:02:40 [CRITICAL] - 16752 +2026-02-23 07:02:40 [CRITICAL] - 4708 +2026-02-23 07:02:40 [INFO] - 22898 +2026-02-23 07:02:40 [INFO] - 6328 +2026-02-23 07:02:40 [CRITICAL] - 14573 +2026-02-23 07:02:40 [DEBUG] - 24122 +2026-02-23 07:02:40 [INFO] - 27769 +2026-02-23 07:02:40 [DEBUG] - 27361 +2026-02-23 07:02:40 [CRITICAL] - 4378 +2026-02-23 07:02:40 [ERROR] Out of memory - 4304 +2026-02-23 07:02:40 [DEBUG] - 3305 +2026-02-23 07:02:40 [ERROR] Disk full - 14199 +2026-02-23 07:02:40 [DEBUG] - 8372 +2026-02-23 07:02:40 [DEBUG] - 25488 +2026-02-23 07:02:40 [INFO] - 30209 +2026-02-23 07:02:40 [WARNING] - 16161 +2026-02-23 07:02:40 [CRITICAL] - 18570 +2026-02-23 07:02:40 [WARNING] - 582 +2026-02-23 07:02:40 [CRITICAL] - 11946 +2026-02-23 07:02:40 [ERROR] Failed to connect - 6227 +2026-02-23 07:02:40 [CRITICAL] - 4929 +2026-02-23 07:02:40 [INFO] - 32389 +2026-02-23 07:02:40 [CRITICAL] - 7573 +2026-02-23 07:02:40 [DEBUG] - 2047 +2026-02-23 07:02:40 [DEBUG] - 10345 +2026-02-23 07:02:40 [WARNING] - 23608 +2026-02-23 07:02:40 [INFO] - 9677 +2026-02-23 07:02:40 [DEBUG] - 10825 +2026-02-23 07:02:40 [DEBUG] - 29166 +2026-02-23 07:02:40 [WARNING] - 322 +2026-02-23 07:02:40 [WARNING] - 14981 +2026-02-23 07:02:40 [DEBUG] - 29626 +2026-02-23 07:02:40 [INFO] - 15723 +2026-02-23 07:02:40 [ERROR] Out of memory - 20639 +2026-02-23 07:02:40 [WARNING] - 952 +2026-02-23 07:02:40 [WARNING] - 18623 +2026-02-23 07:02:40 [WARNING] - 20849 +2026-02-23 07:02:40 [INFO] - 1929 +2026-02-23 07:02:40 [CRITICAL] - 20368 +2026-02-23 07:02:40 [INFO] - 27228 +2026-02-23 07:02:40 [INFO] - 4653 +2026-02-23 07:02:40 [WARNING] - 18865 +2026-02-23 07:02:40 [INFO] - 19379 +2026-02-23 07:02:40 [ERROR] Segmentation fault - 17541 +2026-02-23 07:02:40 [INFO] - 28757 +2026-02-23 07:02:40 [ERROR] Failed to connect - 18901 +2026-02-23 07:02:40 [WARNING] - 5632 +2026-02-23 07:02:40 [INFO] - 7599 +2026-02-23 07:02:40 [INFO] - 19015 +2026-02-23 07:02:40 [WARNING] - 20288 +2026-02-23 07:02:40 [DEBUG] - 27791 +2026-02-23 07:02:40 [WARNING] - 3431 +2026-02-23 07:02:40 [CRITICAL] - 12575 +2026-02-23 07:02:40 [DEBUG] - 32356 +2026-02-23 07:02:40 [ERROR] Invalid input - 26716 +2026-02-23 07:02:40 [WARNING] - 31567 +2026-02-23 07:02:40 [DEBUG] - 10836 +2026-02-23 07:02:40 [DEBUG] - 18810 +2026-02-23 07:02:40 [ERROR] Failed to connect - 15986 +2026-02-23 07:02:40 [ERROR] Out of memory - 10945 +2026-02-23 07:02:40 [WARNING] - 8752 +2026-02-23 07:02:40 [CRITICAL] - 14735 +2026-02-23 07:02:40 [CRITICAL] - 8152 +2026-02-23 07:02:40 [INFO] - 16082 +2026-02-23 07:02:40 [DEBUG] - 22217 +2026-02-23 07:02:40 [DEBUG] - 21657 +2026-02-23 07:02:40 [ERROR] Failed to connect - 11034 +2026-02-23 07:02:40 [WARNING] - 23210 +2026-02-23 07:02:40 [WARNING] - 12982 +2026-02-23 07:02:40 [WARNING] - 16723 +2026-02-23 07:02:40 [INFO] - 30995 +2026-02-23 07:02:40 [WARNING] - 6530 +2026-02-23 07:02:40 [DEBUG] - 26653 +2026-02-23 07:02:40 [WARNING] - 4986 +2026-02-23 07:02:40 [INFO] - 8779 +2026-02-23 07:02:40 [CRITICAL] - 14676 +2026-02-23 07:02:40 [DEBUG] - 16005 +2026-02-23 07:02:40 [CRITICAL] - 20750 +2026-02-23 07:02:40 [ERROR] Invalid input - 3953 +2026-02-23 07:02:40 [WARNING] - 30256 +2026-02-23 07:02:40 [ERROR] Disk full - 32624 +2026-02-23 07:02:40 [CRITICAL] - 12582 +2026-02-23 07:02:40 [ERROR] Segmentation fault - 17568 +2026-02-23 07:02:40 [INFO] - 14256 +2026-02-23 07:02:40 [CRITICAL] - 7577 +2026-02-23 07:02:40 [WARNING] - 11280 +2026-02-23 07:02:40 [ERROR] Out of memory - 25410 +2026-02-23 07:02:40 [ERROR] Invalid input - 9154 +2026-02-23 07:02:40 [WARNING] - 7224 +2026-02-23 07:02:40 [INFO] - 17792 +2026-02-23 07:02:40 [CRITICAL] - 4103 +2026-02-23 07:02:40 [DEBUG] - 12547 +2026-02-23 07:02:40 [DEBUG] - 29279 +2026-02-23 07:02:40 [INFO] - 20305 +2026-02-23 07:02:40 [ERROR] Segmentation fault - 4261 +2026-02-23 07:02:40 [INFO] - 2981 +2026-02-23 07:02:40 [INFO] - 1630 +2026-02-23 07:02:40 [CRITICAL] - 4293 +2026-02-23 07:02:40 [WARNING] - 14205 +2026-02-23 07:02:40 [WARNING] - 15956 +2026-02-23 07:02:40 [DEBUG] - 3203 +2026-02-23 07:02:40 [ERROR] Invalid input - 8021 +2026-02-23 07:02:40 [INFO] - 12173 +2026-02-23 07:02:40 [WARNING] - 27394 +2026-02-23 07:02:40 [INFO] - 1109 +2026-02-23 07:02:40 [CRITICAL] - 24637 +2026-02-23 07:02:40 [ERROR] Disk full - 24799 +2026-02-23 07:02:40 [DEBUG] - 6656 +2026-02-23 07:02:40 [ERROR] Out of memory - 14097 +2026-02-23 07:02:40 [ERROR] Segmentation fault - 28255 +2026-02-23 07:02:40 [CRITICAL] - 14453 +2026-02-23 07:02:40 [DEBUG] - 17618 +2026-02-23 07:02:40 [DEBUG] - 17658 +2026-02-23 07:02:40 [WARNING] - 11995 +2026-02-23 07:02:40 [DEBUG] - 11798 +2026-02-23 07:02:40 [INFO] - 13254 +2026-02-23 07:02:40 [WARNING] - 3019 +2026-02-23 07:02:40 [ERROR] Invalid input - 27382 +2026-02-23 07:02:40 [ERROR] Disk full - 9595 +2026-02-23 07:02:40 [WARNING] - 2383 +2026-02-23 07:02:40 [DEBUG] - 20467 +2026-02-23 07:02:40 [CRITICAL] - 12172 +2026-02-23 07:02:40 [DEBUG] - 2761 +2026-02-23 07:02:40 [CRITICAL] - 31975 +2026-02-23 07:02:40 [INFO] - 28156 +2026-02-23 07:02:40 [DEBUG] - 4985 +2026-02-23 07:02:40 [ERROR] Failed to connect - 19778 +2026-02-23 07:02:40 [DEBUG] - 31700 +2026-02-23 07:02:40 [ERROR] Invalid input - 17171 +2026-02-23 07:02:40 [INFO] - 23091 +2026-02-23 07:02:40 [INFO] - 8730 +2026-02-23 07:02:40 [CRITICAL] - 8153 +2026-02-23 07:02:40 [INFO] - 19109 +2026-02-23 07:02:40 [WARNING] - 6524 +2026-02-23 07:02:40 [WARNING] - 21614 +2026-02-23 07:02:40 [DEBUG] - 11471 +2026-02-23 07:02:40 [INFO] - 18919 +2026-02-23 07:02:40 [WARNING] - 12337 +2026-02-23 07:02:40 [WARNING] - 6147 +2026-02-23 07:02:40 [WARNING] - 27155 +2026-02-23 07:02:40 [DEBUG] - 9331 +2026-02-23 07:02:40 [WARNING] - 19542 +2026-02-23 07:02:40 [ERROR] Failed to connect - 13620 +2026-02-23 07:02:40 [INFO] - 21669 +2026-02-23 07:02:40 [DEBUG] - 26638 +2026-02-23 07:02:40 [CRITICAL] - 10617 +2026-02-23 07:02:41 [CRITICAL] - 25800 +2026-02-23 07:02:41 [ERROR] Segmentation fault - 18773 +2026-02-23 07:02:41 [CRITICAL] - 31860 +2026-02-23 07:02:41 [CRITICAL] - 3537 +2026-02-23 07:02:41 [INFO] - 19319 +2026-02-23 07:02:41 [WARNING] - 11128 +2026-02-23 07:02:41 [ERROR] Out of memory - 22145 +2026-02-23 07:02:41 [DEBUG] - 18614 +2026-02-23 07:02:41 [ERROR] Segmentation fault - 21347 +2026-02-23 07:02:41 [ERROR] Disk full - 7626 +2026-02-23 07:02:41 [WARNING] - 18068 +2026-02-23 07:02:41 [ERROR] Out of memory - 27684 +2026-02-23 07:02:41 [DEBUG] - 15059 +2026-02-23 07:02:41 [DEBUG] - 23504 +2026-02-23 07:02:41 [CRITICAL] - 30185 +2026-02-23 07:02:41 [CRITICAL] - 6387 +2026-02-23 07:02:41 [CRITICAL] - 12231 +2026-02-23 07:02:41 [DEBUG] - 145 +2026-02-23 07:02:41 [DEBUG] - 5039 +2026-02-23 07:02:41 [CRITICAL] - 13337 +2026-02-23 07:02:41 [ERROR] Segmentation fault - 14677 +2026-02-23 07:02:41 [ERROR] Disk full - 24359 +2026-02-23 07:02:41 [CRITICAL] - 1148 +2026-02-23 07:02:41 [INFO] - 24255 +2026-02-23 07:02:41 [WARNING] - 19581 +2026-02-23 07:02:41 [CRITICAL] - 2433 +2026-02-23 07:02:41 [ERROR] Segmentation fault - 537 +2026-02-23 07:02:41 [DEBUG] - 30009 +2026-02-23 07:02:41 [CRITICAL] - 22848 +2026-02-23 07:02:41 [CRITICAL] - 30504 +2026-02-23 07:02:41 [INFO] - 27587 +2026-02-23 07:02:41 [ERROR] Disk full - 25568 +2026-02-23 07:02:41 [WARNING] - 25383 +2026-02-23 07:02:41 [INFO] - 17661 +2026-02-23 07:02:41 [ERROR] Invalid input - 5058 +2026-02-23 07:02:41 [CRITICAL] - 822 +2026-02-23 07:02:41 [ERROR] Segmentation fault - 9355 +2026-02-23 07:02:41 [CRITICAL] - 22831 +2026-02-23 07:02:41 [CRITICAL] - 9133 +2026-02-23 07:02:41 [DEBUG] - 14407 +2026-02-23 07:02:41 [INFO] - 31691 +2026-02-23 07:02:41 [WARNING] - 30260 +2026-02-23 07:02:41 [ERROR] Disk full - 32181 +2026-02-23 07:02:41 [ERROR] Disk full - 5244 +2026-02-23 07:02:41 [ERROR] Invalid input - 4835 +2026-02-23 07:02:41 [WARNING] - 26855 +2026-02-23 07:02:41 [WARNING] - 1136 +2026-02-23 07:02:41 [DEBUG] - 10244 +2026-02-23 07:02:41 [INFO] - 5464 +2026-02-23 07:02:41 [CRITICAL] - 850 +2026-02-23 07:02:41 [INFO] - 31938 +2026-02-23 07:02:41 [ERROR] Failed to connect - 29866 +2026-02-23 07:02:41 [ERROR] Segmentation fault - 12284 +2026-02-23 07:02:41 [DEBUG] - 2560 +2026-02-23 07:02:41 [WARNING] - 2255 +2026-02-23 07:02:41 [ERROR] Disk full - 32040 +2026-02-23 07:02:41 [ERROR] Out of memory - 4887 +2026-02-23 07:02:41 [DEBUG] - 32738 +2026-02-23 07:02:41 [DEBUG] - 18220 +2026-02-23 07:02:41 [CRITICAL] - 18201 +2026-02-23 07:02:41 [INFO] - 29981 +2026-02-23 07:02:41 [DEBUG] - 19428 +2026-02-23 07:02:41 [ERROR] Out of memory - 3625 +2026-02-23 07:02:41 [ERROR] Segmentation fault - 2699 +2026-02-23 07:02:41 [CRITICAL] - 3756 +2026-02-23 07:02:41 [INFO] - 4704 +2026-02-23 07:02:41 [CRITICAL] - 14794 +2026-02-23 07:02:41 [INFO] - 17212 +2026-02-23 07:02:41 [CRITICAL] - 15516 +2026-02-23 07:02:41 [ERROR] Failed to connect - 27965 +2026-02-23 07:02:41 [INFO] - 11749 +2026-02-23 07:02:41 [CRITICAL] - 22428 +2026-02-23 07:02:41 [DEBUG] - 12421 +2026-02-23 07:02:41 [ERROR] Out of memory - 21178 +2026-02-23 07:02:41 [INFO] - 11798 +2026-02-23 07:02:41 [ERROR] Out of memory - 13850 +2026-02-23 07:02:41 [INFO] - 3467 +2026-02-23 07:02:41 [CRITICAL] - 35 +2026-02-23 07:02:41 [INFO] - 31231 +2026-02-23 07:02:41 [INFO] - 11166 +2026-02-23 07:02:41 [WARNING] - 32753 +2026-02-23 07:02:41 [DEBUG] - 17544 +2026-02-23 07:02:41 [CRITICAL] - 31695 +2026-02-23 07:02:41 [ERROR] Invalid input - 18455 +2026-02-23 07:02:41 [DEBUG] - 32315 +2026-02-23 07:02:41 [DEBUG] - 7204 +2026-02-23 07:02:41 [DEBUG] - 8257 +2026-02-23 07:02:41 [ERROR] Invalid input - 31756 +2026-02-23 07:02:41 [CRITICAL] - 24216 +2026-02-23 07:02:41 [INFO] - 10182 +2026-02-23 07:02:41 [ERROR] Segmentation fault - 14081 +2026-02-23 07:02:41 [DEBUG] - 15507 +2026-02-23 07:02:41 [DEBUG] - 10419 +2026-02-23 07:02:41 [WARNING] - 7011 +2026-02-23 07:02:41 [CRITICAL] - 26626 +2026-02-23 07:02:41 [WARNING] - 31353 +2026-02-23 07:02:41 [WARNING] - 5208 +2026-02-23 07:02:41 [CRITICAL] - 1812 +2026-02-23 07:02:41 [ERROR] Disk full - 18541 +2026-02-23 07:02:41 [INFO] - 27409 +2026-02-23 07:02:41 [CRITICAL] - 26198 +2026-02-23 07:02:41 [CRITICAL] - 13597 +2026-02-23 07:02:41 [CRITICAL] - 20902 +2026-02-23 07:02:41 [DEBUG] - 12982 +2026-02-23 07:02:41 [CRITICAL] - 32401 +2026-02-23 07:02:41 [DEBUG] - 3617 +2026-02-23 07:02:41 [WARNING] - 20756 +2026-02-23 07:02:41 [ERROR] Out of memory - 2383 +2026-02-23 07:02:41 [DEBUG] - 3981 +2026-02-23 07:02:41 [CRITICAL] - 6725 +2026-02-23 07:02:41 [CRITICAL] - 13483 +2026-02-23 07:02:41 [INFO] - 4900 +2026-02-23 07:02:41 [DEBUG] - 7381 +2026-02-23 07:02:41 [WARNING] - 14702 +2026-02-23 07:02:41 [ERROR] Disk full - 13764 +2026-02-23 07:02:41 [INFO] - 14298 +2026-02-23 07:02:41 [ERROR] Failed to connect - 13841 +2026-02-23 07:02:41 [CRITICAL] - 11822 +2026-02-23 07:02:41 [DEBUG] - 17682 +2026-02-23 07:02:41 [WARNING] - 23955 +2026-02-23 07:02:41 [WARNING] - 24018 +2026-02-23 07:02:41 [CRITICAL] - 24070 +2026-02-23 07:02:41 [ERROR] Segmentation fault - 13786 +2026-02-23 07:02:41 [ERROR] Failed to connect - 24261 +2026-02-23 07:02:41 [INFO] - 22250 +2026-02-23 07:02:41 [ERROR] Invalid input - 25021 +2026-02-23 07:02:41 [INFO] - 28364 +2026-02-23 07:02:41 [INFO] - 12423 +2026-02-23 07:02:41 [INFO] - 30983 +2026-02-23 07:02:41 [CRITICAL] - 4225 +2026-02-23 07:02:41 [CRITICAL] - 25311 +2026-02-23 07:02:41 [WARNING] - 7598 +2026-02-23 07:02:41 [ERROR] Failed to connect - 31970 +2026-02-23 07:02:41 [CRITICAL] - 18633 +2026-02-23 07:02:41 [WARNING] - 15072 +2026-02-23 07:02:41 [INFO] - 7137 +2026-02-23 07:02:41 [DEBUG] - 4691 +2026-02-23 07:02:41 [ERROR] Failed to connect - 1629 +2026-02-23 07:02:41 [INFO] - 3933 +2026-02-23 07:02:41 [WARNING] - 7597 +2026-02-23 07:02:41 [DEBUG] - 8567 +2026-02-23 07:02:41 [DEBUG] - 29137 +2026-02-23 07:02:41 [INFO] - 30799 +2026-02-23 07:02:41 [ERROR] Disk full - 552 +2026-02-23 07:02:41 [WARNING] - 17979 +2026-02-23 07:02:41 [INFO] - 11128 +2026-02-23 07:02:41 [DEBUG] - 20343 +2026-02-23 07:02:41 [CRITICAL] - 19568 +2026-02-23 07:02:41 [INFO] - 4214 +2026-02-23 07:02:41 [WARNING] - 30851 +2026-02-23 07:02:41 [ERROR] Segmentation fault - 17603 +2026-02-23 07:02:41 [ERROR] Segmentation fault - 5819 +2026-02-23 07:02:41 [INFO] - 11641 +2026-02-23 07:02:41 [ERROR] Failed to connect - 4387 +2026-02-23 07:02:41 [DEBUG] - 11514 +2026-02-23 07:02:41 [ERROR] Out of memory - 18122 +2026-02-23 07:02:41 [INFO] - 30910 +2026-02-23 07:02:41 [DEBUG] - 22231 +2026-02-23 07:02:41 [DEBUG] - 400 +2026-02-23 07:02:41 [CRITICAL] - 18056 +2026-02-23 07:02:41 [ERROR] Disk full - 11295 +2026-02-23 07:02:41 [DEBUG] - 24750 +2026-02-23 07:02:41 [WARNING] - 22406 +2026-02-23 07:02:41 [WARNING] - 7470 +2026-02-23 07:02:41 [WARNING] - 3987 +2026-02-23 07:02:41 [WARNING] - 3241 +2026-02-23 07:02:41 [INFO] - 22586 +2026-02-23 07:02:41 [CRITICAL] - 29075 +2026-02-23 07:02:41 [ERROR] Out of memory - 594 +2026-02-23 07:02:41 [INFO] - 11848 +2026-02-23 07:02:41 [CRITICAL] - 22162 +2026-02-23 07:02:41 [ERROR] Failed to connect - 18816 +2026-02-23 07:02:41 [ERROR] Failed to connect - 16892 +2026-02-23 07:02:41 [DEBUG] - 31740 +2026-02-23 07:02:41 [INFO] - 12858 +2026-02-23 07:02:41 [DEBUG] - 27778 +2026-02-23 07:02:41 [DEBUG] - 13736 +2026-02-23 07:02:41 [INFO] - 17009 +2026-02-23 07:02:41 [DEBUG] - 25514 +2026-02-23 07:02:41 [CRITICAL] - 27458 +2026-02-23 07:02:41 [CRITICAL] - 30638 +2026-02-23 07:02:41 [CRITICAL] - 22111 +2026-02-23 07:02:41 [CRITICAL] - 1971 +2026-02-23 07:02:41 [DEBUG] - 2048 +2026-02-23 07:02:41 [CRITICAL] - 247 +2026-02-23 07:02:41 [INFO] - 20617 +2026-02-23 07:02:41 [DEBUG] - 21331 +2026-02-23 07:02:41 [CRITICAL] - 17443 +2026-02-23 07:02:41 [ERROR] Failed to connect - 11793 +2026-02-23 07:02:41 [INFO] - 9295 +2026-02-23 07:02:41 [ERROR] Invalid input - 7014 +2026-02-23 07:02:41 [DEBUG] - 6660 +2026-02-23 07:02:41 [WARNING] - 8385 +2026-02-23 07:02:41 [INFO] - 5283 +2026-02-23 07:02:41 [ERROR] Disk full - 22353 +2026-02-23 07:02:41 [WARNING] - 4572 +2026-02-23 07:02:41 [WARNING] - 12209 +2026-02-23 07:02:41 [INFO] - 31766 +2026-02-23 07:02:41 [ERROR] Failed to connect - 28894 +2026-02-23 07:02:41 [WARNING] - 18199 +2026-02-23 07:02:41 [INFO] - 23873 +2026-02-23 07:02:41 [DEBUG] - 4293 +2026-02-23 07:02:41 [ERROR] Invalid input - 26426 +2026-02-23 07:02:41 [ERROR] Failed to connect - 17830 +2026-02-23 07:02:41 [CRITICAL] - 11777 +2026-02-23 07:02:41 [ERROR] Failed to connect - 7435 +2026-02-23 07:02:41 [INFO] - 12204 +2026-02-23 07:02:41 [DEBUG] - 32079 +2026-02-23 07:02:41 [WARNING] - 1784 +2026-02-23 07:02:41 [ERROR] Disk full - 4421 +2026-02-23 07:02:41 [CRITICAL] - 1562 +2026-02-23 07:02:41 [DEBUG] - 19446 +2026-02-23 07:02:41 [INFO] - 19426 +2026-02-23 07:02:41 [CRITICAL] - 27023 +2026-02-23 07:02:41 [ERROR] Disk full - 10085 +2026-02-23 07:02:41 [WARNING] - 32275 +2026-02-23 07:02:41 [DEBUG] - 2582 +2026-02-23 07:02:41 [WARNING] - 9622 +2026-02-23 07:02:41 [DEBUG] - 1031 +2026-02-23 07:02:41 [INFO] - 23250 +2026-02-23 07:02:41 [WARNING] - 32367 +2026-02-23 07:02:41 [CRITICAL] - 14024 +2026-02-23 07:02:41 [CRITICAL] - 27529 +2026-02-23 07:02:41 [ERROR] Disk full - 27764 +2026-02-23 07:02:41 [CRITICAL] - 19219 +2026-02-23 07:02:41 [ERROR] Invalid input - 14819 +2026-02-23 07:02:41 [WARNING] - 6363 +2026-02-23 07:02:41 [ERROR] Invalid input - 14871 +2026-02-23 07:02:41 [WARNING] - 19113 +2026-02-23 07:02:41 [ERROR] Out of memory - 13156 +2026-02-23 07:02:41 [CRITICAL] - 24092 +2026-02-23 07:02:41 [WARNING] - 11668 +2026-02-23 07:02:41 [DEBUG] - 22397 +2026-02-23 07:02:41 [ERROR] Disk full - 1499 +2026-02-23 07:02:41 [CRITICAL] - 6891 +2026-02-23 07:02:41 [WARNING] - 30222 +2026-02-23 07:02:41 [DEBUG] - 23537 +2026-02-23 07:02:41 [INFO] - 25452 +2026-02-23 07:02:41 [INFO] - 7143 +2026-02-23 07:02:41 [CRITICAL] - 12548 +2026-02-23 07:02:41 [ERROR] Failed to connect - 10397 +2026-02-23 07:02:41 [DEBUG] - 12116 +2026-02-23 07:02:41 [DEBUG] - 15430 +2026-02-23 07:02:41 [DEBUG] - 1642 +2026-02-23 07:02:41 [DEBUG] - 9914 +2026-02-23 07:02:41 [ERROR] Invalid input - 3512 +2026-02-23 07:02:41 [WARNING] - 16784 +2026-02-23 07:02:41 [DEBUG] - 14272 +2026-02-23 07:02:41 [INFO] - 32263 +2026-02-23 07:02:41 [DEBUG] - 25743 +2026-02-23 07:02:41 [ERROR] Disk full - 32607 +2026-02-23 07:02:41 [INFO] - 19857 +2026-02-23 07:02:41 [INFO] - 17690 +2026-02-23 07:02:41 [ERROR] Invalid input - 6117 +2026-02-23 07:02:41 [DEBUG] - 8889 +2026-02-23 07:02:41 [WARNING] - 12419 +2026-02-23 07:02:41 [CRITICAL] - 29256 +2026-02-23 07:02:41 [CRITICAL] - 3939 +2026-02-23 07:02:41 [INFO] - 19122 +2026-02-23 07:02:41 [DEBUG] - 27100 +2026-02-23 07:02:41 [DEBUG] - 3771 +2026-02-23 07:02:41 [DEBUG] - 1167 +2026-02-23 07:02:41 [CRITICAL] - 2183 +2026-02-23 07:02:41 [DEBUG] - 9579 +2026-02-23 07:02:41 [INFO] - 19241 +2026-02-23 07:02:41 [WARNING] - 26953 +2026-02-23 07:02:41 [CRITICAL] - 469 +2026-02-23 07:02:41 [DEBUG] - 19422 +2026-02-23 07:02:41 [CRITICAL] - 22972 +2026-02-23 07:02:41 [CRITICAL] - 11874 +2026-02-23 07:02:41 [ERROR] Segmentation fault - 3788 +2026-02-23 07:02:41 [DEBUG] - 6573 +2026-02-23 07:02:41 [DEBUG] - 7926 +2026-02-23 07:02:41 [ERROR] Failed to connect - 30478 +2026-02-23 07:02:41 [ERROR] Segmentation fault - 27068 +2026-02-23 07:02:41 [ERROR] Segmentation fault - 15912 +2026-02-23 07:02:41 [INFO] - 30071 +2026-02-23 07:02:41 [WARNING] - 11230 +2026-02-23 07:02:41 [ERROR] Segmentation fault - 4092 +2026-02-23 07:02:41 [DEBUG] - 7334 +2026-02-23 07:02:41 [CRITICAL] - 20102 +2026-02-23 07:02:41 [DEBUG] - 1728 +2026-02-23 07:02:41 [DEBUG] - 19113 +2026-02-23 07:02:41 [ERROR] Invalid input - 14030 +2026-02-23 07:02:41 [CRITICAL] - 5502 +2026-02-23 07:02:41 [DEBUG] - 4463 +2026-02-23 07:02:41 [ERROR] Failed to connect - 20455 +2026-02-23 07:02:41 [WARNING] - 22083 +2026-02-23 07:02:41 [DEBUG] - 1751 +2026-02-23 07:02:41 [DEBUG] - 3225 +2026-02-23 07:02:41 [WARNING] - 16369 +2026-02-23 07:02:41 [INFO] - 26679 +2026-02-23 07:02:41 [INFO] - 23499 +2026-02-23 07:02:41 [WARNING] - 7710 +2026-02-23 07:02:41 [WARNING] - 5068 +2026-02-23 07:02:41 [ERROR] Disk full - 1518 +2026-02-23 07:02:41 [CRITICAL] - 9955 +2026-02-23 07:02:41 [ERROR] Disk full - 4812 +2026-02-23 07:02:41 [CRITICAL] - 12888 +2026-02-23 07:02:41 [WARNING] - 18662 +2026-02-23 07:02:41 [DEBUG] - 28907 +2026-02-23 07:02:41 [ERROR] Failed to connect - 13796 +2026-02-23 07:02:41 [WARNING] - 26465 +2026-02-23 07:02:41 [ERROR] Segmentation fault - 13877 +2026-02-23 07:02:41 [CRITICAL] - 6406 +2026-02-23 07:02:41 [INFO] - 30724 +2026-02-23 07:02:41 [CRITICAL] - 8450 +2026-02-23 07:02:41 [CRITICAL] - 9813 +2026-02-23 07:02:41 [INFO] - 12400 +2026-02-23 07:02:41 [WARNING] - 28202 +2026-02-23 07:02:41 [ERROR] Out of memory - 1956 +2026-02-23 07:02:41 [DEBUG] - 10109 +2026-02-23 07:02:41 [CRITICAL] - 2122 +2026-02-23 07:02:41 [DEBUG] - 3794 +2026-02-23 07:02:41 [ERROR] Invalid input - 15240 +2026-02-23 07:02:41 [CRITICAL] - 26231 +2026-02-23 07:02:41 [ERROR] Failed to connect - 6897 +2026-02-23 07:02:41 [INFO] - 9760 +2026-02-23 07:02:41 [ERROR] Out of memory - 20510 +2026-02-23 07:02:41 [CRITICAL] - 31135 +2026-02-23 07:02:41 [INFO] - 26327 +2026-02-23 07:02:41 [WARNING] - 26296 +2026-02-23 07:02:41 [INFO] - 5584 +2026-02-23 07:02:41 [INFO] - 19557 +2026-02-23 07:02:41 [WARNING] - 19556 +2026-02-23 07:02:41 [WARNING] - 8389 +2026-02-23 07:02:41 [ERROR] Segmentation fault - 30771 +2026-02-23 07:02:41 [DEBUG] - 21489 +2026-02-23 07:02:41 [INFO] - 22826 +2026-02-23 07:02:41 [WARNING] - 24206 +2026-02-23 07:02:41 [INFO] - 18010 +2026-02-23 07:02:41 [INFO] - 17870 +2026-02-23 07:02:41 [WARNING] - 907 +2026-02-23 07:02:41 [DEBUG] - 1401 +2026-02-23 07:02:41 [CRITICAL] - 1301 +2026-02-23 07:02:41 [DEBUG] - 13411 +2026-02-23 07:02:41 [INFO] - 7222 +2026-02-23 07:02:41 [CRITICAL] - 4952 +2026-02-23 07:02:41 [INFO] - 14598 +2026-02-23 07:02:41 [CRITICAL] - 4658 +2026-02-23 07:02:41 [ERROR] Disk full - 32141 +2026-02-23 07:02:41 [INFO] - 26996 +2026-02-23 07:02:41 [WARNING] - 23192 +2026-02-23 07:02:41 [ERROR] Segmentation fault - 12664 +2026-02-23 07:02:41 [ERROR] Invalid input - 3592 +2026-02-23 07:02:41 [WARNING] - 20364 +2026-02-23 07:02:41 [DEBUG] - 3098 +2026-02-23 07:02:41 [INFO] - 2009 +2026-02-23 07:02:41 [CRITICAL] - 13035 +2026-02-23 07:02:41 [ERROR] Segmentation fault - 19976 +2026-02-23 07:02:41 [DEBUG] - 20056 +2026-02-23 07:02:41 [CRITICAL] - 11378 +2026-02-23 07:02:41 [CRITICAL] - 27178 +2026-02-23 07:02:41 [WARNING] - 544 +2026-02-23 07:02:41 [ERROR] Out of memory - 31146 +2026-02-23 07:02:41 [DEBUG] - 23894 +2026-02-23 07:02:41 [WARNING] - 19406 +2026-02-23 07:02:41 [CRITICAL] - 4468 +2026-02-23 07:02:41 [ERROR] Disk full - 25894 +2026-02-23 07:02:41 [CRITICAL] - 6766 +2026-02-23 07:02:41 [INFO] - 4767 +2026-02-23 07:02:41 [DEBUG] - 9485 +2026-02-23 07:02:41 [DEBUG] - 28660 +2026-02-23 07:02:41 [INFO] - 11535 +2026-02-23 07:02:41 [WARNING] - 31397 +2026-02-23 07:02:41 [WARNING] - 32305 +2026-02-23 07:02:41 [DEBUG] - 19584 +2026-02-23 07:02:41 [WARNING] - 1870 +2026-02-23 07:02:41 [CRITICAL] - 22574 +2026-02-23 07:02:41 [CRITICAL] - 18705 +2026-02-23 07:02:41 [CRITICAL] - 17283 +2026-02-23 07:02:41 [WARNING] - 9243 +2026-02-23 07:02:41 [INFO] - 11304 +2026-02-23 07:02:41 [CRITICAL] - 27648 +2026-02-23 07:02:41 [ERROR] Disk full - 22692 +2026-02-23 07:02:41 [CRITICAL] - 10752 +2026-02-23 07:02:41 [INFO] - 5588 +2026-02-23 07:02:41 [INFO] - 3595 +2026-02-23 07:02:41 [DEBUG] - 11012 +2026-02-23 07:02:41 [DEBUG] - 32018 +2026-02-23 07:02:41 [ERROR] Segmentation fault - 12007 +2026-02-23 07:02:41 [INFO] - 21143 +2026-02-23 07:02:41 [WARNING] - 17864 +2026-02-23 07:02:41 [CRITICAL] - 5476 +2026-02-23 07:02:41 [WARNING] - 13582 +2026-02-23 07:02:41 [INFO] - 31858 +2026-02-23 07:02:41 [INFO] - 30845 +2026-02-23 07:02:41 [ERROR] Failed to connect - 25879 +2026-02-23 07:02:41 [INFO] - 26219 +2026-02-23 07:02:41 [INFO] - 11914 +2026-02-23 07:02:41 [ERROR] Disk full - 29703 +2026-02-23 07:02:41 [INFO] - 19819 +2026-02-23 07:02:41 [CRITICAL] - 3080 +2026-02-23 07:02:41 [INFO] - 24666 +2026-02-23 07:02:41 [WARNING] - 32259 +2026-02-23 07:02:41 [ERROR] Segmentation fault - 10584 +2026-02-23 07:02:41 [DEBUG] - 26738 +2026-02-23 07:02:41 [CRITICAL] - 22878 +2026-02-23 07:02:41 [DEBUG] - 17760 +2026-02-23 07:02:41 [DEBUG] - 10034 +2026-02-23 07:02:41 [ERROR] Invalid input - 21684 +2026-02-23 07:02:41 [CRITICAL] - 16662 +2026-02-23 07:02:41 [INFO] - 28195 +2026-02-23 07:02:41 [CRITICAL] - 7404 +2026-02-23 07:02:41 [DEBUG] - 2386 +2026-02-23 07:02:41 [CRITICAL] - 10305 +2026-02-23 07:02:41 [CRITICAL] - 2331 +2026-02-23 07:02:41 [INFO] - 30162 +2026-02-23 07:02:41 [CRITICAL] - 13846 +2026-02-23 07:02:41 [WARNING] - 13944 +2026-02-23 07:02:41 [ERROR] Disk full - 24405 +2026-02-23 07:02:41 [INFO] - 25837 +2026-02-23 07:02:41 [ERROR] Invalid input - 23136 +2026-02-23 07:02:41 [WARNING] - 31978 +2026-02-23 07:02:41 [DEBUG] - 1094 +2026-02-23 07:02:41 [DEBUG] - 8390 +2026-02-23 07:02:41 [WARNING] - 18671 +2026-02-23 07:02:41 [ERROR] Out of memory - 32691 +2026-02-23 07:02:41 [WARNING] - 12441 +2026-02-23 07:02:41 [CRITICAL] - 28321 +2026-02-23 07:02:41 [CRITICAL] - 19106 +2026-02-23 07:02:41 [ERROR] Invalid input - 31113 +2026-02-23 07:02:41 [WARNING] - 28754 +2026-02-23 07:02:41 [CRITICAL] - 9057 +2026-02-23 07:02:41 [ERROR] Out of memory - 28570 +2026-02-23 07:02:41 [ERROR] Disk full - 31029 +2026-02-23 07:02:41 [CRITICAL] - 10915 +2026-02-23 07:02:41 [INFO] - 19826 +2026-02-23 07:02:41 [INFO] - 32100 +2026-02-23 07:02:41 [WARNING] - 25986 +2026-02-23 07:02:41 [DEBUG] - 28691 +2026-02-23 07:02:41 [WARNING] - 23203 +2026-02-23 07:02:41 [INFO] - 24342 +2026-02-23 07:02:41 [ERROR] Segmentation fault - 4918 +2026-02-23 07:02:41 [INFO] - 25124 +2026-02-23 07:02:41 [ERROR] Disk full - 3689 +2026-02-23 07:02:41 [WARNING] - 19689 +2026-02-23 07:02:41 [WARNING] - 1626 +2026-02-23 07:02:41 [ERROR] Out of memory - 26344 +2026-02-23 07:02:41 [DEBUG] - 17292 +2026-02-23 07:02:41 [WARNING] - 16558 +2026-02-23 07:02:41 [DEBUG] - 27907 +2026-02-23 07:02:41 [INFO] - 18214 +2026-02-23 07:02:41 [DEBUG] - 32765 +2026-02-23 07:02:41 [ERROR] Out of memory - 5976 +2026-02-23 07:02:41 [ERROR] Out of memory - 22149 +2026-02-23 07:02:41 [INFO] - 10289 +2026-02-23 07:02:41 [INFO] - 22067 +2026-02-23 07:02:41 [ERROR] Segmentation fault - 11415 +2026-02-23 07:02:41 [ERROR] Segmentation fault - 31121 +2026-02-23 07:02:41 [CRITICAL] - 20660 +2026-02-23 07:02:41 [INFO] - 30964 +2026-02-23 07:02:41 [INFO] - 26927 +2026-02-23 07:02:41 [INFO] - 16869 +2026-02-23 07:02:41 [INFO] - 23097 +2026-02-23 07:02:41 [WARNING] - 23578 +2026-02-23 07:02:41 [CRITICAL] - 31444 +2026-02-23 07:02:41 [ERROR] Segmentation fault - 15996 +2026-02-23 07:02:41 [CRITICAL] - 30875 +2026-02-23 07:02:41 [DEBUG] - 30785 +2026-02-23 07:02:41 [INFO] - 26548 +2026-02-23 07:02:41 [WARNING] - 24147 +2026-02-23 07:02:41 [CRITICAL] - 2 +2026-02-23 07:02:41 [CRITICAL] - 11530 +2026-02-23 07:02:41 [DEBUG] - 8735 +2026-02-23 07:02:41 [DEBUG] - 22849 +2026-02-23 07:02:41 [INFO] - 29149 +2026-02-23 07:02:41 [DEBUG] - 238 +2026-02-23 07:02:41 [DEBUG] - 17888 +2026-02-23 07:02:41 [INFO] - 24545 +2026-02-23 07:02:41 [DEBUG] - 13947 +2026-02-23 07:02:41 [CRITICAL] - 13138 +2026-02-23 07:02:41 [CRITICAL] - 32573 +2026-02-23 07:02:41 [CRITICAL] - 25178 +2026-02-23 07:02:41 [DEBUG] - 16241 +2026-02-23 07:02:41 [WARNING] - 10494 +2026-02-23 07:02:41 [INFO] - 7960 +2026-02-23 07:02:41 [CRITICAL] - 3348 +2026-02-23 07:02:41 [INFO] - 18065 +2026-02-23 07:02:41 [ERROR] Disk full - 3905 +2026-02-23 07:02:41 [CRITICAL] - 28057 +2026-02-23 07:02:41 [WARNING] - 11942 +2026-02-23 07:02:41 [ERROR] Out of memory - 19674 +2026-02-23 07:02:41 [CRITICAL] - 8363 +2026-02-23 07:02:41 [DEBUG] - 14114 +2026-02-23 07:02:41 [ERROR] Invalid input - 19154 +2026-02-23 07:02:41 [DEBUG] - 18052 +2026-02-23 07:02:41 [DEBUG] - 3536 +2026-02-23 07:02:41 [DEBUG] - 12972 +2026-02-23 07:02:41 [WARNING] - 27991 +2026-02-23 07:02:41 [ERROR] Segmentation fault - 28536 +2026-02-23 07:02:41 [ERROR] Disk full - 10433 +2026-02-23 07:02:41 [DEBUG] - 31775 +2026-02-23 07:02:41 [INFO] - 10705 +2026-02-23 07:02:41 [WARNING] - 31014 +2026-02-23 07:02:41 [DEBUG] - 32460 +2026-02-23 07:02:41 [DEBUG] - 5915 +2026-02-23 07:02:41 [CRITICAL] - 10831 +2026-02-23 07:02:41 [INFO] - 22716 +2026-02-23 07:02:41 [CRITICAL] - 12750 +2026-02-23 07:02:41 [WARNING] - 31111 +2026-02-23 07:02:41 [DEBUG] - 21943 +2026-02-23 07:02:41 [INFO] - 742 +2026-02-23 07:02:41 [ERROR] Out of memory - 13212 +2026-02-23 07:02:41 [DEBUG] - 18891 +2026-02-23 07:02:41 [INFO] - 8681 +2026-02-23 07:02:41 [ERROR] Disk full - 8906 +2026-02-23 07:02:41 [CRITICAL] - 28155 +2026-02-23 07:02:41 [DEBUG] - 17072 +2026-02-23 07:02:41 [ERROR] Failed to connect - 10289 +2026-02-23 07:02:41 [CRITICAL] - 28059 +2026-02-23 07:02:41 [ERROR] Out of memory - 13051 +2026-02-23 07:02:41 [ERROR] Invalid input - 24464 +2026-02-23 07:02:41 [DEBUG] - 29373 +2026-02-23 07:02:41 [ERROR] Invalid input - 11397 +2026-02-23 07:02:41 [INFO] - 13270 +2026-02-23 07:02:41 [ERROR] Failed to connect - 30468 +2026-02-23 07:02:41 [CRITICAL] - 12538 +2026-02-23 07:02:41 [CRITICAL] - 27726 +2026-02-23 07:02:41 [DEBUG] - 26652 +2026-02-23 07:02:41 [ERROR] Invalid input - 12352 +2026-02-23 07:02:41 [DEBUG] - 8318 +2026-02-23 07:02:41 [INFO] - 8739 +2026-02-23 07:02:41 [ERROR] Segmentation fault - 11511 +2026-02-23 07:02:41 [CRITICAL] - 10947 +2026-02-23 07:02:41 [ERROR] Disk full - 14870 +2026-02-23 07:02:41 [CRITICAL] - 8731 +2026-02-23 07:02:41 [INFO] - 30249 +2026-02-23 07:02:41 [WARNING] - 22242 +2026-02-23 07:02:41 [WARNING] - 1033 +2026-02-23 07:02:41 [DEBUG] - 2143 +2026-02-23 07:02:41 [ERROR] Out of memory - 30725 +2026-02-23 07:02:41 [DEBUG] - 3851 +2026-02-23 07:02:41 [DEBUG] - 7634 +2026-02-23 07:02:41 [ERROR] Out of memory - 17538 +2026-02-23 07:02:41 [DEBUG] - 2203 +2026-02-23 07:02:41 [ERROR] Segmentation fault - 26214 +2026-02-23 07:02:41 [DEBUG] - 30044 +2026-02-23 07:02:41 [INFO] - 7606 +2026-02-23 07:02:41 [DEBUG] - 18765 +2026-02-23 07:02:41 [CRITICAL] - 29683 +2026-02-23 07:02:41 [CRITICAL] - 19195 +2026-02-23 07:02:41 [INFO] - 24449 +2026-02-23 07:02:41 [INFO] - 12425 +2026-02-23 07:02:41 [INFO] - 19025 +2026-02-23 07:02:41 [ERROR] Invalid input - 18678 +2026-02-23 07:02:41 [WARNING] - 8913 +2026-02-23 07:02:41 [ERROR] Invalid input - 12280 +2026-02-23 07:02:41 [INFO] - 2493 +2026-02-23 07:02:41 [DEBUG] - 20480 +2026-02-23 07:02:41 [DEBUG] - 5802 +2026-02-23 07:02:41 [WARNING] - 16036 +2026-02-23 07:02:41 [INFO] - 29736 +2026-02-23 07:02:41 [CRITICAL] - 25687 +2026-02-23 07:02:41 [INFO] - 3930 +2026-02-23 07:02:41 [CRITICAL] - 10436 +2026-02-23 07:02:41 [DEBUG] - 11979 +2026-02-23 07:02:41 [WARNING] - 2156 +2026-02-23 07:02:41 [CRITICAL] - 636 +2026-02-23 07:02:41 [ERROR] Disk full - 29214 +2026-02-23 07:02:41 [ERROR] Invalid input - 10329 +2026-02-23 07:02:41 [INFO] - 5766 +2026-02-23 07:02:41 [INFO] - 10666 +2026-02-23 07:02:41 [WARNING] - 1764 +2026-02-23 07:02:41 [INFO] - 16474 +2026-02-23 07:02:41 [ERROR] Failed to connect - 4487 +2026-02-23 07:02:41 [INFO] - 25503 +2026-02-23 07:02:41 [ERROR] Failed to connect - 18722 +2026-02-23 07:02:41 [INFO] - 5506 +2026-02-23 07:02:41 [INFO] - 20993 +2026-02-23 07:02:41 [CRITICAL] - 18502 +2026-02-23 07:02:41 [ERROR] Segmentation fault - 18776 +2026-02-23 07:02:41 [DEBUG] - 1502 +2026-02-23 07:02:41 [ERROR] Disk full - 19730 +2026-02-23 07:02:41 [DEBUG] - 20439 +2026-02-23 07:02:41 [DEBUG] - 32109 +2026-02-23 07:02:41 [CRITICAL] - 597 +2026-02-23 07:02:41 [INFO] - 15136 +2026-02-23 07:02:41 [WARNING] - 31769 +2026-02-23 07:02:41 [ERROR] Invalid input - 206 +2026-02-23 07:02:41 [WARNING] - 18513 +2026-02-23 07:02:41 [WARNING] - 8550 +2026-02-23 07:02:41 [CRITICAL] - 12998 +2026-02-23 07:02:41 [WARNING] - 15253 +2026-02-23 07:02:41 [DEBUG] - 30050 +2026-02-23 07:02:41 [WARNING] - 15585 +2026-02-23 07:02:41 [DEBUG] - 3518 +2026-02-23 07:02:41 [WARNING] - 12845 +2026-02-23 07:02:41 [ERROR] Out of memory - 28483 +2026-02-23 07:02:41 [CRITICAL] - 4343 +2026-02-23 07:02:41 [CRITICAL] - 31857 +2026-02-23 07:02:41 [WARNING] - 21398 +2026-02-23 07:02:41 [CRITICAL] - 29927 +2026-02-23 07:02:41 [INFO] - 18415 +2026-02-23 07:02:41 [DEBUG] - 17101 +2026-02-23 07:02:41 [INFO] - 27497 +2026-02-23 07:02:41 [INFO] - 9683 +2026-02-23 07:02:41 [CRITICAL] - 19753 +2026-02-23 07:02:41 [WARNING] - 19025 +2026-02-23 07:02:41 [DEBUG] - 31659 +2026-02-23 07:02:41 [DEBUG] - 4140 +2026-02-23 07:02:41 [WARNING] - 7091 +2026-02-23 07:02:41 [DEBUG] - 20061 +2026-02-23 07:02:41 [WARNING] - 20007 +2026-02-23 07:02:41 [ERROR] Failed to connect - 23746 +2026-02-23 07:02:41 [WARNING] - 28654 +2026-02-23 07:02:41 [CRITICAL] - 15647 +2026-02-23 07:02:41 [DEBUG] - 15319 +2026-02-23 07:02:41 [WARNING] - 17375 +2026-02-23 07:02:41 [INFO] - 12637 +2026-02-23 07:02:41 [CRITICAL] - 15455 +2026-02-23 07:02:41 [ERROR] Invalid input - 1035 +2026-02-23 07:02:41 [WARNING] - 32209 +2026-02-23 07:02:41 [ERROR] Disk full - 32064 +2026-02-23 07:02:41 [WARNING] - 3300 +2026-02-23 07:02:41 [WARNING] - 28394 +2026-02-23 07:02:41 [ERROR] Out of memory - 24238 +2026-02-23 07:02:41 [CRITICAL] - 8992 +2026-02-23 07:02:41 [INFO] - 23936 +2026-02-23 07:02:41 [CRITICAL] - 19263 +2026-02-23 07:02:41 [WARNING] - 16125 +2026-02-23 07:02:41 [CRITICAL] - 31717 +2026-02-23 07:02:41 [CRITICAL] - 12021 +2026-02-23 07:02:41 [WARNING] - 25652 +2026-02-23 07:02:41 [DEBUG] - 7812 +2026-02-23 07:02:41 [ERROR] Segmentation fault - 29722 +2026-02-23 07:02:41 [INFO] - 10403 +2026-02-23 07:02:41 [DEBUG] - 10152 +2026-02-23 07:02:41 [INFO] - 7332 +2026-02-23 07:02:41 [DEBUG] - 9022 +2026-02-23 07:02:41 [CRITICAL] - 8920 +2026-02-23 07:02:41 [ERROR] Segmentation fault - 4601 +2026-02-23 07:02:41 [CRITICAL] - 23948 +2026-02-23 07:02:41 [INFO] - 1812 +2026-02-23 07:02:41 [WARNING] - 13920 +2026-02-23 07:02:41 [WARNING] - 614 +2026-02-23 07:02:41 [ERROR] Disk full - 8591 +2026-02-23 07:02:41 [WARNING] - 18065 +2026-02-23 07:02:41 [CRITICAL] - 348 +2026-02-23 07:02:41 [DEBUG] - 12611 +2026-02-23 07:02:41 [WARNING] - 29721 +2026-02-23 07:02:41 [ERROR] Segmentation fault - 14813 +2026-02-23 07:02:41 [CRITICAL] - 21556 +2026-02-23 07:02:41 [DEBUG] - 11002 +2026-02-23 07:02:41 [ERROR] Invalid input - 15004 +2026-02-23 07:02:41 [ERROR] Invalid input - 30841 +2026-02-23 07:02:41 [INFO] - 1428 +2026-02-23 07:02:41 [WARNING] - 71 +2026-02-23 07:02:41 [INFO] - 14697 +2026-02-23 07:02:41 [DEBUG] - 23453 +2026-02-23 07:02:41 [WARNING] - 29124 +2026-02-23 07:02:41 [ERROR] Disk full - 21514 +2026-02-23 07:02:41 [WARNING] - 26933 +2026-02-23 07:02:41 [WARNING] - 22044 +2026-02-23 07:02:41 [CRITICAL] - 16391 +2026-02-23 07:02:41 [ERROR] Failed to connect - 6472 +2026-02-23 07:02:41 [ERROR] Out of memory - 13411 +2026-02-23 07:02:41 [DEBUG] - 20604 +2026-02-23 07:02:41 [CRITICAL] - 10886 +2026-02-23 07:02:41 [INFO] - 29910 +2026-02-23 07:02:41 [INFO] - 17062 +2026-02-23 07:02:41 [ERROR] Segmentation fault - 25888 +2026-02-23 07:02:41 [ERROR] Segmentation fault - 17007 +2026-02-23 07:02:41 [CRITICAL] - 9658 +2026-02-23 07:02:41 [CRITICAL] - 15472 +2026-02-23 07:02:41 [DEBUG] - 17440 +2026-02-23 07:02:41 [ERROR] Out of memory - 32670 +2026-02-23 07:02:41 [CRITICAL] - 7981 +2026-02-23 07:02:41 [ERROR] Disk full - 15327 +2026-02-23 07:02:41 [CRITICAL] - 4708 +2026-02-23 07:02:41 [CRITICAL] - 18420 +2026-02-23 07:02:41 [DEBUG] - 30899 +2026-02-23 07:02:41 [ERROR] Failed to connect - 6946 +2026-02-23 07:02:41 [ERROR] Failed to connect - 8388 +2026-02-23 07:02:41 [CRITICAL] - 8354 +2026-02-23 07:02:41 [WARNING] - 27730 +2026-02-23 07:02:41 [DEBUG] - 27105 +2026-02-23 07:02:41 [INFO] - 20087 +2026-02-23 07:02:41 [DEBUG] - 3599 +2026-02-23 07:02:41 [WARNING] - 29915 +2026-02-23 07:02:41 [DEBUG] - 10856 +2026-02-23 07:02:41 [INFO] - 13056 +2026-02-23 07:02:41 [CRITICAL] - 598 +2026-02-23 07:02:41 [DEBUG] - 31832 +2026-02-23 07:02:41 [ERROR] Disk full - 19878 +2026-02-23 07:02:41 [WARNING] - 18068 +2026-02-23 07:02:41 [WARNING] - 13738 +2026-02-23 07:02:41 [INFO] - 11932 +2026-02-23 07:02:41 [ERROR] Out of memory - 12449 +2026-02-23 07:02:41 [CRITICAL] - 16248 +2026-02-23 07:02:41 [WARNING] - 28999 +2026-02-23 07:02:41 [WARNING] - 9787 +2026-02-23 07:02:41 [DEBUG] - 20566 +2026-02-23 07:02:41 [INFO] - 2824 +2026-02-23 07:02:41 [WARNING] - 10517 +2026-02-23 07:02:41 [WARNING] - 152 +2026-02-23 07:02:41 [WARNING] - 12959 +2026-02-23 07:02:41 [WARNING] - 9866 +2026-02-23 07:02:41 [INFO] - 24948 +2026-02-23 07:02:41 [ERROR] Failed to connect - 31517 +2026-02-23 07:02:41 [INFO] - 30881 +2026-02-23 07:02:41 [DEBUG] - 3055 +2026-02-23 07:02:41 [INFO] - 19641 +2026-02-23 07:02:41 [INFO] - 11156 +2026-02-23 07:02:41 [INFO] - 5403 +2026-02-23 07:02:41 [WARNING] - 14517 +2026-02-23 07:02:41 [ERROR] Failed to connect - 18079 +2026-02-23 07:02:41 [INFO] - 2657 +2026-02-23 07:02:41 [INFO] - 8819 +2026-02-23 07:02:41 [INFO] - 120 +2026-02-23 07:02:41 [CRITICAL] - 28187 +2026-02-23 07:02:41 [INFO] - 21575 +2026-02-23 07:02:41 [ERROR] Out of memory - 21365 +2026-02-23 07:02:41 [ERROR] Segmentation fault - 22795 +2026-02-23 07:02:41 [INFO] - 9927 +2026-02-23 07:02:41 [ERROR] Segmentation fault - 29348 +2026-02-23 07:02:41 [WARNING] - 28388 +2026-02-23 07:02:41 [CRITICAL] - 30889 +2026-02-23 07:02:41 [DEBUG] - 4886 +2026-02-23 07:02:41 [INFO] - 12423 +2026-02-23 07:02:41 [CRITICAL] - 6619 +2026-02-23 07:02:41 [ERROR] Failed to connect - 23182 +2026-02-23 07:02:41 [DEBUG] - 31407 +2026-02-23 07:02:41 [WARNING] - 22128 +2026-02-23 07:02:41 [WARNING] - 13296 +2026-02-23 07:02:41 [INFO] - 19123 +2026-02-23 07:02:41 [WARNING] - 2919 +2026-02-23 07:02:41 [ERROR] Disk full - 15350 +2026-02-23 07:02:41 [ERROR] Segmentation fault - 30059 +2026-02-23 07:02:41 [INFO] - 13516 +2026-02-23 07:02:41 [INFO] - 6640 +2026-02-23 07:02:41 [DEBUG] - 3823 +2026-02-23 07:02:41 [INFO] - 22813 +2026-02-23 07:02:41 [INFO] - 2955 +2026-02-23 07:02:41 [ERROR] Failed to connect - 19553 +2026-02-23 07:02:41 [WARNING] - 29819 +2026-02-23 07:02:41 [INFO] - 19579 +2026-02-23 07:02:41 [CRITICAL] - 4293 +2026-02-23 07:02:41 [CRITICAL] - 12764 +2026-02-23 07:02:41 [WARNING] - 16554 +2026-02-23 07:02:41 [ERROR] Invalid input - 27080 +2026-02-23 07:02:41 [INFO] - 16378 +2026-02-23 07:02:41 [WARNING] - 10050 +2026-02-23 07:02:41 [ERROR] Segmentation fault - 25267 +2026-02-23 07:02:41 [ERROR] Invalid input - 7719 +2026-02-23 07:02:41 [ERROR] Invalid input - 17278 +2026-02-23 07:02:41 [CRITICAL] - 10728 +2026-02-23 07:02:41 [DEBUG] - 24659 +2026-02-23 07:02:41 [INFO] - 22090 +2026-02-23 07:02:41 [ERROR] Disk full - 18218 +2026-02-23 07:02:41 [CRITICAL] - 21854 +2026-02-23 07:02:41 [INFO] - 23135 +2026-02-23 07:02:41 [WARNING] - 10763 +2026-02-23 07:02:41 [INFO] - 7811 +2026-02-23 07:02:41 [INFO] - 4705 +2026-02-23 07:02:42 [CRITICAL] - 13326 +2026-02-23 07:02:42 [ERROR] Failed to connect - 20251 +2026-02-23 07:02:42 [CRITICAL] - 17088 +2026-02-23 07:02:42 [CRITICAL] - 5014 +2026-02-23 07:02:42 [CRITICAL] - 3785 +2026-02-23 07:02:42 [ERROR] Failed to connect - 1392 +2026-02-23 07:02:42 [ERROR] Failed to connect - 12633 +2026-02-23 07:02:42 [WARNING] - 17409 +2026-02-23 07:02:42 [INFO] - 7707 +2026-02-23 07:02:42 [WARNING] - 2262 +2026-02-23 07:02:42 [ERROR] Out of memory - 3649 +2026-02-23 07:02:42 [INFO] - 12078 +2026-02-23 07:02:42 [ERROR] Invalid input - 30308 +2026-02-23 07:02:42 [ERROR] Out of memory - 24858 +2026-02-23 07:02:42 [WARNING] - 19926 +2026-02-23 07:02:42 [DEBUG] - 12529 +2026-02-23 07:02:42 [INFO] - 9640 +2026-02-23 07:02:42 [DEBUG] - 14413 +2026-02-23 07:02:42 [DEBUG] - 16667 +2026-02-23 07:02:42 [INFO] - 8237 +2026-02-23 07:02:42 [INFO] - 30494 +2026-02-23 07:02:42 [ERROR] Failed to connect - 23471 +2026-02-23 07:02:42 [WARNING] - 7364 +2026-02-23 07:02:42 [DEBUG] - 12861 +2026-02-23 07:02:42 [CRITICAL] - 18415 +2026-02-23 07:02:42 [ERROR] Invalid input - 3831 +2026-02-23 07:02:42 [WARNING] - 26700 +2026-02-23 07:02:42 [ERROR] Disk full - 16379 +2026-02-23 07:02:42 [WARNING] - 13773 +2026-02-23 07:02:42 [INFO] - 20331 +2026-02-23 07:02:42 [INFO] - 8543 +2026-02-23 07:02:42 [DEBUG] - 13382 +2026-02-23 07:02:42 [INFO] - 6635 +2026-02-23 07:02:42 [ERROR] Segmentation fault - 18575 +2026-02-23 07:02:42 [INFO] - 9619 +2026-02-23 07:02:42 [INFO] - 14283 +2026-02-23 07:02:42 [DEBUG] - 10553 +2026-02-23 07:02:42 [INFO] - 27461 +2026-02-23 07:02:42 [WARNING] - 22734 +2026-02-23 07:02:42 [DEBUG] - 2617 +2026-02-23 07:02:42 [WARNING] - 26605 +2026-02-23 07:02:42 [CRITICAL] - 14845 +2026-02-23 07:02:42 [DEBUG] - 27386 +2026-02-23 07:02:42 [CRITICAL] - 12810 +2026-02-23 07:02:42 [WARNING] - 24678 +2026-02-23 07:02:42 [CRITICAL] - 30265 +2026-02-23 07:02:42 [DEBUG] - 8531 +2026-02-23 07:02:42 [INFO] - 13685 +2026-02-23 07:02:42 [ERROR] Failed to connect - 8948 +2026-02-23 07:02:42 [WARNING] - 1286 +2026-02-23 07:02:42 [CRITICAL] - 17211 +2026-02-23 07:02:42 [WARNING] - 30562 +2026-02-23 07:02:42 [DEBUG] - 4667 +2026-02-23 07:02:42 [WARNING] - 8857 +2026-02-23 07:02:42 [ERROR] Disk full - 18542 +2026-02-23 07:02:42 [DEBUG] - 4581 +2026-02-23 07:02:42 [WARNING] - 26762 +2026-02-23 07:02:42 [ERROR] Out of memory - 12604 +2026-02-23 07:02:42 [ERROR] Out of memory - 854 +2026-02-23 07:02:42 [DEBUG] - 9734 +2026-02-23 07:02:42 [INFO] - 1171 +2026-02-23 07:02:42 [WARNING] - 7527 +2026-02-23 07:02:42 [CRITICAL] - 14040 +2026-02-23 07:02:42 [DEBUG] - 17046 +2026-02-23 07:02:42 [DEBUG] - 18655 +2026-02-23 07:02:42 [ERROR] Disk full - 20166 +2026-02-23 07:02:42 [INFO] - 15251 +2026-02-23 07:02:42 [INFO] - 29312 +2026-02-23 07:02:42 [INFO] - 9017 +2026-02-23 07:02:42 [INFO] - 286 +2026-02-23 07:02:42 [ERROR] Disk full - 13771 +2026-02-23 07:02:42 [INFO] - 10408 +2026-02-23 07:02:42 [WARNING] - 13905 +2026-02-23 07:02:42 [INFO] - 1732 +2026-02-23 07:02:42 [CRITICAL] - 21930 +2026-02-23 07:02:42 [ERROR] Disk full - 2003 +2026-02-23 07:02:42 [DEBUG] - 651 +2026-02-23 07:02:42 [ERROR] Out of memory - 25766 +2026-02-23 07:02:42 [ERROR] Out of memory - 28073 +2026-02-23 07:02:42 [WARNING] - 29208 +2026-02-23 07:02:42 [ERROR] Failed to connect - 8560 +2026-02-23 07:02:42 [WARNING] - 27551 +2026-02-23 07:02:42 [INFO] - 1769 +2026-02-23 07:02:42 [ERROR] Invalid input - 20862 +2026-02-23 07:02:42 [DEBUG] - 24654 +2026-02-23 07:02:42 [DEBUG] - 19088 +2026-02-23 07:02:42 [CRITICAL] - 26673 +2026-02-23 07:02:42 [DEBUG] - 13427 +2026-02-23 07:02:42 [INFO] - 12777 +2026-02-23 07:02:42 [DEBUG] - 12262 +2026-02-23 07:02:42 [ERROR] Disk full - 17901 +2026-02-23 07:02:42 [WARNING] - 15842 +2026-02-23 07:02:42 [DEBUG] - 2942 +2026-02-23 07:02:42 [WARNING] - 2503 +2026-02-23 07:02:42 [INFO] - 25418 +2026-02-23 07:02:42 [CRITICAL] - 31290 +2026-02-23 07:02:42 [DEBUG] - 22157 +2026-02-23 07:02:42 [WARNING] - 2130 +2026-02-23 07:02:42 [CRITICAL] - 5544 +2026-02-23 07:02:42 [CRITICAL] - 11321 +2026-02-23 07:02:42 [ERROR] Out of memory - 9162 +2026-02-23 07:02:42 [DEBUG] - 27431 +2026-02-23 07:02:42 [DEBUG] - 9318 +2026-02-23 07:02:42 [WARNING] - 12260 +2026-02-23 07:02:42 [WARNING] - 1627 +2026-02-23 07:02:42 [INFO] - 31218 +2026-02-23 07:02:42 [ERROR] Disk full - 23746 +2026-02-23 07:02:42 [INFO] - 3227 +2026-02-23 07:02:42 [WARNING] - 24204 +2026-02-23 07:02:42 [WARNING] - 20960 +2026-02-23 07:02:42 [INFO] - 20452 +2026-02-23 07:02:42 [DEBUG] - 3766 +2026-02-23 07:02:42 [CRITICAL] - 1264 +2026-02-23 07:02:42 [INFO] - 24308 +2026-02-23 07:02:42 [ERROR] Failed to connect - 26532 +2026-02-23 07:02:42 [INFO] - 17093 +2026-02-23 07:02:42 [DEBUG] - 14491 +2026-02-23 07:02:42 [CRITICAL] - 14818 +2026-02-23 07:02:42 [INFO] - 16676 +2026-02-23 07:02:42 [CRITICAL] - 16761 +2026-02-23 07:02:42 [ERROR] Failed to connect - 32385 +2026-02-23 07:02:42 [ERROR] Invalid input - 13674 +2026-02-23 07:02:42 [ERROR] Disk full - 17734 +2026-02-23 07:02:42 [ERROR] Failed to connect - 13472 +2026-02-23 07:02:42 [ERROR] Invalid input - 15864 +2026-02-23 07:02:42 [DEBUG] - 12504 +2026-02-23 07:02:42 [INFO] - 19689 +2026-02-23 07:02:42 [INFO] - 986 +2026-02-23 07:02:42 [INFO] - 21955 +2026-02-23 07:02:42 [ERROR] Out of memory - 24115 +2026-02-23 07:02:42 [INFO] - 25825 +2026-02-23 07:02:42 [ERROR] Invalid input - 12031 +2026-02-23 07:02:42 [WARNING] - 27295 +2026-02-23 07:02:42 [WARNING] - 9024 +2026-02-23 07:02:42 [DEBUG] - 15537 +2026-02-23 07:02:42 [WARNING] - 8537 +2026-02-23 07:02:42 [ERROR] Invalid input - 23948 +2026-02-23 07:02:42 [DEBUG] - 13294 +2026-02-23 07:02:42 [WARNING] - 25813 +2026-02-23 07:02:42 [INFO] - 13618 +2026-02-23 07:02:42 [WARNING] - 16698 +2026-02-23 07:02:42 [WARNING] - 14753 +2026-02-23 07:02:42 [DEBUG] - 26254 +2026-02-23 07:02:42 [INFO] - 32115 +2026-02-23 07:02:42 [ERROR] Failed to connect - 15941 +2026-02-23 07:02:42 [CRITICAL] - 3096 +2026-02-23 07:02:42 [CRITICAL] - 20548 +2026-02-23 07:02:42 [WARNING] - 13866 +2026-02-23 07:02:42 [DEBUG] - 18199 +2026-02-23 07:02:42 [CRITICAL] - 2220 +2026-02-23 07:02:42 [DEBUG] - 21366 +2026-02-23 07:02:42 [DEBUG] - 18115 +2026-02-23 07:02:42 [ERROR] Out of memory - 23592 +2026-02-23 07:02:42 [ERROR] Disk full - 15081 +2026-02-23 07:02:42 [INFO] - 27273 +2026-02-23 07:02:42 [INFO] - 14380 +2026-02-23 07:02:42 [DEBUG] - 6975 +2026-02-23 07:02:42 [CRITICAL] - 29975 +2026-02-23 07:02:42 [INFO] - 1257 +2026-02-23 07:02:42 [INFO] - 13073 +2026-02-23 07:02:42 [ERROR] Failed to connect - 10002 +2026-02-23 07:02:42 [ERROR] Failed to connect - 7053 +2026-02-23 07:02:42 [INFO] - 505 +2026-02-23 07:02:42 [WARNING] - 30984 +2026-02-23 07:02:42 [DEBUG] - 10655 +2026-02-23 07:02:42 [CRITICAL] - 3713 +2026-02-23 07:02:42 [DEBUG] - 6559 +2026-02-23 07:02:42 [CRITICAL] - 13909 +2026-02-23 07:02:42 [INFO] - 16117 +2026-02-23 07:02:42 [WARNING] - 31699 +2026-02-23 07:02:42 [ERROR] Disk full - 3829 +2026-02-23 07:02:42 [DEBUG] - 31249 +2026-02-23 07:02:42 [DEBUG] - 24239 +2026-02-23 07:02:42 [INFO] - 21108 +2026-02-23 07:02:42 [INFO] - 10624 +2026-02-23 07:02:42 [DEBUG] - 10518 +2026-02-23 07:02:42 [WARNING] - 15118 +2026-02-23 07:02:42 [INFO] - 2967 +2026-02-23 07:02:42 [WARNING] - 2665 +2026-02-23 07:02:42 [WARNING] - 18343 +2026-02-23 07:02:42 [WARNING] - 8081 +2026-02-23 07:02:42 [WARNING] - 25371 +2026-02-23 07:02:42 [DEBUG] - 32145 +2026-02-23 07:02:42 [ERROR] Disk full - 10282 +2026-02-23 07:02:42 [ERROR] Invalid input - 10271 +2026-02-23 07:02:42 [INFO] - 24151 +2026-02-23 07:02:42 [DEBUG] - 31302 +2026-02-23 07:02:42 [ERROR] Disk full - 25580 +2026-02-23 07:02:42 [DEBUG] - 7970 +2026-02-23 07:02:42 [WARNING] - 2356 +2026-02-23 07:02:42 [DEBUG] - 27071 +2026-02-23 07:02:42 [WARNING] - 8766 +2026-02-23 07:02:42 [DEBUG] - 28527 +2026-02-23 07:02:42 [ERROR] Out of memory - 18603 +2026-02-23 07:02:42 [ERROR] Segmentation fault - 10577 +2026-02-23 07:02:42 [WARNING] - 13795 +2026-02-23 07:02:42 [INFO] - 24005 +2026-02-23 07:02:42 [DEBUG] - 4375 +2026-02-23 07:02:42 [CRITICAL] - 18716 +2026-02-23 07:02:42 [DEBUG] - 15795 +2026-02-23 07:02:42 [INFO] - 1603 +2026-02-23 07:02:42 [CRITICAL] - 746 +2026-02-23 07:02:42 [INFO] - 9071 +2026-02-23 07:02:42 [DEBUG] - 5632 +2026-02-23 07:02:42 [INFO] - 8883 +2026-02-23 07:02:42 [DEBUG] - 30235 +2026-02-23 07:02:42 [DEBUG] - 7222 +2026-02-23 07:02:42 [INFO] - 25303 +2026-02-23 07:02:42 [DEBUG] - 18139 +2026-02-23 07:02:42 [CRITICAL] - 32269 +2026-02-23 07:02:42 [CRITICAL] - 28834 +2026-02-23 07:02:42 [INFO] - 13251 +2026-02-23 07:02:42 [ERROR] Segmentation fault - 2083 +2026-02-23 07:02:42 [WARNING] - 26175 +2026-02-23 07:02:42 [ERROR] Disk full - 30311 +2026-02-23 07:02:42 [DEBUG] - 21918 +2026-02-23 07:02:42 [CRITICAL] - 25953 +2026-02-23 07:02:42 [ERROR] Invalid input - 16358 +2026-02-23 07:02:42 [WARNING] - 18096 +2026-02-23 07:02:42 [INFO] - 14711 +2026-02-23 07:02:42 [WARNING] - 7070 +2026-02-23 07:02:42 [ERROR] Segmentation fault - 28646 +2026-02-23 07:02:42 [DEBUG] - 6872 +2026-02-23 07:02:42 [WARNING] - 18449 +2026-02-23 07:02:42 [WARNING] - 14398 +2026-02-23 07:02:42 [WARNING] - 30757 +2026-02-23 07:02:42 [CRITICAL] - 1378 +2026-02-23 07:02:42 [WARNING] - 3391 +2026-02-23 07:02:42 [INFO] - 21681 +2026-02-23 07:02:42 [ERROR] Segmentation fault - 21763 +2026-02-23 07:02:42 [DEBUG] - 29138 +2026-02-23 07:02:42 [CRITICAL] - 9406 +2026-02-23 07:02:42 [CRITICAL] - 15945 +2026-02-23 07:02:42 [WARNING] - 2950 +2026-02-23 07:02:42 [DEBUG] - 8130 +2026-02-23 07:02:42 [INFO] - 12376 +2026-02-23 07:02:42 [DEBUG] - 31675 +2026-02-23 07:02:42 [ERROR] Segmentation fault - 10848 +2026-02-23 07:02:42 [WARNING] - 13433 +2026-02-23 07:02:42 [WARNING] - 23473 +2026-02-23 07:02:42 [DEBUG] - 31461 +2026-02-23 07:02:42 [WARNING] - 2509 +2026-02-23 07:02:42 [INFO] - 23685 +2026-02-23 07:02:42 [CRITICAL] - 27552 +2026-02-23 07:02:42 [INFO] - 23441 +2026-02-23 07:02:42 [ERROR] Out of memory - 32406 +2026-02-23 07:02:42 [INFO] - 27756 +2026-02-23 07:02:42 [WARNING] - 9510 +2026-02-23 07:02:42 [CRITICAL] - 10794 +2026-02-23 07:02:42 [DEBUG] - 9502 +2026-02-23 07:02:42 [INFO] - 20135 +2026-02-23 07:02:42 [CRITICAL] - 29028 +2026-02-23 07:02:42 [CRITICAL] - 17078 +2026-02-23 07:02:42 [WARNING] - 15441 +2026-02-23 07:02:42 [DEBUG] - 6646 +2026-02-23 07:02:42 [ERROR] Failed to connect - 32160 +2026-02-23 07:02:42 [CRITICAL] - 1769 +2026-02-23 07:02:42 [CRITICAL] - 21422 +2026-02-23 07:02:42 [WARNING] - 22449 +2026-02-23 07:02:42 [ERROR] Out of memory - 12099 +2026-02-23 07:02:42 [CRITICAL] - 29280 +2026-02-23 07:02:42 [DEBUG] - 5309 +2026-02-23 07:02:42 [CRITICAL] - 2262 +2026-02-23 07:02:42 [CRITICAL] - 28894 +2026-02-23 07:02:42 [CRITICAL] - 22964 +2026-02-23 07:02:42 [DEBUG] - 27483 +2026-02-23 07:02:42 [DEBUG] - 26856 +2026-02-23 07:02:42 [WARNING] - 4485 +2026-02-23 07:02:42 [CRITICAL] - 9493 +2026-02-23 07:02:42 [INFO] - 15693 +2026-02-23 07:02:42 [ERROR] Segmentation fault - 993 +2026-02-23 07:02:42 [DEBUG] - 27674 +2026-02-23 07:02:42 [CRITICAL] - 14270 +2026-02-23 07:02:42 [WARNING] - 3143 +2026-02-23 07:02:42 [WARNING] - 21340 +2026-02-23 07:02:42 [ERROR] Invalid input - 28209 +2026-02-23 07:02:42 [ERROR] Out of memory - 25964 +2026-02-23 07:02:42 [WARNING] - 28532 +2026-02-23 07:02:42 [CRITICAL] - 30402 +2026-02-23 07:02:42 [DEBUG] - 1765 +2026-02-23 07:02:42 [INFO] - 8205 +2026-02-23 07:02:42 [DEBUG] - 24822 +2026-02-23 07:02:42 [INFO] - 24182 +2026-02-23 07:02:42 [ERROR] Out of memory - 3419 +2026-02-23 07:02:42 [WARNING] - 9423 +2026-02-23 07:02:42 [INFO] - 2834 +2026-02-23 07:02:42 [ERROR] Invalid input - 8975 +2026-02-23 07:02:42 [ERROR] Invalid input - 27731 +2026-02-23 07:02:42 [INFO] - 20397 +2026-02-23 07:02:42 [INFO] - 13146 +2026-02-23 07:02:42 [WARNING] - 5391 +2026-02-23 07:02:42 [ERROR] Disk full - 24101 +2026-02-23 07:02:42 [WARNING] - 5751 +2026-02-23 07:02:42 [CRITICAL] - 15592 +2026-02-23 07:02:42 [WARNING] - 3411 +2026-02-23 07:02:42 [INFO] - 4808 +2026-02-23 07:02:42 [INFO] - 2340 +2026-02-23 07:02:42 [ERROR] Invalid input - 16207 +2026-02-23 07:02:42 [ERROR] Failed to connect - 18397 +2026-02-23 07:02:42 [ERROR] Failed to connect - 31473 +2026-02-23 07:02:42 [INFO] - 13338 +2026-02-23 07:02:42 [WARNING] - 27934 +2026-02-23 07:02:42 [CRITICAL] - 8457 +2026-02-23 07:02:42 [WARNING] - 6387 +2026-02-23 07:02:42 [WARNING] - 6533 +2026-02-23 07:02:42 [ERROR] Invalid input - 15347 +2026-02-23 07:02:42 [DEBUG] - 26880 +2026-02-23 07:02:42 [DEBUG] - 26498 +2026-02-23 07:02:42 [ERROR] Disk full - 20627 +2026-02-23 07:02:42 [CRITICAL] - 271 +2026-02-23 07:02:42 [CRITICAL] - 19542 +2026-02-23 07:02:42 [CRITICAL] - 28643 +2026-02-23 07:02:42 [INFO] - 19192 +2026-02-23 07:02:42 [DEBUG] - 32661 +2026-02-23 07:02:42 [INFO] - 11422 +2026-02-23 07:02:42 [DEBUG] - 20432 +2026-02-23 07:02:42 [CRITICAL] - 16751 +2026-02-23 07:02:42 [DEBUG] - 8656 +2026-02-23 07:02:42 [CRITICAL] - 7603 +2026-02-23 07:02:42 [ERROR] Out of memory - 28507 +2026-02-23 07:02:42 [CRITICAL] - 14408 +2026-02-23 07:02:42 [ERROR] Invalid input - 3162 +2026-02-23 07:02:42 [CRITICAL] - 27445 +2026-02-23 07:02:42 [INFO] - 31802 +2026-02-23 07:02:42 [WARNING] - 14776 +2026-02-23 07:02:42 [DEBUG] - 22181 +2026-02-23 07:02:42 [CRITICAL] - 12314 +2026-02-23 07:02:42 [ERROR] Failed to connect - 31269 +2026-02-23 07:02:42 [CRITICAL] - 24874 +2026-02-23 07:02:42 [CRITICAL] - 22407 +2026-02-23 07:02:42 [WARNING] - 4855 +2026-02-23 07:02:42 [WARNING] - 16000 +2026-02-23 07:02:42 [INFO] - 1417 +2026-02-23 07:02:42 [DEBUG] - 1147 +2026-02-23 07:02:42 [ERROR] Segmentation fault - 4384 +2026-02-23 07:02:42 [INFO] - 15633 +2026-02-23 07:02:42 [DEBUG] - 6526 +2026-02-23 07:02:42 [ERROR] Out of memory - 15520 +2026-02-23 07:02:42 [WARNING] - 28347 +2026-02-23 07:02:42 [INFO] - 18377 +2026-02-23 07:02:42 [CRITICAL] - 31765 +2026-02-23 07:02:42 [ERROR] Segmentation fault - 9864 +2026-02-23 07:02:42 [DEBUG] - 23249 +2026-02-23 07:02:42 [ERROR] Disk full - 440 +2026-02-23 07:02:42 [WARNING] - 9259 +2026-02-23 07:02:42 [DEBUG] - 25627 +2026-02-23 07:02:42 [CRITICAL] - 2572 +2026-02-23 07:02:42 [ERROR] Out of memory - 30999 +2026-02-23 07:02:42 [INFO] - 15848 +2026-02-23 07:02:42 [ERROR] Invalid input - 27922 +2026-02-23 07:02:42 [WARNING] - 4561 +2026-02-23 07:02:42 [CRITICAL] - 27219 +2026-02-23 07:02:42 [WARNING] - 20765 +2026-02-23 07:02:42 [WARNING] - 29428 +2026-02-23 07:02:42 [ERROR] Failed to connect - 21371 +2026-02-23 07:02:42 [ERROR] Disk full - 18611 +2026-02-23 07:02:42 [CRITICAL] - 11231 +2026-02-23 07:02:42 [INFO] - 17531 +2026-02-23 07:02:42 [ERROR] Segmentation fault - 4470 +2026-02-23 07:02:42 [CRITICAL] - 22987 +2026-02-23 07:02:42 [WARNING] - 13166 +2026-02-23 07:02:42 [WARNING] - 19284 +2026-02-23 07:02:42 [DEBUG] - 20880 +2026-02-23 07:02:42 [INFO] - 16907 +2026-02-23 07:02:42 [ERROR] Disk full - 25274 +2026-02-23 07:02:42 [DEBUG] - 3767 +2026-02-23 07:02:42 [DEBUG] - 5926 +2026-02-23 07:02:42 [ERROR] Disk full - 31816 +2026-02-23 07:02:42 [DEBUG] - 16685 +2026-02-23 07:02:42 [CRITICAL] - 32028 +2026-02-23 07:02:42 [INFO] - 19097 +2026-02-23 07:02:42 [INFO] - 22550 +2026-02-23 07:02:42 [WARNING] - 32174 +2026-02-23 07:02:42 [WARNING] - 23334 +2026-02-23 07:02:42 [WARNING] - 14788 +2026-02-23 07:02:42 [ERROR] Failed to connect - 24808 +2026-02-23 07:02:42 [INFO] - 20132 +2026-02-23 07:02:42 [INFO] - 31751 +2026-02-23 07:02:42 [DEBUG] - 26762 +2026-02-23 07:02:42 [ERROR] Out of memory - 16749 +2026-02-23 07:02:42 [ERROR] Disk full - 5819 +2026-02-23 07:02:42 [WARNING] - 12021 +2026-02-23 07:02:42 [ERROR] Disk full - 20440 +2026-02-23 07:02:42 [DEBUG] - 18481 +2026-02-23 07:02:42 [INFO] - 11632 +2026-02-23 07:02:42 [WARNING] - 2666 +2026-02-23 07:02:42 [DEBUG] - 30558 +2026-02-23 07:02:42 [INFO] - 1168 +2026-02-23 07:02:42 [ERROR] Invalid input - 7775 +2026-02-23 07:02:42 [DEBUG] - 7859 +2026-02-23 07:02:42 [CRITICAL] - 7143 +2026-02-23 07:02:42 [CRITICAL] - 26058 +2026-02-23 07:02:42 [INFO] - 17694 +2026-02-23 07:02:42 [ERROR] Failed to connect - 2342 +2026-02-23 07:02:42 [CRITICAL] - 6282 +2026-02-23 07:02:42 [CRITICAL] - 27752 +2026-02-23 07:02:42 [WARNING] - 27631 +2026-02-23 07:02:42 [DEBUG] - 28501 +2026-02-23 07:02:42 [INFO] - 24636 +2026-02-23 07:02:42 [WARNING] - 29099 +2026-02-23 07:02:42 [CRITICAL] - 11097 +2026-02-23 07:02:42 [ERROR] Invalid input - 10682 +2026-02-23 07:02:42 [CRITICAL] - 8770 +2026-02-23 07:02:42 [WARNING] - 463 +2026-02-23 07:02:42 [ERROR] Failed to connect - 10398 +2026-02-23 07:02:42 [ERROR] Segmentation fault - 23806 +2026-02-23 07:02:42 [WARNING] - 31181 +2026-02-23 07:02:42 [ERROR] Failed to connect - 11119 +2026-02-23 07:02:42 [CRITICAL] - 3442 +2026-02-23 07:02:42 [WARNING] - 24996 +2026-02-23 07:02:42 [CRITICAL] - 7364 +2026-02-23 07:02:42 [WARNING] - 216 +2026-02-23 07:02:42 [INFO] - 15082 +2026-02-23 07:02:42 [WARNING] - 25089 +2026-02-23 07:02:42 [ERROR] Invalid input - 20085 +2026-02-23 07:02:42 [DEBUG] - 15517 +2026-02-23 07:02:42 [DEBUG] - 635 +2026-02-23 07:02:42 [WARNING] - 4652 +2026-02-23 07:02:42 [DEBUG] - 22781 +2026-02-23 07:02:42 [DEBUG] - 26836 +2026-02-23 07:02:42 [ERROR] Failed to connect - 7982 +2026-02-23 07:02:42 [ERROR] Disk full - 5385 +2026-02-23 07:02:42 [ERROR] Out of memory - 13457 +2026-02-23 07:02:42 [DEBUG] - 18488 +2026-02-23 07:02:42 [WARNING] - 1111 +2026-02-23 07:02:42 [INFO] - 19788 +2026-02-23 07:02:42 [ERROR] Invalid input - 17273 +2026-02-23 07:02:42 [CRITICAL] - 14483 +2026-02-23 07:02:42 [CRITICAL] - 14487 +2026-02-23 07:02:42 [WARNING] - 22394 +2026-02-23 07:02:42 [ERROR] Disk full - 30760 +2026-02-23 07:02:42 [WARNING] - 24710 +2026-02-23 07:02:42 [DEBUG] - 7913 +2026-02-23 07:02:42 [ERROR] Disk full - 11529 +2026-02-23 07:02:42 [DEBUG] - 10818 +2026-02-23 07:02:42 [INFO] - 13185 +2026-02-23 07:02:42 [DEBUG] - 20853 +2026-02-23 07:02:42 [CRITICAL] - 31071 +2026-02-23 07:02:42 [WARNING] - 30486 +2026-02-23 07:02:42 [ERROR] Failed to connect - 4838 +2026-02-23 07:02:42 [ERROR] Invalid input - 31290 +2026-02-23 07:02:42 [DEBUG] - 6166 +2026-02-23 07:02:42 [ERROR] Invalid input - 23958 +2026-02-23 07:02:42 [DEBUG] - 28327 +2026-02-23 07:02:42 [ERROR] Out of memory - 21017 +2026-02-23 07:02:42 [WARNING] - 21809 +2026-02-23 07:02:42 [ERROR] Out of memory - 23237 +2026-02-23 07:02:42 [WARNING] - 2356 +2026-02-23 07:02:42 [DEBUG] - 18385 +2026-02-23 07:02:42 [ERROR] Disk full - 18215 +2026-02-23 07:02:42 [CRITICAL] - 6600 +2026-02-23 07:02:42 [DEBUG] - 10894 +2026-02-23 07:02:42 [ERROR] Disk full - 11643 +2026-02-23 07:02:42 [DEBUG] - 2385 +2026-02-23 07:02:42 [INFO] - 21508 +2026-02-23 07:02:42 [CRITICAL] - 26642 +2026-02-23 07:02:42 [ERROR] Segmentation fault - 20464 +2026-02-23 07:02:42 [DEBUG] - 24667 +2026-02-23 07:02:42 [ERROR] Invalid input - 1036 +2026-02-23 07:02:42 [INFO] - 3361 +2026-02-23 07:02:42 [ERROR] Failed to connect - 1032 +2026-02-23 07:02:42 [DEBUG] - 23040 +2026-02-23 07:02:42 [WARNING] - 21714 +2026-02-23 07:02:42 [ERROR] Invalid input - 27865 +2026-02-23 07:02:42 [DEBUG] - 19452 +2026-02-23 07:02:42 [CRITICAL] - 30674 +2026-02-23 07:02:42 [WARNING] - 20400 +2026-02-23 07:02:42 [DEBUG] - 20256 +2026-02-23 07:02:42 [DEBUG] - 13521 +2026-02-23 07:02:42 [DEBUG] - 21706 +2026-02-23 07:02:42 [CRITICAL] - 7137 +2026-02-23 07:02:42 [INFO] - 7086 +2026-02-23 07:02:42 [ERROR] Segmentation fault - 12736 +2026-02-23 07:02:42 [DEBUG] - 29552 +2026-02-23 07:02:42 [ERROR] Invalid input - 18584 +2026-02-23 07:02:42 [ERROR] Invalid input - 32182 +2026-02-23 07:02:42 [INFO] - 366 +2026-02-23 07:02:42 [ERROR] Out of memory - 31105 +2026-02-23 07:02:42 [ERROR] Invalid input - 4228 +2026-02-23 07:02:42 [WARNING] - 24808 +2026-02-23 07:02:42 [INFO] - 7271 +2026-02-23 07:02:42 [INFO] - 23866 +2026-02-23 07:02:42 [DEBUG] - 25055 +2026-02-23 07:02:42 [ERROR] Segmentation fault - 5228 +2026-02-23 07:02:42 [WARNING] - 19583 +2026-02-23 07:02:42 [CRITICAL] - 7336 +2026-02-23 07:02:42 [WARNING] - 650 +2026-02-23 07:02:42 [INFO] - 30637 +2026-02-23 07:02:42 [WARNING] - 3468 +2026-02-23 07:02:42 [ERROR] Failed to connect - 32074 +2026-02-23 07:02:42 [ERROR] Invalid input - 4953 +2026-02-23 07:02:42 [ERROR] Invalid input - 10951 +2026-02-23 07:02:42 [WARNING] - 12171 +2026-02-23 07:02:42 [DEBUG] - 12286 +2026-02-23 07:02:42 [WARNING] - 25601 +2026-02-23 07:02:42 [CRITICAL] - 3600 +2026-02-23 07:02:42 [WARNING] - 5217 +2026-02-23 07:02:42 [WARNING] - 11579 +2026-02-23 07:02:42 [WARNING] - 21534 +2026-02-23 07:02:42 [WARNING] - 4308 +2026-02-23 07:02:42 [INFO] - 22880 +2026-02-23 07:02:42 [INFO] - 16219 +2026-02-23 07:02:42 [ERROR] Invalid input - 32700 +2026-02-23 07:02:42 [DEBUG] - 23168 +2026-02-23 07:02:42 [ERROR] Disk full - 23493 +2026-02-23 07:02:42 [INFO] - 21173 +2026-02-23 07:02:42 [DEBUG] - 189 +2026-02-23 07:02:42 [CRITICAL] - 244 +2026-02-23 07:02:42 [WARNING] - 1232 +2026-02-23 07:02:42 [CRITICAL] - 14740 +2026-02-23 07:02:42 [WARNING] - 975 +2026-02-23 07:02:42 [DEBUG] - 15788 +2026-02-23 07:02:42 [INFO] - 15753 +2026-02-23 07:02:42 [ERROR] Segmentation fault - 2216 +2026-02-23 07:02:42 [INFO] - 32226 +2026-02-23 07:02:42 [CRITICAL] - 848 +2026-02-23 07:02:42 [ERROR] Invalid input - 23638 +2026-02-23 07:02:42 [CRITICAL] - 14924 +2026-02-23 07:02:42 [CRITICAL] - 6997 +2026-02-23 07:02:42 [WARNING] - 20970 +2026-02-23 07:02:42 [CRITICAL] - 15157 +2026-02-23 07:02:42 [DEBUG] - 18886 +2026-02-23 07:02:42 [CRITICAL] - 28227 +2026-02-23 07:02:42 [DEBUG] - 17183 +2026-02-23 07:02:42 [INFO] - 4490 +2026-02-23 07:02:42 [ERROR] Invalid input - 15215 +2026-02-23 07:02:42 [DEBUG] - 22607 +2026-02-23 07:02:42 [INFO] - 32446 +2026-02-23 07:02:42 [INFO] - 30651 +2026-02-23 07:02:42 [INFO] - 24995 +2026-02-23 07:02:42 [WARNING] - 12952 +2026-02-23 07:02:42 [CRITICAL] - 2506 +2026-02-23 07:02:42 [CRITICAL] - 26447 +2026-02-23 07:02:42 [INFO] - 5473 +2026-02-23 07:02:42 [INFO] - 872 +2026-02-23 07:02:42 [ERROR] Segmentation fault - 12893 +2026-02-23 07:02:42 [INFO] - 23839 +2026-02-23 07:02:42 [ERROR] Invalid input - 28207 +2026-02-23 07:02:42 [CRITICAL] - 28515 +2026-02-23 07:02:42 [INFO] - 32663 +2026-02-23 07:02:42 [DEBUG] - 13119 +2026-02-23 07:02:42 [DEBUG] - 24365 +2026-02-23 07:02:42 [WARNING] - 15086 +2026-02-23 07:02:42 [WARNING] - 25915 +2026-02-23 07:02:42 [INFO] - 12385 +2026-02-23 07:02:42 [CRITICAL] - 32610 +2026-02-23 07:02:42 [ERROR] Disk full - 14002 +2026-02-23 07:02:42 [WARNING] - 24530 +2026-02-23 07:02:42 [DEBUG] - 19305 +2026-02-23 07:02:42 [INFO] - 3010 +2026-02-23 07:02:42 [INFO] - 8788 +2026-02-23 07:02:42 [ERROR] Out of memory - 32296 +2026-02-23 07:02:42 [CRITICAL] - 6338 +2026-02-23 07:02:42 [CRITICAL] - 2565 +2026-02-23 07:02:42 [CRITICAL] - 24432 +2026-02-23 07:02:42 [CRITICAL] - 21955 +2026-02-23 07:02:42 [INFO] - 437 +2026-02-23 07:02:42 [INFO] - 24312 +2026-02-23 07:02:42 [WARNING] - 27442 +2026-02-23 07:02:42 [DEBUG] - 6498 +2026-02-23 07:02:42 [INFO] - 6159 +2026-02-23 07:02:42 [CRITICAL] - 17842 +2026-02-23 07:02:42 [CRITICAL] - 9350 +2026-02-23 07:02:42 [INFO] - 4273 +2026-02-23 07:02:42 [WARNING] - 3312 +2026-02-23 07:02:42 [INFO] - 22225 +2026-02-23 07:02:42 [ERROR] Failed to connect - 18114 +2026-02-23 07:02:42 [INFO] - 4726 +2026-02-23 07:02:42 [CRITICAL] - 11034 +2026-02-23 07:02:42 [DEBUG] - 9551 +2026-02-23 07:02:42 [INFO] - 619 +2026-02-23 07:02:42 [DEBUG] - 31515 +2026-02-23 07:02:42 [WARNING] - 5346 +2026-02-23 07:02:42 [ERROR] Out of memory - 6889 +2026-02-23 07:02:42 [INFO] - 12177 +2026-02-23 07:02:42 [INFO] - 7568 +2026-02-23 07:02:42 [ERROR] Segmentation fault - 31975 +2026-02-23 07:02:42 [WARNING] - 14097 +2026-02-23 07:02:42 [WARNING] - 32090 +2026-02-23 07:02:42 [DEBUG] - 16198 +2026-02-23 07:02:42 [ERROR] Disk full - 15120 +2026-02-23 07:02:42 [INFO] - 12576 +2026-02-23 07:02:42 [DEBUG] - 7047 +2026-02-23 07:02:42 [DEBUG] - 12884 +2026-02-23 07:02:42 [INFO] - 6756 +2026-02-23 07:02:42 [DEBUG] - 32610 +2026-02-23 07:02:42 [ERROR] Segmentation fault - 26864 +2026-02-23 07:02:42 [INFO] - 2682 +2026-02-23 07:02:42 [ERROR] Failed to connect - 21489 +2026-02-23 07:02:42 [CRITICAL] - 825 +2026-02-23 07:02:42 [WARNING] - 15002 +2026-02-23 07:02:42 [ERROR] Invalid input - 6149 +2026-02-23 07:02:42 [DEBUG] - 29146 +2026-02-23 07:02:42 [WARNING] - 5777 +2026-02-23 07:02:42 [DEBUG] - 11860 +2026-02-23 07:02:42 [DEBUG] - 16894 +2026-02-23 07:02:42 [CRITICAL] - 31711 +2026-02-23 07:02:42 [ERROR] Invalid input - 21414 +2026-02-23 07:02:42 [WARNING] - 6627 +2026-02-23 07:02:42 [DEBUG] - 25952 +2026-02-23 07:02:42 [CRITICAL] - 31246 +2026-02-23 07:02:42 [WARNING] - 29873 +2026-02-23 07:02:42 [ERROR] Segmentation fault - 6234 +2026-02-23 07:02:42 [CRITICAL] - 18414 +2026-02-23 07:02:42 [DEBUG] - 21440 +2026-02-23 07:02:42 [DEBUG] - 17870 +2026-02-23 07:02:42 [DEBUG] - 31106 +2026-02-23 07:02:42 [INFO] - 8321 +2026-02-23 07:02:42 [INFO] - 10290 +2026-02-23 07:02:42 [INFO] - 6265 +2026-02-23 07:02:42 [ERROR] Disk full - 7934 +2026-02-23 07:02:42 [INFO] - 3594 +2026-02-23 07:02:42 [WARNING] - 18467 +2026-02-23 07:02:42 [DEBUG] - 26019 +2026-02-23 07:02:42 [WARNING] - 28406 +2026-02-23 07:02:42 [INFO] - 16740 +2026-02-23 07:02:42 [CRITICAL] - 2926 +2026-02-23 07:02:42 [ERROR] Invalid input - 4549 +2026-02-23 07:02:42 [ERROR] Invalid input - 3593 +2026-02-23 07:02:42 [ERROR] Disk full - 32243 +2026-02-23 07:02:42 [ERROR] Out of memory - 20890 +2026-02-23 07:02:42 [ERROR] Disk full - 6656 +2026-02-23 07:02:42 [DEBUG] - 16141 +2026-02-23 07:02:42 [INFO] - 17375 +2026-02-23 07:02:42 [WARNING] - 27108 +2026-02-23 07:02:42 [WARNING] - 20478 +2026-02-23 07:02:42 [DEBUG] - 23006 +2026-02-23 07:02:42 [CRITICAL] - 30075 +2026-02-23 07:02:42 [ERROR] Invalid input - 722 +2026-02-23 07:02:42 [DEBUG] - 1533 +2026-02-23 07:02:42 [DEBUG] - 20571 +2026-02-23 07:02:42 [DEBUG] - 13964 +2026-02-23 07:02:42 [ERROR] Failed to connect - 9006 +2026-02-23 07:02:42 [ERROR] Disk full - 21161 +2026-02-23 07:02:42 [DEBUG] - 26015 +2026-02-23 07:02:42 [ERROR] Failed to connect - 20769 +2026-02-23 07:02:42 [CRITICAL] - 943 +2026-02-23 07:02:42 [WARNING] - 24522 +2026-02-23 07:02:42 [INFO] - 9504 +2026-02-23 07:02:42 [INFO] - 10891 +2026-02-23 07:02:42 [WARNING] - 3995 +2026-02-23 07:02:42 [DEBUG] - 27687 +2026-02-23 07:02:42 [DEBUG] - 21273 +2026-02-23 07:02:42 [WARNING] - 2267 +2026-02-23 07:02:42 [ERROR] Disk full - 2747 +2026-02-23 07:02:42 [CRITICAL] - 5779 +2026-02-23 07:02:42 [CRITICAL] - 31601 +2026-02-23 07:02:42 [ERROR] Segmentation fault - 14179 +2026-02-23 07:02:42 [INFO] - 29109 +2026-02-23 07:02:42 [INFO] - 25608 +2026-02-23 07:02:42 [INFO] - 6806 +2026-02-23 07:02:42 [DEBUG] - 2087 +2026-02-23 07:02:42 [ERROR] Invalid input - 13920 +2026-02-23 07:02:42 [DEBUG] - 6782 +2026-02-23 07:02:42 [WARNING] - 11584 +2026-02-23 07:02:42 [DEBUG] - 5826 +2026-02-23 07:02:42 [ERROR] Invalid input - 29203 +2026-02-23 07:02:42 [CRITICAL] - 318 +2026-02-23 07:02:42 [CRITICAL] - 26313 +2026-02-23 07:02:42 [WARNING] - 23484 +2026-02-23 07:02:42 [WARNING] - 22789 +2026-02-23 07:02:42 [WARNING] - 29368 +2026-02-23 07:02:42 [WARNING] - 32543 +2026-02-23 07:02:42 [DEBUG] - 20351 +2026-02-23 07:02:42 [ERROR] Out of memory - 1287 +2026-02-23 07:02:42 [DEBUG] - 13618 +2026-02-23 07:02:42 [WARNING] - 2427 +2026-02-23 07:02:42 [DEBUG] - 6840 +2026-02-23 07:02:42 [CRITICAL] - 8403 +2026-02-23 07:02:42 [DEBUG] - 16428 +2026-02-23 07:02:42 [WARNING] - 15915 +2026-02-23 07:02:42 [CRITICAL] - 17024 +2026-02-23 07:02:42 [DEBUG] - 23840 +2026-02-23 07:02:42 [CRITICAL] - 19016 +2026-02-23 07:02:42 [CRITICAL] - 4853 +2026-02-23 07:02:42 [WARNING] - 2151 +2026-02-23 07:02:42 [WARNING] - 23901 +2026-02-23 07:02:42 [DEBUG] - 10931 +2026-02-23 07:02:42 [ERROR] Out of memory - 7123 +2026-02-23 07:02:42 [WARNING] - 7557 +2026-02-23 07:02:42 [WARNING] - 13543 +2026-02-23 07:02:42 [ERROR] Failed to connect - 32594 +2026-02-23 07:02:42 [WARNING] - 25117 +2026-02-23 07:02:42 [WARNING] - 4625 +2026-02-23 07:02:42 [INFO] - 19473 +2026-02-23 07:02:42 [WARNING] - 20175 +2026-02-23 07:02:42 [WARNING] - 20774 +2026-02-23 07:02:42 [DEBUG] - 19430 +2026-02-23 07:02:42 [CRITICAL] - 19967 +2026-02-23 07:02:42 [INFO] - 3083 +2026-02-23 07:02:42 [WARNING] - 18271 +2026-02-23 07:02:42 [WARNING] - 12956 +2026-02-23 07:02:42 [ERROR] Segmentation fault - 18451 +2026-02-23 07:02:42 [ERROR] Invalid input - 6823 +2026-02-23 07:02:42 [ERROR] Failed to connect - 20920 +2026-02-23 07:02:42 [CRITICAL] - 25897 +2026-02-23 07:02:42 [DEBUG] - 15079 +2026-02-23 07:02:42 [ERROR] Segmentation fault - 9100 +2026-02-23 07:02:42 [INFO] - 31205 +2026-02-23 07:02:42 [INFO] - 9184 +2026-02-23 07:02:42 [INFO] - 15127 +2026-02-23 07:02:42 [DEBUG] - 3028 +2026-02-23 07:02:42 [WARNING] - 13462 +2026-02-23 07:02:42 [CRITICAL] - 30019 +2026-02-23 07:02:42 [WARNING] - 477 +2026-02-23 07:02:42 [CRITICAL] - 16304 +2026-02-23 07:02:42 [DEBUG] - 9026 +2026-02-23 07:02:42 [DEBUG] - 10469 +2026-02-23 07:02:42 [WARNING] - 27694 +2026-02-23 07:02:42 [CRITICAL] - 26305 +2026-02-23 07:02:42 [CRITICAL] - 7601 +2026-02-23 07:02:42 [CRITICAL] - 12956 +2026-02-23 07:02:42 [CRITICAL] - 25465 +2026-02-23 07:02:42 [ERROR] Segmentation fault - 4741 +2026-02-23 07:02:42 [INFO] - 1181 +2026-02-23 07:02:42 [WARNING] - 7284 +2026-02-23 07:02:42 [INFO] - 10299 +2026-02-23 07:02:42 [DEBUG] - 30952 +2026-02-23 07:02:42 [CRITICAL] - 23872 +2026-02-23 07:02:42 [DEBUG] - 32002 +2026-02-23 07:02:42 [CRITICAL] - 7012 +2026-02-23 07:02:42 [CRITICAL] - 12451 +2026-02-23 07:02:42 [CRITICAL] - 4552 +2026-02-23 07:02:42 [CRITICAL] - 25774 +2026-02-23 07:02:42 [CRITICAL] - 11411 +2026-02-23 07:02:42 [DEBUG] - 13462 +2026-02-23 07:02:42 [CRITICAL] - 28646 +2026-02-23 07:02:42 [DEBUG] - 4520 +2026-02-23 07:02:42 [CRITICAL] - 10026 +2026-02-23 07:02:42 [DEBUG] - 27474 +2026-02-23 07:02:42 [WARNING] - 16443 +2026-02-23 07:02:42 [WARNING] - 18157 +2026-02-23 07:02:42 [ERROR] Disk full - 24477 +2026-02-23 07:02:42 [CRITICAL] - 14774 +2026-02-23 07:02:42 [ERROR] Segmentation fault - 16423 +2026-02-23 07:02:42 [INFO] - 30674 +2026-02-23 07:02:42 [DEBUG] - 1103 +2026-02-23 07:02:42 [CRITICAL] - 1437 +2026-02-23 07:02:42 [WARNING] - 29914 +2026-02-23 07:02:42 [DEBUG] - 1135 +2026-02-23 07:02:42 [CRITICAL] - 22306 +2026-02-23 07:02:42 [DEBUG] - 24525 +2026-02-23 07:02:42 [WARNING] - 16967 +2026-02-23 07:02:42 [ERROR] Invalid input - 14914 +2026-02-23 07:02:43 [CRITICAL] - 12450 +2026-02-23 07:02:43 [WARNING] - 28066 +2026-02-23 07:02:43 [ERROR] Disk full - 30011 +2026-02-23 07:02:43 [INFO] - 5262 +2026-02-23 07:02:43 [WARNING] - 25206 +2026-02-23 07:02:43 [CRITICAL] - 27979 +2026-02-23 07:02:43 [WARNING] - 25074 +2026-02-23 07:02:43 [WARNING] - 7948 +2026-02-23 07:02:43 [ERROR] Invalid input - 27726 +2026-02-23 07:02:43 [DEBUG] - 6214 +2026-02-23 07:02:43 [ERROR] Disk full - 2443 +2026-02-23 07:02:43 [INFO] - 1484 +2026-02-23 07:02:43 [ERROR] Invalid input - 6384 +2026-02-23 07:02:43 [CRITICAL] - 22638 +2026-02-23 07:02:43 [CRITICAL] - 24128 +2026-02-23 07:02:43 [WARNING] - 18718 +2026-02-23 07:02:43 [INFO] - 15097 +2026-02-23 07:02:43 [ERROR] Disk full - 32021 +2026-02-23 07:02:43 [CRITICAL] - 17823 +2026-02-23 07:02:43 [INFO] - 12626 +2026-02-23 07:02:43 [DEBUG] - 20832 +2026-02-23 07:02:43 [WARNING] - 1425 +2026-02-23 07:02:43 [WARNING] - 17417 +2026-02-23 07:02:43 [CRITICAL] - 27136 +2026-02-23 07:02:43 [WARNING] - 14972 +2026-02-23 07:02:43 [DEBUG] - 4644 +2026-02-23 07:02:43 [CRITICAL] - 12314 +2026-02-23 07:02:43 [WARNING] - 12921 +2026-02-23 07:02:43 [CRITICAL] - 18920 +2026-02-23 07:02:43 [DEBUG] - 25429 +2026-02-23 07:02:43 [INFO] - 8347 +2026-02-23 07:02:43 [ERROR] Segmentation fault - 30685 +2026-02-23 07:02:43 [ERROR] Disk full - 30769 +2026-02-23 07:02:43 [CRITICAL] - 7718 +2026-02-23 07:02:43 [ERROR] Segmentation fault - 23067 +2026-02-23 07:02:43 [CRITICAL] - 25232 +2026-02-23 07:02:43 [DEBUG] - 10019 +2026-02-23 07:02:43 [DEBUG] - 26012 +2026-02-23 07:02:43 [INFO] - 14281 +2026-02-23 07:02:43 [ERROR] Segmentation fault - 10342 +2026-02-23 07:02:43 [ERROR] Disk full - 19763 +2026-02-23 07:02:43 [WARNING] - 29351 +2026-02-23 07:02:43 [ERROR] Disk full - 8231 +2026-02-23 07:02:43 [WARNING] - 27551 +2026-02-23 07:02:43 [DEBUG] - 10827 +2026-02-23 07:02:43 [DEBUG] - 25112 +2026-02-23 07:02:43 [CRITICAL] - 4048 +2026-02-23 07:02:43 [INFO] - 26041 +2026-02-23 07:02:43 [DEBUG] - 25311 +2026-02-23 07:02:43 [WARNING] - 30300 +2026-02-23 07:02:43 [WARNING] - 26015 +2026-02-23 07:02:43 [DEBUG] - 7231 +2026-02-23 07:02:43 [ERROR] Failed to connect - 3234 +2026-02-23 07:02:43 [ERROR] Out of memory - 28070 +2026-02-23 07:02:43 [ERROR] Disk full - 20111 +2026-02-23 07:02:43 [DEBUG] - 30902 +2026-02-23 07:02:43 [DEBUG] - 27229 +2026-02-23 07:02:43 [DEBUG] - 7123 +2026-02-23 07:02:43 [CRITICAL] - 140 +2026-02-23 07:02:43 [DEBUG] - 23035 +2026-02-23 07:02:43 [INFO] - 27035 +2026-02-23 07:02:43 [DEBUG] - 31946 +2026-02-23 07:02:43 [CRITICAL] - 20917 +2026-02-23 07:02:43 [INFO] - 17051 +2026-02-23 07:02:43 [INFO] - 15840 +2026-02-23 07:02:43 [DEBUG] - 24483 +2026-02-23 07:02:43 [DEBUG] - 18785 +2026-02-23 07:02:43 [CRITICAL] - 23707 +2026-02-23 07:02:43 [DEBUG] - 13234 +2026-02-23 07:02:43 [WARNING] - 7611 +2026-02-23 07:02:43 [DEBUG] - 15093 +2026-02-23 07:02:43 [ERROR] Segmentation fault - 856 +2026-02-23 07:02:43 [INFO] - 26620 +2026-02-23 07:02:43 [INFO] - 26564 +2026-02-23 07:02:43 [WARNING] - 13712 +2026-02-23 07:02:43 [ERROR] Out of memory - 8210 +2026-02-23 07:02:43 [CRITICAL] - 20293 +2026-02-23 07:02:43 [WARNING] - 10872 +2026-02-23 07:02:43 [INFO] - 16516 +2026-02-23 07:02:43 [WARNING] - 17061 +2026-02-23 07:02:43 [DEBUG] - 17848 +2026-02-23 07:02:43 [ERROR] Failed to connect - 21343 +2026-02-23 07:02:43 [CRITICAL] - 29202 +2026-02-23 07:02:43 [WARNING] - 9145 +2026-02-23 07:02:43 [ERROR] Out of memory - 3990 +2026-02-23 07:02:43 [ERROR] Out of memory - 258 +2026-02-23 07:02:43 [INFO] - 6874 +2026-02-23 07:02:43 [INFO] - 3529 +2026-02-23 07:02:43 [ERROR] Out of memory - 3867 +2026-02-23 07:02:43 [INFO] - 10295 +2026-02-23 07:02:43 [INFO] - 11433 +2026-02-23 07:02:43 [ERROR] Out of memory - 3376 +2026-02-23 07:02:43 [DEBUG] - 9379 +2026-02-23 07:02:43 [WARNING] - 19263 +2026-02-23 07:02:43 [WARNING] - 24391 +2026-02-23 07:02:43 [ERROR] Out of memory - 13900 +2026-02-23 07:02:43 [ERROR] Invalid input - 25461 +2026-02-23 07:02:43 [CRITICAL] - 5531 +2026-02-23 07:02:43 [DEBUG] - 23206 +2026-02-23 07:02:43 [INFO] - 14904 +2026-02-23 07:02:43 [ERROR] Out of memory - 1707 +2026-02-23 07:02:43 [ERROR] Out of memory - 13280 +2026-02-23 07:02:43 [WARNING] - 18066 +2026-02-23 07:02:43 [DEBUG] - 31224 +2026-02-23 07:02:43 [ERROR] Invalid input - 31825 +2026-02-23 07:02:43 [INFO] - 6477 +2026-02-23 07:02:43 [ERROR] Invalid input - 20495 +2026-02-23 07:02:43 [WARNING] - 7849 +2026-02-23 07:02:43 [CRITICAL] - 3552 +2026-02-23 07:02:43 [DEBUG] - 11985 +2026-02-23 07:02:43 [WARNING] - 6730 +2026-02-23 07:02:43 [DEBUG] - 21515 +2026-02-23 07:02:43 [DEBUG] - 2209 +2026-02-23 07:02:43 [INFO] - 21674 +2026-02-23 07:02:43 [WARNING] - 18288 +2026-02-23 07:02:43 [DEBUG] - 31727 +2026-02-23 07:02:43 [WARNING] - 18751 +2026-02-23 07:02:43 [ERROR] Disk full - 29209 +2026-02-23 07:02:43 [INFO] - 21302 +2026-02-23 07:02:43 [CRITICAL] - 23287 +2026-02-23 07:02:43 [WARNING] - 10091 +2026-02-23 07:02:43 [WARNING] - 23786 +2026-02-23 07:02:43 [DEBUG] - 30752 +2026-02-23 07:02:43 [DEBUG] - 26568 +2026-02-23 07:02:43 [INFO] - 12317 +2026-02-23 07:02:43 [INFO] - 5316 +2026-02-23 07:02:43 [DEBUG] - 448 +2026-02-23 07:02:43 [ERROR] Disk full - 4368 +2026-02-23 07:02:43 [ERROR] Invalid input - 3366 +2026-02-23 07:02:43 [ERROR] Out of memory - 12970 +2026-02-23 07:02:43 [WARNING] - 3515 +2026-02-23 07:02:43 [DEBUG] - 3602 +2026-02-23 07:02:43 [DEBUG] - 22964 +2026-02-23 07:02:43 [WARNING] - 10998 +2026-02-23 07:02:43 [INFO] - 873 +2026-02-23 07:02:43 [INFO] - 26395 +2026-02-23 07:02:43 [CRITICAL] - 702 +2026-02-23 07:02:43 [INFO] - 7480 +2026-02-23 07:02:43 [CRITICAL] - 20337 +2026-02-23 07:02:43 [INFO] - 23702 +2026-02-23 07:02:43 [INFO] - 26561 +2026-02-23 07:02:43 [ERROR] Disk full - 29794 +2026-02-23 07:02:43 [WARNING] - 8443 +2026-02-23 07:02:43 [ERROR] Disk full - 16024 +2026-02-23 07:02:43 [DEBUG] - 26105 +2026-02-23 07:02:43 [CRITICAL] - 28557 +2026-02-23 07:02:43 [INFO] - 16492 +2026-02-23 07:02:43 [ERROR] Failed to connect - 9033 +2026-02-23 07:02:43 [WARNING] - 15042 +2026-02-23 07:02:43 [DEBUG] - 28000 +2026-02-23 07:02:43 [INFO] - 17474 +2026-02-23 07:02:43 [INFO] - 10014 +2026-02-23 07:02:43 [WARNING] - 11703 +2026-02-23 07:02:43 [WARNING] - 27867 +2026-02-23 07:02:43 [ERROR] Out of memory - 23858 +2026-02-23 07:02:43 [DEBUG] - 1715 +2026-02-23 07:02:43 [ERROR] Failed to connect - 6948 +2026-02-23 07:02:43 [CRITICAL] - 8815 +2026-02-23 07:02:43 [ERROR] Disk full - 7035 +2026-02-23 07:02:43 [CRITICAL] - 11269 +2026-02-23 07:02:43 [WARNING] - 17917 +2026-02-23 07:02:43 [CRITICAL] - 4141 +2026-02-23 07:02:43 [DEBUG] - 8736 +2026-02-23 07:02:43 [DEBUG] - 17589 +2026-02-23 07:02:43 [CRITICAL] - 30351 +2026-02-23 07:02:43 [ERROR] Disk full - 20848 +2026-02-23 07:02:43 [CRITICAL] - 18199 +2026-02-23 07:02:43 [ERROR] Failed to connect - 29101 +2026-02-23 07:02:43 [INFO] - 16504 +2026-02-23 07:02:43 [ERROR] Segmentation fault - 8587 +2026-02-23 07:02:43 [DEBUG] - 12952 +2026-02-23 07:02:43 [DEBUG] - 5315 +2026-02-23 07:02:43 [INFO] - 24530 +2026-02-23 07:02:43 [ERROR] Failed to connect - 15342 +2026-02-23 07:02:43 [WARNING] - 20732 +2026-02-23 07:02:43 [ERROR] Disk full - 32615 +2026-02-23 07:02:43 [DEBUG] - 17921 +2026-02-23 07:02:43 [CRITICAL] - 7737 +2026-02-23 07:02:43 [INFO] - 30665 +2026-02-23 07:02:43 [WARNING] - 28197 +2026-02-23 07:02:43 [INFO] - 30816 +2026-02-23 07:02:43 [CRITICAL] - 17970 +2026-02-23 07:02:43 [ERROR] Invalid input - 32609 +2026-02-23 07:02:43 [ERROR] Disk full - 733 +2026-02-23 07:02:43 [INFO] - 18183 +2026-02-23 07:02:43 [CRITICAL] - 6673 +2026-02-23 07:02:43 [WARNING] - 17495 +2026-02-23 07:02:43 [INFO] - 3306 +2026-02-23 07:02:43 [CRITICAL] - 25875 +2026-02-23 07:02:43 [WARNING] - 19130 +2026-02-23 07:02:43 [CRITICAL] - 17413 +2026-02-23 07:02:43 [DEBUG] - 27415 +2026-02-23 07:02:43 [DEBUG] - 3990 +2026-02-23 07:02:43 [DEBUG] - 22193 +2026-02-23 07:02:43 [ERROR] Failed to connect - 24490 +2026-02-23 07:02:43 [INFO] - 14380 +2026-02-23 07:02:43 [INFO] - 440 +2026-02-23 07:02:43 [INFO] - 21000 +2026-02-23 07:02:43 [WARNING] - 5535 +2026-02-23 07:02:43 [DEBUG] - 11851 +2026-02-23 07:02:43 [INFO] - 6677 +2026-02-23 07:02:43 [INFO] - 18975 +2026-02-23 07:02:43 [CRITICAL] - 7275 +2026-02-23 07:02:43 [WARNING] - 1958 +2026-02-23 07:02:43 [DEBUG] - 16796 +2026-02-23 07:02:43 [CRITICAL] - 8332 +2026-02-23 07:02:43 [DEBUG] - 26884 +2026-02-23 07:02:43 [ERROR] Segmentation fault - 4050 +2026-02-23 07:02:43 [WARNING] - 1504 +2026-02-23 07:02:43 [CRITICAL] - 9285 +2026-02-23 07:02:43 [CRITICAL] - 5671 +2026-02-23 07:02:43 [ERROR] Failed to connect - 24914 +2026-02-23 07:02:43 [DEBUG] - 17456 +2026-02-23 07:02:43 [CRITICAL] - 8532 +2026-02-23 07:02:43 [ERROR] Invalid input - 21425 +2026-02-23 07:02:43 [ERROR] Failed to connect - 31039 +2026-02-23 07:02:43 [CRITICAL] - 17149 +2026-02-23 07:02:43 [ERROR] Invalid input - 31754 +2026-02-23 07:02:43 [WARNING] - 15937 +2026-02-23 07:02:43 [INFO] - 5799 +2026-02-23 07:02:43 [WARNING] - 11237 +2026-02-23 07:02:43 [CRITICAL] - 8324 +2026-02-23 07:02:43 [CRITICAL] - 19846 +2026-02-23 07:02:43 [WARNING] - 25109 +2026-02-23 07:02:43 [INFO] - 6002 +2026-02-23 07:02:43 [DEBUG] - 13856 +2026-02-23 07:02:43 [DEBUG] - 30643 +2026-02-23 07:02:43 [DEBUG] - 3397 +2026-02-23 07:02:43 [INFO] - 28170 +2026-02-23 07:02:43 [DEBUG] - 11404 +2026-02-23 07:02:43 [CRITICAL] - 24126 +2026-02-23 07:02:43 [WARNING] - 15348 +2026-02-23 07:02:43 [ERROR] Out of memory - 21173 +2026-02-23 07:02:43 [ERROR] Failed to connect - 14355 +2026-02-23 07:02:43 [DEBUG] - 4748 +2026-02-23 07:02:43 [CRITICAL] - 21202 +2026-02-23 07:02:43 [INFO] - 1575 +2026-02-23 07:02:43 [INFO] - 3104 +2026-02-23 07:02:43 [DEBUG] - 13309 +2026-02-23 07:02:43 [ERROR] Invalid input - 12477 +2026-02-23 07:02:43 [INFO] - 409 +2026-02-23 07:02:43 [WARNING] - 9818 +2026-02-23 07:02:43 [DEBUG] - 8891 +2026-02-23 07:02:43 [CRITICAL] - 10255 +2026-02-23 07:02:43 [WARNING] - 5699 +2026-02-23 07:02:43 [DEBUG] - 3394 +2026-02-23 07:02:43 [CRITICAL] - 13690 +2026-02-23 07:02:43 [INFO] - 6617 +2026-02-23 07:02:43 [INFO] - 13069 +2026-02-23 07:02:43 [CRITICAL] - 23951 +2026-02-23 07:02:43 [WARNING] - 12186 +2026-02-23 07:02:43 [WARNING] - 11354 +2026-02-23 07:02:43 [WARNING] - 19749 +2026-02-23 07:02:43 [INFO] - 25744 +2026-02-23 07:02:43 [DEBUG] - 2630 +2026-02-23 07:02:43 [INFO] - 28871 +2026-02-23 07:02:43 [DEBUG] - 31909 +2026-02-23 07:02:43 [CRITICAL] - 20107 +2026-02-23 07:02:43 [DEBUG] - 26398 +2026-02-23 07:02:43 [INFO] - 11770 +2026-02-23 07:02:43 [INFO] - 22283 +2026-02-23 07:02:43 [INFO] - 24527 +2026-02-23 07:02:43 [DEBUG] - 11534 +2026-02-23 07:02:43 [ERROR] Segmentation fault - 421 +2026-02-23 07:02:43 [INFO] - 27786 +2026-02-23 07:02:43 [WARNING] - 31209 +2026-02-23 07:02:43 [CRITICAL] - 7073 +2026-02-23 07:02:43 [DEBUG] - 19681 +2026-02-23 07:02:43 [ERROR] Out of memory - 3049 +2026-02-23 07:02:43 [WARNING] - 24300 +2026-02-23 07:02:43 [ERROR] Out of memory - 28137 +2026-02-23 07:02:43 [INFO] - 10495 +2026-02-23 07:02:43 [CRITICAL] - 2748 +2026-02-23 07:02:43 [CRITICAL] - 26027 +2026-02-23 07:02:43 [CRITICAL] - 29953 +2026-02-23 07:02:43 [CRITICAL] - 26493 +2026-02-23 07:02:43 [INFO] - 32434 +2026-02-23 07:02:43 [WARNING] - 10873 +2026-02-23 07:02:43 [DEBUG] - 8269 +2026-02-23 07:02:43 [DEBUG] - 22046 +2026-02-23 07:02:43 [ERROR] Out of memory - 31261 +2026-02-23 07:02:43 [ERROR] Out of memory - 20557 +2026-02-23 07:02:43 [CRITICAL] - 2686 +2026-02-23 07:02:43 [WARNING] - 22062 +2026-02-23 07:02:43 [CRITICAL] - 8530 +2026-02-23 07:02:43 [INFO] - 21716 +2026-02-23 07:02:43 [ERROR] Segmentation fault - 29819 +2026-02-23 07:02:43 [INFO] - 8165 +2026-02-23 07:02:43 [ERROR] Failed to connect - 12456 +2026-02-23 07:02:43 [CRITICAL] - 22006 +2026-02-23 07:02:43 [CRITICAL] - 23077 +2026-02-23 07:02:43 [INFO] - 16983 +2026-02-23 07:02:43 [DEBUG] - 30821 +2026-02-23 07:02:43 [DEBUG] - 22018 +2026-02-23 07:02:43 [WARNING] - 11069 +2026-02-23 07:02:43 [INFO] - 287 +2026-02-23 07:02:43 [CRITICAL] - 27875 +2026-02-23 07:02:43 [CRITICAL] - 7289 +2026-02-23 07:02:43 [INFO] - 24721 +2026-02-23 07:02:43 [ERROR] Invalid input - 10641 +2026-02-23 07:02:43 [ERROR] Segmentation fault - 18028 +2026-02-23 07:02:43 [DEBUG] - 11409 +2026-02-23 07:02:43 [CRITICAL] - 8066 +2026-02-23 07:02:43 [CRITICAL] - 24237 +2026-02-23 07:02:43 [ERROR] Out of memory - 3007 +2026-02-23 07:02:43 [ERROR] Out of memory - 13325 +2026-02-23 07:02:43 [DEBUG] - 22540 +2026-02-23 07:02:43 [ERROR] Invalid input - 23747 +2026-02-23 07:02:43 [ERROR] Out of memory - 6181 +2026-02-23 07:02:43 [CRITICAL] - 3113 +2026-02-23 07:02:43 [CRITICAL] - 26954 +2026-02-23 07:02:43 [DEBUG] - 17053 +2026-02-23 07:02:43 [DEBUG] - 19642 +2026-02-23 07:02:43 [ERROR] Invalid input - 21714 +2026-02-23 07:02:43 [ERROR] Failed to connect - 8492 +2026-02-23 07:02:43 [CRITICAL] - 3562 +2026-02-23 07:02:43 [CRITICAL] - 27824 +2026-02-23 07:02:43 [ERROR] Segmentation fault - 4877 +2026-02-23 07:02:43 [DEBUG] - 5885 +2026-02-23 07:02:43 [CRITICAL] - 9936 +2026-02-23 07:02:43 [INFO] - 6785 +2026-02-23 07:02:43 [DEBUG] - 21069 +2026-02-23 07:02:43 [ERROR] Failed to connect - 20369 +2026-02-23 07:02:43 [DEBUG] - 6417 +2026-02-23 07:02:43 [WARNING] - 13223 +2026-02-23 07:02:43 [INFO] - 21304 +2026-02-23 07:02:43 [ERROR] Failed to connect - 20592 +2026-02-23 07:02:43 [CRITICAL] - 8888 +2026-02-23 07:02:43 [DEBUG] - 15333 +2026-02-23 07:02:43 [CRITICAL] - 32202 +2026-02-23 07:02:43 [INFO] - 21061 +2026-02-23 07:02:43 [INFO] - 16342 +2026-02-23 07:02:43 [INFO] - 17709 +2026-02-23 07:02:43 [ERROR] Out of memory - 29812 +2026-02-23 07:02:43 [CRITICAL] - 9288 +2026-02-23 07:02:43 [ERROR] Out of memory - 9443 +2026-02-23 07:02:43 [CRITICAL] - 10739 +2026-02-23 07:02:43 [ERROR] Segmentation fault - 1573 +2026-02-23 07:02:43 [CRITICAL] - 32632 +2026-02-23 07:02:43 [INFO] - 28141 +2026-02-23 07:02:43 [INFO] - 8410 +2026-02-23 07:02:43 [ERROR] Failed to connect - 10638 +2026-02-23 07:02:43 [INFO] - 8893 +2026-02-23 07:02:43 [ERROR] Failed to connect - 26973 +2026-02-23 07:02:43 [DEBUG] - 19492 +2026-02-23 07:02:43 [ERROR] Failed to connect - 23480 +2026-02-23 07:02:43 [WARNING] - 6221 +2026-02-23 07:02:43 [WARNING] - 583 +2026-02-23 07:02:43 [INFO] - 31456 +2026-02-23 07:02:43 [ERROR] Segmentation fault - 27033 +2026-02-23 07:02:43 [WARNING] - 26191 +2026-02-23 07:02:43 [ERROR] Failed to connect - 20614 +2026-02-23 07:02:43 [INFO] - 12117 +2026-02-23 07:02:43 [CRITICAL] - 21285 +2026-02-23 07:02:43 [CRITICAL] - 22106 +2026-02-23 07:02:43 [ERROR] Out of memory - 19272 +2026-02-23 07:02:43 [DEBUG] - 7276 +2026-02-23 07:02:43 [ERROR] Failed to connect - 22863 +2026-02-23 07:02:43 [CRITICAL] - 21311 +2026-02-23 07:02:43 [DEBUG] - 12894 +2026-02-23 07:02:43 [DEBUG] - 1308 +2026-02-23 07:02:43 [CRITICAL] - 19540 +2026-02-23 07:02:43 [ERROR] Segmentation fault - 28345 +2026-02-23 07:02:43 [ERROR] Invalid input - 28125 +2026-02-23 07:02:43 [CRITICAL] - 25062 +2026-02-23 07:02:43 [ERROR] Failed to connect - 26587 +2026-02-23 07:02:43 [CRITICAL] - 16249 +2026-02-23 07:02:43 [CRITICAL] - 26092 +2026-02-23 07:02:43 [CRITICAL] - 25110 +2026-02-23 07:02:43 [WARNING] - 27011 +2026-02-23 07:02:43 [ERROR] Invalid input - 28127 +2026-02-23 07:02:43 [INFO] - 12315 +2026-02-23 07:02:43 [WARNING] - 27890 +2026-02-23 07:02:43 [INFO] - 8051 +2026-02-23 07:02:43 [DEBUG] - 18395 +2026-02-23 07:02:43 [CRITICAL] - 28985 +2026-02-23 07:02:43 [WARNING] - 17138 +2026-02-23 07:02:43 [CRITICAL] - 20604 +2026-02-23 07:02:43 [CRITICAL] - 32094 +2026-02-23 07:02:43 [INFO] - 15885 +2026-02-23 07:02:43 [INFO] - 8636 +2026-02-23 07:02:43 [DEBUG] - 32322 +2026-02-23 07:02:43 [CRITICAL] - 20566 +2026-02-23 07:02:43 [ERROR] Out of memory - 27773 +2026-02-23 07:02:43 [ERROR] Failed to connect - 16194 +2026-02-23 07:02:43 [ERROR] Failed to connect - 12948 +2026-02-23 07:02:43 [ERROR] Segmentation fault - 5553 +2026-02-23 07:02:43 [WARNING] - 19311 +2026-02-23 07:02:43 [WARNING] - 11463 +2026-02-23 07:02:43 [INFO] - 2810 +2026-02-23 07:02:43 [ERROR] Disk full - 10583 +2026-02-23 07:02:43 [WARNING] - 23633 +2026-02-23 07:02:43 [WARNING] - 27563 +2026-02-23 07:02:43 [CRITICAL] - 14534 +2026-02-23 07:02:43 [INFO] - 13219 +2026-02-23 07:02:43 [ERROR] Invalid input - 711 +2026-02-23 07:02:43 [WARNING] - 2390 +2026-02-23 07:02:43 [CRITICAL] - 16996 +2026-02-23 07:02:43 [ERROR] Invalid input - 4680 +2026-02-23 07:02:43 [DEBUG] - 27886 +2026-02-23 07:02:43 [ERROR] Disk full - 14360 +2026-02-23 07:02:43 [INFO] - 15248 +2026-02-23 07:02:43 [INFO] - 16382 +2026-02-23 07:02:43 [CRITICAL] - 15516 +2026-02-23 07:02:43 [WARNING] - 28553 +2026-02-23 07:02:43 [DEBUG] - 16755 +2026-02-23 07:02:43 [INFO] - 18427 +2026-02-23 07:02:43 [ERROR] Out of memory - 4421 +2026-02-23 07:02:43 [INFO] - 2580 +2026-02-23 07:02:43 [CRITICAL] - 2736 +2026-02-23 07:02:43 [ERROR] Segmentation fault - 12500 +2026-02-23 07:02:43 [ERROR] Out of memory - 7598 +2026-02-23 07:02:43 [INFO] - 15065 +2026-02-23 07:02:43 [WARNING] - 8204 +2026-02-23 07:02:43 [DEBUG] - 23016 +2026-02-23 07:02:43 [WARNING] - 16586 +2026-02-23 07:02:43 [INFO] - 25863 +2026-02-23 07:02:43 [INFO] - 7701 +2026-02-23 07:02:43 [ERROR] Failed to connect - 13265 +2026-02-23 07:02:43 [CRITICAL] - 14129 +2026-02-23 07:02:43 [CRITICAL] - 15345 +2026-02-23 07:02:43 [ERROR] Out of memory - 17582 +2026-02-23 07:02:43 [DEBUG] - 26683 +2026-02-23 07:02:43 [CRITICAL] - 20377 +2026-02-23 07:02:43 [DEBUG] - 23614 +2026-02-23 07:02:43 [CRITICAL] - 4840 +2026-02-23 07:02:43 [INFO] - 13373 +2026-02-23 07:02:43 [ERROR] Disk full - 15504 +2026-02-23 07:02:43 [CRITICAL] - 17140 +2026-02-23 07:02:43 [DEBUG] - 15751 +2026-02-23 07:02:43 [DEBUG] - 17381 +2026-02-23 07:02:43 [WARNING] - 32388 +2026-02-23 07:02:43 [ERROR] Out of memory - 29152 +2026-02-23 07:02:43 [INFO] - 7335 +2026-02-23 07:02:43 [CRITICAL] - 24364 +2026-02-23 07:02:43 [DEBUG] - 28665 +2026-02-23 07:02:43 [INFO] - 27103 +2026-02-23 07:02:43 [INFO] - 29607 +2026-02-23 07:02:43 [DEBUG] - 12147 +2026-02-23 07:02:43 [WARNING] - 24417 +2026-02-23 07:02:43 [DEBUG] - 21566 +2026-02-23 07:02:43 [DEBUG] - 23108 +2026-02-23 07:02:43 [INFO] - 17017 +2026-02-23 07:02:43 [CRITICAL] - 21618 +2026-02-23 07:02:43 [WARNING] - 15755 +2026-02-23 07:02:43 [CRITICAL] - 2556 +2026-02-23 07:02:43 [DEBUG] - 13301 +2026-02-23 07:02:43 [INFO] - 32318 +2026-02-23 07:02:43 [CRITICAL] - 1700 +2026-02-23 07:02:43 [WARNING] - 12244 +2026-02-23 07:02:43 [INFO] - 29530 +2026-02-23 07:02:43 [DEBUG] - 18836 +2026-02-23 07:02:43 [DEBUG] - 4110 +2026-02-23 07:02:43 [WARNING] - 19787 +2026-02-23 07:02:43 [DEBUG] - 24071 +2026-02-23 07:02:43 [INFO] - 9473 +2026-02-23 07:02:43 [DEBUG] - 31390 +2026-02-23 07:02:43 [INFO] - 6779 +2026-02-23 07:02:43 [WARNING] - 27960 +2026-02-23 07:02:43 [DEBUG] - 3554 +2026-02-23 07:02:43 [WARNING] - 7796 +2026-02-23 07:02:43 [CRITICAL] - 25401 +2026-02-23 07:02:43 [DEBUG] - 9186 +2026-02-23 07:02:43 [WARNING] - 11891 +2026-02-23 07:02:43 [ERROR] Segmentation fault - 23275 +2026-02-23 07:02:43 [DEBUG] - 15832 +2026-02-23 07:02:43 [WARNING] - 32742 +2026-02-23 07:02:43 [CRITICAL] - 25759 +2026-02-23 07:02:43 [ERROR] Segmentation fault - 4850 +2026-02-23 07:02:43 [INFO] - 4125 +2026-02-23 07:02:43 [WARNING] - 18951 +2026-02-23 07:02:43 [ERROR] Invalid input - 25801 +2026-02-23 07:02:43 [ERROR] Disk full - 25129 +2026-02-23 07:02:43 [INFO] - 7207 +2026-02-23 07:02:43 [ERROR] Invalid input - 4011 +2026-02-23 07:02:43 [WARNING] - 12593 +2026-02-23 07:02:43 [WARNING] - 9530 +2026-02-23 07:02:43 [CRITICAL] - 6377 +2026-02-23 07:02:43 [WARNING] - 3349 +2026-02-23 07:02:43 [CRITICAL] - 9874 +2026-02-23 07:02:43 [CRITICAL] - 30902 +2026-02-23 07:02:43 [CRITICAL] - 7303 +2026-02-23 07:02:43 [CRITICAL] - 356 +2026-02-23 07:02:43 [ERROR] Invalid input - 3158 +2026-02-23 07:02:43 [ERROR] Disk full - 1653 +2026-02-23 07:02:43 [INFO] - 9186 +2026-02-23 07:02:43 [DEBUG] - 105 +2026-02-23 07:02:43 [INFO] - 10277 +2026-02-23 07:02:43 [INFO] - 26497 +2026-02-23 07:02:43 [CRITICAL] - 29338 +2026-02-23 07:02:43 [DEBUG] - 216 +2026-02-23 07:02:43 [CRITICAL] - 8035 +2026-02-23 07:02:43 [ERROR] Out of memory - 10662 +2026-02-23 07:02:43 [DEBUG] - 20196 +2026-02-23 07:02:43 [CRITICAL] - 16635 +2026-02-23 07:02:43 [INFO] - 18539 +2026-02-23 07:02:43 [CRITICAL] - 4639 +2026-02-23 07:02:43 [WARNING] - 22301 +2026-02-23 07:02:43 [ERROR] Out of memory - 22592 +2026-02-23 07:02:43 [CRITICAL] - 27608 +2026-02-23 07:02:43 [CRITICAL] - 2546 +2026-02-23 07:02:43 [INFO] - 1464 +2026-02-23 07:02:43 [INFO] - 19112 +2026-02-23 07:02:43 [ERROR] Invalid input - 4225 +2026-02-23 07:02:43 [INFO] - 30083 +2026-02-23 07:02:43 [CRITICAL] - 25022 +2026-02-23 07:02:43 [INFO] - 30349 +2026-02-23 07:02:43 [ERROR] Failed to connect - 23272 +2026-02-23 07:02:43 [INFO] - 29791 +2026-02-23 07:02:43 [DEBUG] - 25989 +2026-02-23 07:02:43 [CRITICAL] - 16394 +2026-02-23 07:02:43 [CRITICAL] - 11749 +2026-02-23 07:02:43 [CRITICAL] - 12681 +2026-02-23 07:02:43 [INFO] - 16911 +2026-02-23 07:02:43 [INFO] - 20209 +2026-02-23 07:02:43 [DEBUG] - 25539 +2026-02-23 07:02:43 [DEBUG] - 6573 +2026-02-23 07:02:43 [INFO] - 16355 +2026-02-23 07:02:43 [DEBUG] - 29177 +2026-02-23 07:02:43 [ERROR] Invalid input - 30969 +2026-02-23 07:02:43 [INFO] - 12859 +2026-02-23 07:02:43 [DEBUG] - 24358 +2026-02-23 07:02:43 [ERROR] Segmentation fault - 4726 +2026-02-23 07:02:43 [CRITICAL] - 10473 +2026-02-23 07:02:43 [INFO] - 7734 +2026-02-23 07:02:43 [ERROR] Invalid input - 1543 +2026-02-23 07:02:43 [CRITICAL] - 4756 +2026-02-23 07:02:43 [CRITICAL] - 4616 +2026-02-23 07:02:43 [CRITICAL] - 12415 +2026-02-23 07:02:43 [CRITICAL] - 26751 +2026-02-23 07:02:43 [DEBUG] - 30683 +2026-02-23 07:02:43 [WARNING] - 45 +2026-02-23 07:02:43 [INFO] - 26606 +2026-02-23 07:02:43 [ERROR] Out of memory - 24909 +2026-02-23 07:02:43 [ERROR] Invalid input - 20807 +2026-02-23 07:02:43 [WARNING] - 20189 +2026-02-23 07:02:43 [WARNING] - 27058 +2026-02-23 07:02:43 [CRITICAL] - 11511 +2026-02-23 07:02:43 [ERROR] Disk full - 4639 +2026-02-23 07:02:43 [ERROR] Invalid input - 19332 +2026-02-23 07:02:43 [DEBUG] - 8187 +2026-02-23 07:02:43 [DEBUG] - 10412 +2026-02-23 07:02:43 [ERROR] Out of memory - 5103 +2026-02-23 07:02:43 [DEBUG] - 28737 +2026-02-23 07:02:43 [ERROR] Disk full - 19065 +2026-02-23 07:02:43 [INFO] - 14339 +2026-02-23 07:02:43 [WARNING] - 22177 +2026-02-23 07:02:43 [CRITICAL] - 6461 +2026-02-23 07:02:43 [INFO] - 23056 +2026-02-23 07:02:43 [DEBUG] - 21825 +2026-02-23 07:02:43 [CRITICAL] - 20894 +2026-02-23 07:02:43 [CRITICAL] - 7574 +2026-02-23 07:02:43 [WARNING] - 18540 +2026-02-23 07:02:43 [DEBUG] - 30141 +2026-02-23 07:02:43 [WARNING] - 4208 +2026-02-23 07:02:43 [WARNING] - 32115 +2026-02-23 07:02:43 [ERROR] Out of memory - 7541 +2026-02-23 07:02:43 [ERROR] Disk full - 12635 +2026-02-23 07:02:43 [DEBUG] - 16741 +2026-02-23 07:02:43 [CRITICAL] - 12228 +2026-02-23 07:02:43 [ERROR] Disk full - 1257 +2026-02-23 07:02:43 [DEBUG] - 8263 +2026-02-23 07:02:43 [DEBUG] - 32088 +2026-02-23 07:02:43 [DEBUG] - 11435 +2026-02-23 07:02:43 [WARNING] - 30019 +2026-02-23 07:02:43 [WARNING] - 9526 +2026-02-23 07:02:43 [WARNING] - 13520 +2026-02-23 07:02:43 [ERROR] Out of memory - 23833 +2026-02-23 07:02:43 [DEBUG] - 2318 +2026-02-23 07:02:43 [INFO] - 1861 +2026-02-23 07:02:43 [CRITICAL] - 27050 +2026-02-23 07:02:43 [WARNING] - 14534 +2026-02-23 07:02:43 [ERROR] Segmentation fault - 2236 +2026-02-23 07:02:43 [ERROR] Invalid input - 14485 +2026-02-23 07:02:43 [CRITICAL] - 23602 +2026-02-23 07:02:43 [ERROR] Out of memory - 18551 +2026-02-23 07:02:43 [WARNING] - 2657 +2026-02-23 07:02:43 [CRITICAL] - 22416 +2026-02-23 07:02:43 [ERROR] Out of memory - 5476 +2026-02-23 07:02:43 [ERROR] Segmentation fault - 1631 +2026-02-23 07:02:43 [DEBUG] - 3291 +2026-02-23 07:02:43 [INFO] - 28708 +2026-02-23 07:02:43 [ERROR] Disk full - 20453 +2026-02-23 07:02:43 [DEBUG] - 25619 +2026-02-23 07:02:43 [INFO] - 4124 +2026-02-23 07:02:43 [DEBUG] - 31832 +2026-02-23 07:02:43 [INFO] - 31699 +2026-02-23 07:02:43 [WARNING] - 26595 +2026-02-23 07:02:43 [WARNING] - 22321 +2026-02-23 07:02:43 [WARNING] - 28420 +2026-02-23 07:02:43 [INFO] - 20233 +2026-02-23 07:02:43 [ERROR] Segmentation fault - 32410 +2026-02-23 07:02:43 [INFO] - 17998 +2026-02-23 07:02:43 [DEBUG] - 21568 +2026-02-23 07:02:43 [DEBUG] - 3585 +2026-02-23 07:02:43 [DEBUG] - 7537 +2026-02-23 07:02:43 [CRITICAL] - 11568 +2026-02-23 07:02:43 [ERROR] Failed to connect - 6886 +2026-02-23 07:02:43 [DEBUG] - 1467 +2026-02-23 07:02:43 [DEBUG] - 3389 +2026-02-23 07:02:43 [DEBUG] - 1091 +2026-02-23 07:02:43 [DEBUG] - 9120 +2026-02-23 07:02:43 [CRITICAL] - 11942 +2026-02-23 07:02:43 [INFO] - 21318 +2026-02-23 07:02:43 [DEBUG] - 20397 +2026-02-23 07:02:43 [INFO] - 27611 +2026-02-23 07:02:43 [ERROR] Out of memory - 30457 +2026-02-23 07:02:43 [DEBUG] - 13662 +2026-02-23 07:02:43 [INFO] - 14973 +2026-02-23 07:02:43 [ERROR] Invalid input - 13896 +2026-02-23 07:02:43 [CRITICAL] - 16140 +2026-02-23 07:02:43 [WARNING] - 17063 +2026-02-23 07:02:43 [ERROR] Invalid input - 27482 +2026-02-23 07:02:43 [WARNING] - 13130 +2026-02-23 07:02:43 [DEBUG] - 6424 +2026-02-23 07:02:43 [WARNING] - 8412 +2026-02-23 07:02:43 [CRITICAL] - 26567 +2026-02-23 07:02:43 [WARNING] - 18303 +2026-02-23 07:02:43 [DEBUG] - 22459 +2026-02-23 07:02:43 [ERROR] Segmentation fault - 16262 +2026-02-23 07:02:43 [INFO] - 17873 +2026-02-23 07:02:43 [DEBUG] - 8719 +2026-02-23 07:02:43 [ERROR] Invalid input - 20943 +2026-02-23 07:02:43 [CRITICAL] - 30367 +2026-02-23 07:02:43 [ERROR] Disk full - 2533 +2026-02-23 07:02:43 [WARNING] - 22053 +2026-02-23 07:02:43 [INFO] - 760 +2026-02-23 07:02:43 [ERROR] Disk full - 28860 +2026-02-23 07:02:43 [DEBUG] - 20873 +2026-02-23 07:02:43 [DEBUG] - 4562 +2026-02-23 07:02:43 [WARNING] - 23454 +2026-02-23 07:02:43 [DEBUG] - 30287 +2026-02-23 07:02:43 [CRITICAL] - 820 +2026-02-23 07:02:43 [DEBUG] - 29363 +2026-02-23 07:02:43 [ERROR] Segmentation fault - 5215 +2026-02-23 07:02:43 [WARNING] - 6678 +2026-02-23 07:02:43 [ERROR] Segmentation fault - 6922 +2026-02-23 07:02:43 [ERROR] Invalid input - 1843 +2026-02-23 07:02:43 [CRITICAL] - 12668 +2026-02-23 07:02:43 [DEBUG] - 16000 +2026-02-23 07:02:43 [INFO] - 5464 +2026-02-23 07:02:43 [CRITICAL] - 5331 +2026-02-23 07:02:43 [ERROR] Out of memory - 17877 +2026-02-23 07:02:43 [WARNING] - 20629 +2026-02-23 07:02:43 [DEBUG] - 19058 +2026-02-23 07:02:43 [WARNING] - 19619 +2026-02-23 07:02:43 [WARNING] - 13049 +2026-02-23 07:02:43 [INFO] - 10593 +2026-02-23 07:02:43 [DEBUG] - 15145 +2026-02-23 07:02:43 [DEBUG] - 20458 +2026-02-23 07:02:43 [WARNING] - 14828 +2026-02-23 07:02:43 [DEBUG] - 22409 +2026-02-23 07:02:43 [ERROR] Segmentation fault - 15397 +2026-02-23 07:02:43 [CRITICAL] - 30550 +2026-02-23 07:02:43 [ERROR] Out of memory - 6865 +2026-02-23 07:02:43 [WARNING] - 4640 +2026-02-23 07:02:43 [ERROR] Disk full - 6977 +2026-02-23 07:02:43 [WARNING] - 8289 +2026-02-23 07:02:43 [ERROR] Out of memory - 250 +2026-02-23 07:02:43 [ERROR] Out of memory - 27836 +2026-02-23 07:02:43 [ERROR] Invalid input - 27914 +2026-02-23 07:02:43 [WARNING] - 25448 +2026-02-23 07:02:43 [CRITICAL] - 18375 +2026-02-23 07:02:43 [CRITICAL] - 13315 +2026-02-23 07:02:43 [INFO] - 14449 +2026-02-23 07:02:43 [ERROR] Invalid input - 23505 +2026-02-23 07:02:43 [CRITICAL] - 3037 +2026-02-23 07:02:43 [DEBUG] - 30106 +2026-02-23 07:02:43 [WARNING] - 1005 +2026-02-23 07:02:43 [CRITICAL] - 6352 +2026-02-23 07:02:43 [INFO] - 10109 +2026-02-23 07:02:43 [ERROR] Out of memory - 31481 +2026-02-23 07:02:43 [WARNING] - 27563 +2026-02-23 07:02:43 [WARNING] - 21756 +2026-02-23 07:02:43 [INFO] - 14942 +2026-02-23 07:02:43 [CRITICAL] - 9375 +2026-02-23 07:02:43 [WARNING] - 22842 +2026-02-23 07:02:43 [WARNING] - 5550 +2026-02-23 07:02:43 [ERROR] Disk full - 24365 +2026-02-23 07:02:43 [WARNING] - 32520 +2026-02-23 07:02:43 [DEBUG] - 18839 +2026-02-23 07:02:43 [INFO] - 19418 +2026-02-23 07:02:43 [CRITICAL] - 1994 +2026-02-23 07:02:43 [INFO] - 17638 +2026-02-23 07:02:43 [CRITICAL] - 19417 +2026-02-23 07:02:43 [INFO] - 7063 +2026-02-23 07:02:43 [CRITICAL] - 14149 +2026-02-23 07:02:43 [WARNING] - 2487 +2026-02-23 07:02:43 [CRITICAL] - 19749 +2026-02-23 07:02:43 [DEBUG] - 17344 +2026-02-23 07:02:43 [DEBUG] - 28578 +2026-02-23 07:02:43 [INFO] - 247 +2026-02-23 07:02:43 [CRITICAL] - 31621 +2026-02-23 07:02:43 [WARNING] - 688 +2026-02-23 07:02:43 [DEBUG] - 31339 +2026-02-23 07:02:43 [INFO] - 1050 +2026-02-23 07:02:43 [ERROR] Out of memory - 14228 +2026-02-23 07:02:43 [INFO] - 22063 +2026-02-23 07:02:43 [INFO] - 26986 +2026-02-23 07:02:43 [ERROR] Segmentation fault - 29828 +2026-02-23 07:02:43 [CRITICAL] - 19640 +2026-02-23 07:02:43 [WARNING] - 8633 +2026-02-23 07:02:43 [WARNING] - 12685 +2026-02-23 07:02:43 [WARNING] - 6957 +2026-02-23 07:02:43 [INFO] - 21548 +2026-02-23 07:02:43 [DEBUG] - 24002 +2026-02-23 07:02:43 [DEBUG] - 20484 +2026-02-23 07:02:43 [CRITICAL] - 13392 +2026-02-23 07:02:43 [CRITICAL] - 32328 +2026-02-23 07:02:43 [INFO] - 24061 +2026-02-23 07:02:43 [DEBUG] - 5415 +2026-02-23 07:02:43 [WARNING] - 22694 +2026-02-23 07:02:43 [CRITICAL] - 11868 +2026-02-23 07:02:43 [DEBUG] - 29994 +2026-02-23 07:02:43 [DEBUG] - 5315 +2026-02-23 07:02:43 [WARNING] - 15485 +2026-02-23 07:02:43 [CRITICAL] - 19882 +2026-02-23 07:02:43 [WARNING] - 10867 +2026-02-23 07:02:43 [WARNING] - 22841 +2026-02-23 07:02:43 [WARNING] - 11997 +2026-02-23 07:02:43 [DEBUG] - 29873 +2026-02-23 07:02:43 [ERROR] Disk full - 32723 +2026-02-23 07:02:43 [INFO] - 24493 +2026-02-23 07:02:43 [DEBUG] - 16076 +2026-02-23 07:02:43 [CRITICAL] - 32118 +2026-02-23 07:02:43 [WARNING] - 6406 +2026-02-23 07:02:43 [WARNING] - 4742 +2026-02-23 07:02:43 [ERROR] Segmentation fault - 20417 +2026-02-23 07:02:43 [ERROR] Disk full - 11283 +2026-02-23 07:02:43 [ERROR] Disk full - 12576 +2026-02-23 07:02:43 [INFO] - 32679 +2026-02-23 07:02:43 [WARNING] - 29316 +2026-02-23 07:02:43 [CRITICAL] - 23218 +2026-02-23 07:02:43 [DEBUG] - 19320 +2026-02-23 07:02:43 [INFO] - 19176 +2026-02-23 07:02:43 [INFO] - 10397 +2026-02-23 07:02:43 [CRITICAL] - 25912 +2026-02-23 07:02:43 [INFO] - 29837 +2026-02-23 07:02:43 [WARNING] - 14281 +2026-02-23 07:02:43 [WARNING] - 13570 +2026-02-23 07:02:43 [WARNING] - 14891 +2026-02-23 07:02:43 [DEBUG] - 503 +2026-02-23 07:02:43 [DEBUG] - 15284 +2026-02-23 07:02:43 [ERROR] Out of memory - 22254 +2026-02-23 07:02:43 [ERROR] Out of memory - 21952 +2026-02-23 07:02:43 [ERROR] Out of memory - 15161 +2026-02-23 07:02:43 [CRITICAL] - 5919 +2026-02-23 07:02:43 [INFO] - 14280 +2026-02-23 07:02:43 [DEBUG] - 1046 +2026-02-23 07:02:43 [WARNING] - 11348 +2026-02-23 07:02:43 [ERROR] Failed to connect - 7069 +2026-02-23 07:02:43 [DEBUG] - 26535 +2026-02-23 07:02:44 [WARNING] - 11955 +2026-02-23 07:02:44 [DEBUG] - 1739 +2026-02-23 07:02:44 [WARNING] - 28690 +2026-02-23 07:02:44 [DEBUG] - 2497 +2026-02-23 07:02:44 [ERROR] Out of memory - 12088 +2026-02-23 07:02:44 [CRITICAL] - 6472 +2026-02-23 07:02:44 [ERROR] Disk full - 27716 +2026-02-23 07:02:44 [WARNING] - 12044 +2026-02-23 07:02:44 [ERROR] Invalid input - 5662 +2026-02-23 07:02:44 [WARNING] - 26128 +2026-02-23 07:02:44 [WARNING] - 10857 +2026-02-23 07:02:44 [DEBUG] - 26535 +2026-02-23 07:02:44 [DEBUG] - 6133 +2026-02-23 07:02:44 [CRITICAL] - 5051 +2026-02-23 07:02:44 [ERROR] Out of memory - 1858 +2026-02-23 07:02:44 [DEBUG] - 2959 +2026-02-23 07:02:44 [WARNING] - 20741 +2026-02-23 07:02:44 [CRITICAL] - 20507 +2026-02-23 07:02:44 [ERROR] Out of memory - 20229 +2026-02-23 07:02:44 [WARNING] - 27331 +2026-02-23 07:02:44 [ERROR] Disk full - 7012 +2026-02-23 07:02:44 [ERROR] Failed to connect - 11666 +2026-02-23 07:02:44 [CRITICAL] - 31412 +2026-02-23 07:02:44 [DEBUG] - 10992 +2026-02-23 07:02:44 [DEBUG] - 2504 +2026-02-23 07:02:44 [DEBUG] - 18304 +2026-02-23 07:02:44 [WARNING] - 314 +2026-02-23 07:02:44 [INFO] - 26832 +2026-02-23 07:02:44 [CRITICAL] - 7947 +2026-02-23 07:02:44 [INFO] - 24052 +2026-02-23 07:02:44 [WARNING] - 6614 +2026-02-23 07:02:44 [INFO] - 12809 +2026-02-23 07:02:44 [WARNING] - 13333 +2026-02-23 07:02:44 [CRITICAL] - 10832 +2026-02-23 07:02:44 [CRITICAL] - 9453 +2026-02-23 07:02:44 [CRITICAL] - 12560 +2026-02-23 07:02:44 [WARNING] - 6454 +2026-02-23 07:02:44 [INFO] - 18959 +2026-02-23 07:02:44 [ERROR] Invalid input - 27768 +2026-02-23 07:02:44 [DEBUG] - 23380 +2026-02-23 07:02:44 [CRITICAL] - 1722 +2026-02-23 07:02:44 [DEBUG] - 21090 +2026-02-23 07:02:44 [CRITICAL] - 15247 +2026-02-23 07:02:44 [CRITICAL] - 16574 +2026-02-23 07:02:44 [CRITICAL] - 32653 +2026-02-23 07:02:44 [CRITICAL] - 22491 +2026-02-23 07:02:44 [ERROR] Invalid input - 8840 +2026-02-23 07:02:44 [CRITICAL] - 16053 +2026-02-23 07:02:44 [WARNING] - 14170 +2026-02-23 07:02:44 [INFO] - 29564 +2026-02-23 07:02:44 [CRITICAL] - 14997 +2026-02-23 07:02:44 [ERROR] Segmentation fault - 14596 +2026-02-23 07:02:44 [DEBUG] - 11686 +2026-02-23 07:02:44 [WARNING] - 6687 +2026-02-23 07:02:44 [INFO] - 27014 +2026-02-23 07:02:44 [WARNING] - 7215 +2026-02-23 07:02:44 [DEBUG] - 3419 +2026-02-23 07:02:44 [WARNING] - 16076 +2026-02-23 07:02:44 [ERROR] Invalid input - 18802 +2026-02-23 07:02:44 [INFO] - 13193 +2026-02-23 07:02:44 [INFO] - 9614 +2026-02-23 07:02:44 [CRITICAL] - 12889 +2026-02-23 07:02:44 [INFO] - 25926 +2026-02-23 07:02:44 [WARNING] - 18548 +2026-02-23 07:02:44 [WARNING] - 6961 +2026-02-23 07:02:44 [INFO] - 12002 +2026-02-23 07:02:44 [CRITICAL] - 22399 +2026-02-23 07:02:44 [INFO] - 28327 +2026-02-23 07:02:44 [DEBUG] - 14880 +2026-02-23 07:02:44 [CRITICAL] - 17786 +2026-02-23 07:02:44 [DEBUG] - 3044 +2026-02-23 07:02:44 [WARNING] - 20638 +2026-02-23 07:02:44 [ERROR] Segmentation fault - 31920 +2026-02-23 07:02:44 [WARNING] - 28406 +2026-02-23 07:02:44 [INFO] - 4931 +2026-02-23 07:02:44 [DEBUG] - 9079 +2026-02-23 07:02:44 [CRITICAL] - 31482 +2026-02-23 07:02:44 [ERROR] Segmentation fault - 10555 +2026-02-23 07:02:44 [INFO] - 25559 +2026-02-23 07:02:44 [DEBUG] - 17336 +2026-02-23 07:02:44 [INFO] - 28915 +2026-02-23 07:02:44 [CRITICAL] - 7371 +2026-02-23 07:02:44 [DEBUG] - 19064 +2026-02-23 07:02:44 [ERROR] Failed to connect - 21353 +2026-02-23 07:02:44 [WARNING] - 18595 +2026-02-23 07:02:44 [ERROR] Segmentation fault - 8595 +2026-02-23 07:02:44 [ERROR] Segmentation fault - 19159 +2026-02-23 07:02:44 [CRITICAL] - 17238 +2026-02-23 07:02:44 [WARNING] - 21576 +2026-02-23 07:02:44 [INFO] - 25060 +2026-02-23 07:02:44 [CRITICAL] - 13154 +2026-02-23 07:02:44 [CRITICAL] - 2096 +2026-02-23 07:02:44 [WARNING] - 28709 +2026-02-23 07:02:44 [ERROR] Segmentation fault - 4107 +2026-02-23 07:02:44 [ERROR] Segmentation fault - 10390 +2026-02-23 07:02:44 [CRITICAL] - 23902 +2026-02-23 07:02:44 [DEBUG] - 19288 +2026-02-23 07:02:44 [ERROR] Disk full - 11637 +2026-02-23 07:02:44 [ERROR] Failed to connect - 1436 +2026-02-23 07:02:44 [CRITICAL] - 32532 +2026-02-23 07:02:44 [CRITICAL] - 18833 +2026-02-23 07:02:44 [CRITICAL] - 18052 +2026-02-23 07:02:44 [ERROR] Disk full - 9758 +2026-02-23 07:02:44 [CRITICAL] - 26218 +2026-02-23 07:02:44 [DEBUG] - 7560 +2026-02-23 07:02:44 [DEBUG] - 5296 +2026-02-23 07:02:44 [DEBUG] - 27398 +2026-02-23 07:02:44 [DEBUG] - 1250 +2026-02-23 07:02:44 [DEBUG] - 31061 +2026-02-23 07:02:44 [INFO] - 23464 +2026-02-23 07:02:44 [INFO] - 4753 +2026-02-23 07:02:44 [WARNING] - 25587 +2026-02-23 07:02:44 [WARNING] - 9591 +2026-02-23 07:02:44 [CRITICAL] - 9143 +2026-02-23 07:02:44 [INFO] - 25758 +2026-02-23 07:02:44 [INFO] - 17728 +2026-02-23 07:02:44 [CRITICAL] - 17549 +2026-02-23 07:02:44 [WARNING] - 8342 +2026-02-23 07:02:44 [DEBUG] - 25954 +2026-02-23 07:02:44 [WARNING] - 13964 +2026-02-23 07:02:44 [WARNING] - 14638 +2026-02-23 07:02:44 [INFO] - 27004 +2026-02-23 07:02:44 [INFO] - 10247 +2026-02-23 07:02:44 [ERROR] Out of memory - 2782 +2026-02-23 07:02:44 [DEBUG] - 27714 +2026-02-23 07:02:44 [DEBUG] - 3912 +2026-02-23 07:02:44 [ERROR] Invalid input - 26990 +2026-02-23 07:02:44 [INFO] - 31016 +2026-02-23 07:02:44 [INFO] - 9859 +2026-02-23 07:02:44 [CRITICAL] - 29511 +2026-02-23 07:02:44 [WARNING] - 15052 +2026-02-23 07:02:44 [ERROR] Segmentation fault - 21748 +2026-02-23 07:02:44 [DEBUG] - 3132 +2026-02-23 07:02:44 [INFO] - 11969 +2026-02-23 07:02:44 [DEBUG] - 15336 +2026-02-23 07:02:44 [CRITICAL] - 11071 +2026-02-23 07:02:44 [CRITICAL] - 4734 +2026-02-23 07:02:44 [ERROR] Segmentation fault - 5237 +2026-02-23 07:02:44 [WARNING] - 17363 +2026-02-23 07:02:44 [INFO] - 22148 +2026-02-23 07:02:44 [DEBUG] - 22253 +2026-02-23 07:02:44 [CRITICAL] - 19961 +2026-02-23 07:02:44 [INFO] - 15976 +2026-02-23 07:02:44 [INFO] - 7487 +2026-02-23 07:02:44 [INFO] - 20110 +2026-02-23 07:02:44 [CRITICAL] - 23423 +2026-02-23 07:02:44 [WARNING] - 21057 +2026-02-23 07:02:44 [CRITICAL] - 6110 +2026-02-23 07:02:44 [ERROR] Invalid input - 2156 +2026-02-23 07:02:44 [INFO] - 30889 +2026-02-23 07:02:44 [CRITICAL] - 7501 +2026-02-23 07:02:44 [CRITICAL] - 29553 +2026-02-23 07:02:44 [INFO] - 20733 +2026-02-23 07:02:44 [CRITICAL] - 5270 +2026-02-23 07:02:44 [INFO] - 6793 +2026-02-23 07:02:44 [CRITICAL] - 7993 +2026-02-23 07:02:44 [ERROR] Failed to connect - 14232 +2026-02-23 07:02:44 [WARNING] - 2057 +2026-02-23 07:02:44 [DEBUG] - 10508 +2026-02-23 07:02:44 [CRITICAL] - 20949 +2026-02-23 07:02:44 [WARNING] - 12520 +2026-02-23 07:02:44 [INFO] - 4577 +2026-02-23 07:02:44 [WARNING] - 23241 +2026-02-23 07:02:44 [CRITICAL] - 24865 +2026-02-23 07:02:44 [CRITICAL] - 21505 +2026-02-23 07:02:44 [ERROR] Disk full - 26826 +2026-02-23 07:02:44 [WARNING] - 29498 +2026-02-23 07:02:44 [DEBUG] - 12218 +2026-02-23 07:02:44 [INFO] - 2576 +2026-02-23 07:02:44 [CRITICAL] - 2958 +2026-02-23 07:02:44 [ERROR] Failed to connect - 25779 +2026-02-23 07:02:44 [INFO] - 19112 +2026-02-23 07:02:44 [DEBUG] - 31938 +2026-02-23 07:02:44 [CRITICAL] - 3831 +2026-02-23 07:02:44 [ERROR] Segmentation fault - 27971 +2026-02-23 07:02:44 [INFO] - 22851 +2026-02-23 07:02:44 [INFO] - 15346 +2026-02-23 07:02:44 [INFO] - 7490 +2026-02-23 07:02:44 [CRITICAL] - 32678 +2026-02-23 07:02:44 [WARNING] - 16453 +2026-02-23 07:02:44 [ERROR] Segmentation fault - 18669 +2026-02-23 07:02:44 [WARNING] - 15553 +2026-02-23 07:02:44 [DEBUG] - 15324 +2026-02-23 07:02:44 [CRITICAL] - 22878 +2026-02-23 07:02:44 [WARNING] - 24636 +2026-02-23 07:02:44 [ERROR] Out of memory - 18915 +2026-02-23 07:02:44 [DEBUG] - 26415 +2026-02-23 07:02:44 [INFO] - 7449 +2026-02-23 07:02:44 [CRITICAL] - 13524 +2026-02-23 07:02:44 [ERROR] Failed to connect - 22422 +2026-02-23 07:02:44 [INFO] - 28078 +2026-02-23 07:02:44 [INFO] - 7233 +2026-02-23 07:02:44 [WARNING] - 4025 +2026-02-23 07:02:44 [INFO] - 26046 +2026-02-23 07:02:44 [ERROR] Disk full - 24765 +2026-02-23 07:02:44 [INFO] - 14275 +2026-02-23 07:02:44 [WARNING] - 31057 +2026-02-23 07:02:44 [WARNING] - 29538 +2026-02-23 07:02:44 [DEBUG] - 27117 +2026-02-23 07:02:44 [INFO] - 29289 +2026-02-23 07:02:44 [ERROR] Out of memory - 2976 +2026-02-23 07:02:44 [ERROR] Disk full - 2104 +2026-02-23 07:02:44 [DEBUG] - 5837 +2026-02-23 07:02:44 [DEBUG] - 21835 +2026-02-23 07:02:44 [ERROR] Invalid input - 6248 +2026-02-23 07:02:44 [INFO] - 21393 +2026-02-23 07:02:44 [INFO] - 24723 +2026-02-23 07:02:44 [INFO] - 1996 +2026-02-23 07:02:44 [INFO] - 12223 +2026-02-23 07:02:44 [INFO] - 10708 +2026-02-23 07:02:44 [ERROR] Invalid input - 11642 +2026-02-23 07:02:44 [DEBUG] - 16454 +2026-02-23 07:02:44 [WARNING] - 31774 +2026-02-23 07:02:44 [ERROR] Disk full - 9847 +2026-02-23 07:02:44 [DEBUG] - 23216 +2026-02-23 07:02:44 [WARNING] - 2262 +2026-02-23 07:02:44 [CRITICAL] - 25297 +2026-02-23 07:02:44 [WARNING] - 392 +2026-02-23 07:02:44 [INFO] - 31857 +2026-02-23 07:02:44 [INFO] - 17845 +2026-02-23 07:02:44 [ERROR] Out of memory - 16844 +2026-02-23 07:02:44 [INFO] - 15069 +2026-02-23 07:02:44 [WARNING] - 19326 +2026-02-23 07:02:44 [ERROR] Disk full - 448 +2026-02-23 07:02:44 [ERROR] Disk full - 21413 +2026-02-23 07:02:44 [ERROR] Failed to connect - 17708 +2026-02-23 07:02:44 [ERROR] Failed to connect - 22675 +2026-02-23 07:02:44 [CRITICAL] - 13729 +2026-02-23 07:02:44 [CRITICAL] - 8256 +2026-02-23 07:02:44 [CRITICAL] - 30936 +2026-02-23 07:02:44 [INFO] - 17416 +2026-02-23 07:02:44 [ERROR] Invalid input - 21313 +2026-02-23 07:02:44 [CRITICAL] - 18273 +2026-02-23 07:02:44 [INFO] - 524 +2026-02-23 07:02:44 [DEBUG] - 23934 +2026-02-23 07:02:44 [INFO] - 27416 +2026-02-23 07:02:44 [CRITICAL] - 5569 +2026-02-23 07:02:44 [ERROR] Invalid input - 30829 +2026-02-23 07:02:44 [CRITICAL] - 20076 +2026-02-23 07:02:44 [WARNING] - 14639 +2026-02-23 07:02:44 [CRITICAL] - 16271 +2026-02-23 07:02:44 [ERROR] Segmentation fault - 16896 +2026-02-23 07:02:44 [ERROR] Invalid input - 24301 +2026-02-23 07:02:44 [INFO] - 29011 +2026-02-23 07:02:44 [CRITICAL] - 21645 +2026-02-23 07:02:44 [ERROR] Out of memory - 5498 +2026-02-23 07:02:44 [ERROR] Failed to connect - 32632 +2026-02-23 07:02:44 [INFO] - 20161 +2026-02-23 07:02:44 [WARNING] - 1621 +2026-02-23 07:02:44 [ERROR] Segmentation fault - 15743 +2026-02-23 07:02:44 [ERROR] Out of memory - 9336 +2026-02-23 07:02:44 [DEBUG] - 5323 +2026-02-23 07:02:44 [WARNING] - 2981 +2026-02-23 07:02:44 [CRITICAL] - 11703 +2026-02-23 07:02:44 [DEBUG] - 21594 +2026-02-23 07:02:44 [DEBUG] - 3170 +2026-02-23 07:02:44 [ERROR] Invalid input - 17580 +2026-02-23 07:02:44 [ERROR] Disk full - 14780 +2026-02-23 07:02:44 [WARNING] - 5521 +2026-02-23 07:02:44 [ERROR] Invalid input - 9755 +2026-02-23 07:02:44 [ERROR] Invalid input - 17894 +2026-02-23 07:02:44 [INFO] - 6042 +2026-02-23 07:02:44 [INFO] - 1017 +2026-02-23 07:02:44 [DEBUG] - 10618 +2026-02-23 07:02:44 [ERROR] Disk full - 3991 +2026-02-23 07:02:44 [ERROR] Invalid input - 25585 +2026-02-23 07:02:44 [ERROR] Segmentation fault - 31269 +2026-02-23 07:02:44 [WARNING] - 2569 +2026-02-23 07:02:44 [INFO] - 2480 +2026-02-23 07:02:44 [WARNING] - 7754 +2026-02-23 07:02:44 [DEBUG] - 6846 +2026-02-23 07:02:44 [ERROR] Segmentation fault - 19137 +2026-02-23 07:02:44 [DEBUG] - 10565 +2026-02-23 07:02:44 [WARNING] - 1108 +2026-02-23 07:02:44 [ERROR] Segmentation fault - 16004 +2026-02-23 07:02:44 [WARNING] - 14537 +2026-02-23 07:02:44 [WARNING] - 26676 +2026-02-23 07:02:44 [INFO] - 16092 +2026-02-23 07:02:44 [DEBUG] - 18710 +2026-02-23 07:02:44 [INFO] - 26520 +2026-02-23 07:02:44 [ERROR] Disk full - 7971 +2026-02-23 07:02:44 [ERROR] Out of memory - 8312 +2026-02-23 07:02:44 [ERROR] Segmentation fault - 25065 +2026-02-23 07:02:44 [WARNING] - 26272 +2026-02-23 07:02:44 [INFO] - 19881 +2026-02-23 07:02:44 [CRITICAL] - 31256 +2026-02-23 07:02:44 [INFO] - 27203 +2026-02-23 07:02:44 [ERROR] Invalid input - 23634 +2026-02-23 07:02:44 [INFO] - 3473 +2026-02-23 07:02:44 [CRITICAL] - 18653 +2026-02-23 07:02:44 [WARNING] - 31830 +2026-02-23 07:02:44 [ERROR] Failed to connect - 4581 +2026-02-23 07:02:44 [ERROR] Segmentation fault - 27705 +2026-02-23 07:02:44 [CRITICAL] - 10885 +2026-02-23 07:02:44 [DEBUG] - 19671 +2026-02-23 07:02:44 [DEBUG] - 5630 +2026-02-23 07:02:44 [INFO] - 27595 +2026-02-23 07:02:44 [WARNING] - 8360 +2026-02-23 07:02:44 [WARNING] - 22153 +2026-02-23 07:02:44 [WARNING] - 12094 +2026-02-23 07:02:44 [INFO] - 28773 +2026-02-23 07:02:44 [DEBUG] - 3453 +2026-02-23 07:02:44 [ERROR] Out of memory - 28961 +2026-02-23 07:02:44 [INFO] - 19627 +2026-02-23 07:02:44 [INFO] - 23165 +2026-02-23 07:02:44 [INFO] - 16730 +2026-02-23 07:02:44 [ERROR] Segmentation fault - 31636 +2026-02-23 07:02:44 [ERROR] Segmentation fault - 7792 +2026-02-23 07:02:44 [DEBUG] - 24640 +2026-02-23 07:02:44 [CRITICAL] - 13581 +2026-02-23 07:02:44 [ERROR] Disk full - 7938 +2026-02-23 07:02:44 [CRITICAL] - 9799 +2026-02-23 07:02:44 [CRITICAL] - 12019 +2026-02-23 07:02:44 [WARNING] - 18871 +2026-02-23 07:02:44 [WARNING] - 10707 +2026-02-23 07:02:44 [CRITICAL] - 5134 +2026-02-23 07:02:44 [CRITICAL] - 26043 +2026-02-23 07:02:44 [DEBUG] - 3007 +2026-02-23 07:02:44 [DEBUG] - 16074 +2026-02-23 07:02:44 [CRITICAL] - 2262 +2026-02-23 07:02:44 [WARNING] - 2723 +2026-02-23 07:02:44 [INFO] - 24862 +2026-02-23 07:02:44 [INFO] - 29042 +2026-02-23 07:02:44 [ERROR] Failed to connect - 16169 +2026-02-23 07:02:44 [WARNING] - 1107 +2026-02-23 07:02:44 [DEBUG] - 20120 +2026-02-23 07:02:44 [DEBUG] - 13642 +2026-02-23 07:02:44 [CRITICAL] - 4228 +2026-02-23 07:02:44 [INFO] - 10941 +2026-02-23 07:02:44 [ERROR] Disk full - 23684 +2026-02-23 07:02:44 [ERROR] Invalid input - 13059 +2026-02-23 07:02:44 [CRITICAL] - 20323 +2026-02-23 07:02:44 [CRITICAL] - 32157 +2026-02-23 07:02:44 [DEBUG] - 920 +2026-02-23 07:02:44 [DEBUG] - 23485 +2026-02-23 07:02:44 [DEBUG] - 2227 +2026-02-23 07:02:44 [INFO] - 19298 +2026-02-23 07:02:44 [DEBUG] - 21029 +2026-02-23 07:02:44 [ERROR] Segmentation fault - 21410 +2026-02-23 07:02:44 [ERROR] Invalid input - 612 +2026-02-23 07:02:44 [INFO] - 9130 +2026-02-23 07:02:44 [ERROR] Disk full - 1178 +2026-02-23 07:02:44 [WARNING] - 31408 +2026-02-23 07:02:44 [DEBUG] - 24346 +2026-02-23 07:02:44 [INFO] - 25671 +2026-02-23 07:02:44 [WARNING] - 8015 +2026-02-23 07:02:44 [INFO] - 7954 +2026-02-23 07:02:44 [ERROR] Invalid input - 29552 +2026-02-23 07:02:44 [INFO] - 2538 +2026-02-23 07:02:44 [WARNING] - 2045 +2026-02-23 07:02:44 [WARNING] - 17374 +2026-02-23 07:02:44 [DEBUG] - 31274 +2026-02-23 07:02:44 [CRITICAL] - 14727 +2026-02-23 07:02:44 [DEBUG] - 14603 +2026-02-23 07:02:44 [DEBUG] - 22444 +2026-02-23 07:02:44 [ERROR] Failed to connect - 18564 +2026-02-23 07:02:44 [DEBUG] - 2217 +2026-02-23 07:02:44 [ERROR] Out of memory - 13910 +2026-02-23 07:02:44 [WARNING] - 17263 +2026-02-23 07:02:44 [WARNING] - 32725 +2026-02-23 07:02:44 [CRITICAL] - 5402 +2026-02-23 07:02:44 [WARNING] - 30751 +2026-02-23 07:02:44 [DEBUG] - 29555 +2026-02-23 07:02:44 [ERROR] Invalid input - 25709 +2026-02-23 07:02:44 [CRITICAL] - 26493 +2026-02-23 07:02:44 [WARNING] - 6545 +2026-02-23 07:02:44 [DEBUG] - 11175 +2026-02-23 07:02:44 [ERROR] Disk full - 27481 +2026-02-23 07:02:44 [INFO] - 16401 +2026-02-23 07:02:44 [ERROR] Disk full - 2151 +2026-02-23 07:02:44 [INFO] - 1606 +2026-02-23 07:02:44 [CRITICAL] - 13017 +2026-02-23 07:02:44 [INFO] - 15920 +2026-02-23 07:02:44 [ERROR] Segmentation fault - 26889 +2026-02-23 07:02:44 [INFO] - 24092 +2026-02-23 07:02:44 [INFO] - 23562 +2026-02-23 07:02:44 [INFO] - 16812 +2026-02-23 07:02:44 [CRITICAL] - 32208 +2026-02-23 07:02:44 [ERROR] Out of memory - 115 +2026-02-23 07:02:44 [CRITICAL] - 16487 +2026-02-23 07:02:44 [DEBUG] - 9456 +2026-02-23 07:02:44 [CRITICAL] - 17686 +2026-02-23 07:02:44 [WARNING] - 5957 +2026-02-23 07:02:44 [INFO] - 25768 +2026-02-23 07:02:44 [WARNING] - 12525 +2026-02-23 07:02:44 [DEBUG] - 32501 +2026-02-23 07:02:44 [INFO] - 12499 +2026-02-23 07:02:44 [ERROR] Disk full - 12794 +2026-02-23 07:02:44 [DEBUG] - 12767 +2026-02-23 07:02:44 [INFO] - 10829 +2026-02-23 07:02:44 [ERROR] Disk full - 29070 +2026-02-23 07:02:44 [WARNING] - 30291 +2026-02-23 07:02:44 [ERROR] Out of memory - 10695 +2026-02-23 07:02:44 [DEBUG] - 21104 +2026-02-23 07:02:44 [WARNING] - 1775 +2026-02-23 07:02:44 [INFO] - 8811 +2026-02-23 07:02:44 [DEBUG] - 29528 +2026-02-23 07:02:44 [WARNING] - 4972 +2026-02-23 07:02:44 [DEBUG] - 5732 +2026-02-23 07:02:44 [DEBUG] - 1461 +2026-02-23 07:02:44 [DEBUG] - 7713 +2026-02-23 07:02:44 [DEBUG] - 28415 +2026-02-23 07:02:44 [DEBUG] - 7859 +2026-02-23 07:02:44 [CRITICAL] - 24500 +2026-02-23 07:02:44 [CRITICAL] - 10942 +2026-02-23 07:02:44 [INFO] - 21228 +2026-02-23 07:02:44 [WARNING] - 25059 +2026-02-23 07:02:44 [ERROR] Failed to connect - 22786 +2026-02-23 07:02:44 [ERROR] Disk full - 28971 +2026-02-23 07:02:44 [ERROR] Disk full - 16328 +2026-02-23 07:02:44 [DEBUG] - 14943 +2026-02-23 07:02:44 [DEBUG] - 291 +2026-02-23 07:02:44 [ERROR] Segmentation fault - 24957 +2026-02-23 07:02:44 [DEBUG] - 11 +2026-02-23 07:02:44 [ERROR] Invalid input - 10656 +2026-02-23 07:02:44 [DEBUG] - 14060 +2026-02-23 07:02:44 [WARNING] - 4965 +2026-02-23 07:02:44 [DEBUG] - 68 +2026-02-23 07:02:44 [WARNING] - 30878 +2026-02-23 07:02:44 [DEBUG] - 7932 +2026-02-23 07:02:44 [WARNING] - 142 +2026-02-23 07:02:44 [CRITICAL] - 23922 +2026-02-23 07:02:44 [INFO] - 15707 +2026-02-23 07:02:44 [WARNING] - 15596 +2026-02-23 07:02:44 [CRITICAL] - 23088 +2026-02-23 07:02:44 [WARNING] - 23309 +2026-02-23 07:02:44 [CRITICAL] - 12581 +2026-02-23 07:02:44 [WARNING] - 16334 +2026-02-23 07:02:44 [WARNING] - 21343 +2026-02-23 07:02:44 [INFO] - 26962 +2026-02-23 07:02:44 [WARNING] - 11967 +2026-02-23 07:02:44 [CRITICAL] - 2227 +2026-02-23 07:02:44 [ERROR] Segmentation fault - 7681 +2026-02-23 07:02:44 [DEBUG] - 29751 +2026-02-23 07:02:44 [INFO] - 29954 +2026-02-23 07:02:44 [DEBUG] - 8020 +2026-02-23 07:02:44 [WARNING] - 6759 +2026-02-23 07:02:44 [WARNING] - 13691 +2026-02-23 07:02:44 [DEBUG] - 22155 +2026-02-23 07:02:44 [INFO] - 15719 +2026-02-23 07:02:44 [ERROR] Segmentation fault - 14746 +2026-02-23 07:02:44 [WARNING] - 21978 +2026-02-23 07:02:44 [DEBUG] - 20646 +2026-02-23 07:02:44 [DEBUG] - 13649 +2026-02-23 07:02:44 [WARNING] - 10281 +2026-02-23 07:02:44 [DEBUG] - 22175 +2026-02-23 07:02:44 [DEBUG] - 21007 +2026-02-23 07:02:44 [CRITICAL] - 19012 +2026-02-23 07:02:44 [CRITICAL] - 12247 +2026-02-23 07:02:44 [INFO] - 653 +2026-02-23 07:02:44 [ERROR] Segmentation fault - 15667 +2026-02-23 07:02:44 [INFO] - 18894 +2026-02-23 07:02:44 [ERROR] Disk full - 12938 +2026-02-23 07:02:44 [CRITICAL] - 24094 +2026-02-23 07:02:44 [CRITICAL] - 25711 +2026-02-23 07:02:44 [INFO] - 14505 +2026-02-23 07:02:44 [INFO] - 22472 +2026-02-23 07:02:44 [DEBUG] - 8060 +2026-02-23 07:02:44 [INFO] - 377 +2026-02-23 07:02:44 [CRITICAL] - 19170 +2026-02-23 07:02:44 [ERROR] Segmentation fault - 26469 +2026-02-23 07:02:44 [WARNING] - 15046 +2026-02-23 07:02:44 [WARNING] - 6078 +2026-02-23 07:02:44 [ERROR] Failed to connect - 6407 +2026-02-23 07:02:44 [CRITICAL] - 7123 +2026-02-23 07:02:44 [ERROR] Invalid input - 3158 +2026-02-23 07:02:44 [ERROR] Out of memory - 11529 +2026-02-23 07:02:44 [WARNING] - 24393 +2026-02-23 07:02:44 [ERROR] Disk full - 412 +2026-02-23 07:02:44 [INFO] - 3602 +2026-02-23 07:02:44 [ERROR] Segmentation fault - 13589 +2026-02-23 07:02:44 [CRITICAL] - 28079 +2026-02-23 07:02:44 [INFO] - 31282 +2026-02-23 07:02:44 [CRITICAL] - 4692 +2026-02-23 07:02:44 [WARNING] - 11626 +2026-02-23 07:02:44 [ERROR] Failed to connect - 24310 +2026-02-23 07:02:44 [DEBUG] - 540 +2026-02-23 07:02:44 [DEBUG] - 12194 +2026-02-23 07:02:44 [WARNING] - 24482 +2026-02-23 07:02:44 [INFO] - 16781 +2026-02-23 07:02:44 [INFO] - 18703 +2026-02-23 07:02:44 [DEBUG] - 2857 +2026-02-23 07:02:44 [ERROR] Disk full - 10197 +2026-02-23 07:02:44 [WARNING] - 20005 +2026-02-23 07:02:44 [WARNING] - 25711 +2026-02-23 07:02:44 [WARNING] - 19719 +2026-02-23 07:02:44 [CRITICAL] - 26351 +2026-02-23 07:02:44 [DEBUG] - 2132 +2026-02-23 07:02:44 [CRITICAL] - 26979 +2026-02-23 07:02:44 [INFO] - 20830 +2026-02-23 07:02:44 [DEBUG] - 27056 +2026-02-23 07:02:44 [WARNING] - 20282 +2026-02-23 07:02:44 [INFO] - 3425 +2026-02-23 07:02:44 [DEBUG] - 16629 +2026-02-23 07:02:44 [DEBUG] - 713 +2026-02-23 07:02:44 [CRITICAL] - 21520 +2026-02-23 07:02:44 [DEBUG] - 31033 +2026-02-23 07:02:44 [ERROR] Failed to connect - 32753 +2026-02-23 07:02:44 [INFO] - 3426 +2026-02-23 07:02:44 [INFO] - 24734 +2026-02-23 07:02:44 [ERROR] Failed to connect - 12681 +2026-02-23 07:02:44 [DEBUG] - 9471 +2026-02-23 07:02:44 [WARNING] - 20305 +2026-02-23 07:02:44 [CRITICAL] - 16646 +2026-02-23 07:02:44 [ERROR] Disk full - 744 +2026-02-23 07:02:44 [WARNING] - 28145 +2026-02-23 07:02:44 [DEBUG] - 30343 +2026-02-23 07:02:44 [DEBUG] - 30974 +2026-02-23 07:02:44 [WARNING] - 20998 +2026-02-23 07:02:44 [INFO] - 3609 +2026-02-23 07:02:44 [CRITICAL] - 1916 +2026-02-23 07:02:44 [ERROR] Failed to connect - 18340 +2026-02-23 07:02:44 [ERROR] Out of memory - 21078 +2026-02-23 07:02:44 [DEBUG] - 13961 +2026-02-23 07:02:44 [WARNING] - 9923 +2026-02-23 07:02:44 [DEBUG] - 20960 +2026-02-23 07:02:44 [INFO] - 4667 +2026-02-23 07:02:44 [INFO] - 29622 +2026-02-23 07:02:44 [INFO] - 5184 +2026-02-23 07:02:44 [ERROR] Invalid input - 3120 +2026-02-23 07:02:44 [WARNING] - 31849 +2026-02-23 07:02:44 [ERROR] Disk full - 24627 +2026-02-23 07:02:44 [WARNING] - 15236 +2026-02-23 07:02:44 [WARNING] - 27181 +2026-02-23 07:02:44 [ERROR] Segmentation fault - 8317 +2026-02-23 07:02:44 [ERROR] Invalid input - 30971 +2026-02-23 07:02:44 [INFO] - 21644 +2026-02-23 07:02:44 [CRITICAL] - 18717 +2026-02-23 07:02:44 [INFO] - 29880 +2026-02-23 07:02:44 [ERROR] Disk full - 30104 +2026-02-23 07:02:44 [DEBUG] - 2939 +2026-02-23 07:02:44 [ERROR] Segmentation fault - 3097 +2026-02-23 07:02:44 [ERROR] Failed to connect - 4249 +2026-02-23 07:02:44 [INFO] - 24467 +2026-02-23 07:02:44 [ERROR] Failed to connect - 10141 +2026-02-23 07:02:44 [INFO] - 28014 +2026-02-23 07:02:44 [WARNING] - 17569 +2026-02-23 07:02:44 [ERROR] Segmentation fault - 8492 +2026-02-23 07:02:44 [INFO] - 7174 +2026-02-23 07:02:44 [ERROR] Failed to connect - 1941 +2026-02-23 07:02:44 [CRITICAL] - 9420 +2026-02-23 07:02:44 [WARNING] - 22260 +2026-02-23 07:02:44 [ERROR] Invalid input - 14476 +2026-02-23 07:02:44 [ERROR] Invalid input - 21639 +2026-02-23 07:02:44 [DEBUG] - 13611 +2026-02-23 07:02:44 [INFO] - 1298 +2026-02-23 07:02:44 [CRITICAL] - 24482 +2026-02-23 07:02:44 [ERROR] Out of memory - 216 +2026-02-23 07:02:44 [DEBUG] - 30150 +2026-02-23 07:02:44 [WARNING] - 2929 +2026-02-23 07:02:44 [DEBUG] - 25767 +2026-02-23 07:02:44 [ERROR] Segmentation fault - 27926 +2026-02-23 07:02:44 [INFO] - 21567 +2026-02-23 07:02:44 [WARNING] - 27135 +2026-02-23 07:02:44 [CRITICAL] - 2611 +2026-02-23 07:02:44 [WARNING] - 26289 +2026-02-23 07:02:44 [CRITICAL] - 18144 +2026-02-23 07:02:44 [DEBUG] - 30259 +2026-02-23 07:02:44 [DEBUG] - 2049 +2026-02-23 07:02:44 [WARNING] - 25389 +2026-02-23 07:02:44 [CRITICAL] - 4680 +2026-02-23 07:02:44 [ERROR] Disk full - 27200 +2026-02-23 07:02:44 [ERROR] Invalid input - 11184 +2026-02-23 07:02:44 [INFO] - 25864 +2026-02-23 07:02:44 [ERROR] Failed to connect - 11650 +2026-02-23 07:02:44 [WARNING] - 10331 +2026-02-23 07:02:44 [WARNING] - 4060 +2026-02-23 07:02:44 [CRITICAL] - 16039 +2026-02-23 07:02:44 [WARNING] - 24245 +2026-02-23 07:02:44 [INFO] - 27683 +2026-02-23 07:02:44 [INFO] - 22999 +2026-02-23 07:02:44 [ERROR] Failed to connect - 22991 +2026-02-23 07:02:44 [DEBUG] - 10498 +2026-02-23 07:02:44 [WARNING] - 4682 +2026-02-23 07:02:44 [ERROR] Segmentation fault - 12521 +2026-02-23 07:02:44 [DEBUG] - 12318 +2026-02-23 07:02:44 [ERROR] Out of memory - 22370 +2026-02-23 07:02:44 [WARNING] - 2049 +2026-02-23 07:02:44 [DEBUG] - 7080 +2026-02-23 07:02:44 [DEBUG] - 11965 +2026-02-23 07:02:44 [WARNING] - 21283 +2026-02-23 07:02:44 [WARNING] - 30127 +2026-02-23 07:02:44 [WARNING] - 5698 +2026-02-23 07:02:44 [CRITICAL] - 24937 +2026-02-23 07:02:44 [INFO] - 17263 +2026-02-23 07:02:44 [CRITICAL] - 26262 +2026-02-23 07:02:44 [CRITICAL] - 19058 +2026-02-23 07:02:44 [WARNING] - 3954 +2026-02-23 07:02:44 [CRITICAL] - 10444 +2026-02-23 07:02:44 [DEBUG] - 25796 +2026-02-23 07:02:44 [INFO] - 9378 +2026-02-23 07:02:44 [ERROR] Failed to connect - 11545 +2026-02-23 07:02:44 [CRITICAL] - 18023 +2026-02-23 07:02:44 [WARNING] - 24483 +2026-02-23 07:02:44 [WARNING] - 27625 +2026-02-23 07:02:44 [DEBUG] - 30826 +2026-02-23 07:02:44 [INFO] - 16407 +2026-02-23 07:02:44 [WARNING] - 31512 +2026-02-23 07:02:44 [CRITICAL] - 1693 +2026-02-23 07:02:44 [DEBUG] - 9515 +2026-02-23 07:02:44 [ERROR] Invalid input - 24985 +2026-02-23 07:02:44 [INFO] - 14838 +2026-02-23 07:02:44 [DEBUG] - 29755 +2026-02-23 07:02:44 [CRITICAL] - 9301 +2026-02-23 07:02:44 [WARNING] - 2764 +2026-02-23 07:02:44 [INFO] - 17901 +2026-02-23 07:02:44 [DEBUG] - 2813 +2026-02-23 07:02:44 [ERROR] Failed to connect - 20024 +2026-02-23 07:02:44 [WARNING] - 31179 +2026-02-23 07:02:44 [WARNING] - 20929 +2026-02-23 07:02:44 [CRITICAL] - 20416 +2026-02-23 07:02:44 [DEBUG] - 20697 +2026-02-23 07:02:44 [DEBUG] - 21569 +2026-02-23 07:02:44 [INFO] - 24245 +2026-02-23 07:02:44 [INFO] - 19494 +2026-02-23 07:02:44 [WARNING] - 13437 +2026-02-23 07:02:44 [ERROR] Disk full - 19342 +2026-02-23 07:02:44 [INFO] - 4858 +2026-02-23 07:02:44 [CRITICAL] - 757 +2026-02-23 07:02:44 [CRITICAL] - 19439 +2026-02-23 07:02:44 [ERROR] Out of memory - 20898 +2026-02-23 07:02:44 [CRITICAL] - 890 +2026-02-23 07:02:44 [ERROR] Disk full - 11757 +2026-02-23 07:02:44 [ERROR] Failed to connect - 10868 +2026-02-23 07:02:44 [CRITICAL] - 23663 +2026-02-23 07:02:44 [DEBUG] - 11824 +2026-02-23 07:02:44 [INFO] - 3988 +2026-02-23 07:02:44 [DEBUG] - 7384 +2026-02-23 07:02:44 [CRITICAL] - 28179 +2026-02-23 07:02:44 [CRITICAL] - 2263 +2026-02-23 07:02:44 [WARNING] - 30847 +2026-02-23 07:02:44 [CRITICAL] - 12906 +2026-02-23 07:02:44 [WARNING] - 19385 +2026-02-23 07:02:44 [WARNING] - 2988 +2026-02-23 07:02:44 [ERROR] Invalid input - 2825 +2026-02-23 07:02:44 [CRITICAL] - 14576 +2026-02-23 07:02:44 [INFO] - 11893 +2026-02-23 07:02:44 [DEBUG] - 24486 +2026-02-23 07:02:44 [WARNING] - 21577 +2026-02-23 07:02:44 [INFO] - 1643 +2026-02-23 07:02:44 [ERROR] Invalid input - 29184 +2026-02-23 07:02:44 [INFO] - 9640 +2026-02-23 07:02:44 [WARNING] - 30233 +2026-02-23 07:02:44 [DEBUG] - 12531 +2026-02-23 07:02:44 [CRITICAL] - 31512 +2026-02-23 07:02:44 [DEBUG] - 22230 +2026-02-23 07:02:44 [INFO] - 8735 +2026-02-23 07:02:44 [WARNING] - 11727 +2026-02-23 07:02:44 [WARNING] - 25817 +2026-02-23 07:02:44 [ERROR] Segmentation fault - 6023 +2026-02-23 07:02:44 [INFO] - 25906 +2026-02-23 07:02:44 [WARNING] - 262 +2026-02-23 07:02:44 [INFO] - 350 +2026-02-23 07:02:44 [INFO] - 22239 +2026-02-23 07:02:44 [INFO] - 10540 +2026-02-23 07:02:44 [CRITICAL] - 31721 +2026-02-23 07:02:44 [INFO] - 11861 +2026-02-23 07:02:44 [WARNING] - 22555 +2026-02-23 07:02:44 [DEBUG] - 23095 +2026-02-23 07:02:44 [DEBUG] - 31403 +2026-02-23 07:02:44 [INFO] - 11072 +2026-02-23 07:02:44 [ERROR] Invalid input - 28353 +2026-02-23 07:02:44 [ERROR] Failed to connect - 7583 +2026-02-23 07:02:44 [DEBUG] - 29628 +2026-02-23 07:02:44 [ERROR] Segmentation fault - 398 +2026-02-23 07:02:44 [CRITICAL] - 11312 +2026-02-23 07:02:44 [WARNING] - 8288 +2026-02-23 07:02:44 [DEBUG] - 23064 +2026-02-23 07:02:44 [DEBUG] - 23596 +2026-02-23 07:02:44 [CRITICAL] - 29706 +2026-02-23 07:02:44 [ERROR] Out of memory - 11304 +2026-02-23 07:02:44 [ERROR] Invalid input - 4881 +2026-02-23 07:02:44 [CRITICAL] - 4202 +2026-02-23 07:02:44 [WARNING] - 3401 +2026-02-23 07:02:44 [ERROR] Out of memory - 1058 +2026-02-23 07:02:44 [DEBUG] - 16627 +2026-02-23 07:02:44 [INFO] - 2269 +2026-02-23 07:02:44 [INFO] - 24446 +2026-02-23 07:02:44 [ERROR] Segmentation fault - 20669 +2026-02-23 07:02:44 [CRITICAL] - 23331 +2026-02-23 07:02:44 [WARNING] - 17573 +2026-02-23 07:02:44 [DEBUG] - 27067 +2026-02-23 07:02:44 [INFO] - 21177 +2026-02-23 07:02:44 [CRITICAL] - 27465 +2026-02-23 07:02:44 [INFO] - 29682 +2026-02-23 07:02:44 [ERROR] Disk full - 20279 +2026-02-23 07:02:44 [WARNING] - 30540 +2026-02-23 07:02:44 [ERROR] Disk full - 4631 +2026-02-23 07:02:44 [ERROR] Failed to connect - 26065 +2026-02-23 07:02:44 [ERROR] Segmentation fault - 20890 +2026-02-23 07:02:44 [WARNING] - 21787 +2026-02-23 07:02:44 [ERROR] Disk full - 7111 +2026-02-23 07:02:44 [INFO] - 25228 +2026-02-23 07:02:44 [WARNING] - 27442 +2026-02-23 07:02:44 [INFO] - 640 +2026-02-23 07:02:44 [INFO] - 21585 +2026-02-23 07:02:44 [ERROR] Disk full - 1019 +2026-02-23 07:02:44 [DEBUG] - 23574 +2026-02-23 07:02:44 [ERROR] Invalid input - 3300 +2026-02-23 07:02:44 [WARNING] - 25869 +2026-02-23 07:02:44 [WARNING] - 4595 +2026-02-23 07:02:44 [INFO] - 18904 +2026-02-23 07:02:44 [ERROR] Invalid input - 1386 +2026-02-23 07:02:44 [WARNING] - 14997 +2026-02-23 07:02:44 [ERROR] Disk full - 7673 +2026-02-23 07:02:44 [DEBUG] - 15429 +2026-02-23 07:02:44 [CRITICAL] - 21043 +2026-02-23 07:02:44 [WARNING] - 17459 +2026-02-23 07:02:44 [CRITICAL] - 18355 +2026-02-23 07:02:44 [WARNING] - 16996 +2026-02-23 07:02:44 [INFO] - 24632 +2026-02-23 07:02:44 [INFO] - 4472 +2026-02-23 07:02:44 [ERROR] Out of memory - 29589 +2026-02-23 07:02:44 [CRITICAL] - 32418 +2026-02-23 07:02:44 [ERROR] Failed to connect - 9270 +2026-02-23 07:02:44 [INFO] - 25245 +2026-02-23 07:02:44 [CRITICAL] - 910 +2026-02-23 07:02:44 [CRITICAL] - 14863 +2026-02-23 07:02:44 [DEBUG] - 8947 +2026-02-23 07:02:44 [CRITICAL] - 1938 +2026-02-23 07:02:44 [INFO] - 25980 +2026-02-23 07:02:44 [WARNING] - 8766 +2026-02-23 07:02:44 [CRITICAL] - 15826 +2026-02-23 07:02:44 [ERROR] Failed to connect - 5358 +2026-02-23 07:02:44 [INFO] - 7764 +2026-02-23 07:02:44 [CRITICAL] - 1149 +2026-02-23 07:02:44 [WARNING] - 28775 +2026-02-23 07:02:44 [INFO] - 15994 +2026-02-23 07:02:44 [DEBUG] - 19101 +2026-02-23 07:02:44 [INFO] - 4358 +2026-02-23 07:02:44 [CRITICAL] - 17412 +2026-02-23 07:02:44 [INFO] - 10302 +2026-02-23 07:02:44 [DEBUG] - 6809 +2026-02-23 07:02:44 [WARNING] - 18340 +2026-02-23 07:02:44 [CRITICAL] - 5074 +2026-02-23 07:02:44 [INFO] - 17452 +2026-02-23 07:02:44 [CRITICAL] - 23905 +2026-02-23 07:02:44 [INFO] - 20829 +2026-02-23 07:02:44 [DEBUG] - 28360 +2026-02-23 07:02:44 [INFO] - 13320 +2026-02-23 07:02:44 [DEBUG] - 16584 +2026-02-23 07:02:44 [ERROR] Failed to connect - 8189 +2026-02-23 07:02:44 [CRITICAL] - 1250 +2026-02-23 07:02:44 [DEBUG] - 28162 +2026-02-23 07:02:44 [INFO] - 17870 +2026-02-23 07:02:44 [CRITICAL] - 28227 +2026-02-23 07:02:44 [INFO] - 25792 +2026-02-23 07:02:44 [CRITICAL] - 29320 +2026-02-23 07:02:44 [ERROR] Out of memory - 5897 +2026-02-23 07:02:44 [ERROR] Invalid input - 19925 +2026-02-23 07:02:44 [ERROR] Failed to connect - 18237 +2026-02-23 07:02:44 [DEBUG] - 24359 +2026-02-23 07:02:44 [CRITICAL] - 548 +2026-02-23 07:02:45 [ERROR] Out of memory - 27403 +2026-02-23 07:02:45 [WARNING] - 17524 +2026-02-23 07:02:45 [CRITICAL] - 1608 +2026-02-23 07:02:45 [INFO] - 6285 +2026-02-23 07:02:45 [ERROR] Segmentation fault - 29217 +2026-02-23 07:02:45 [CRITICAL] - 25075 +2026-02-23 07:02:45 [DEBUG] - 20011 +2026-02-23 07:02:45 [WARNING] - 5800 +2026-02-23 07:02:45 [DEBUG] - 3212 +2026-02-23 07:02:45 [CRITICAL] - 2504 +2026-02-23 07:02:45 [DEBUG] - 19884 +2026-02-23 07:02:45 [CRITICAL] - 11953 +2026-02-23 07:02:45 [CRITICAL] - 24153 +2026-02-23 07:02:45 [ERROR] Disk full - 10884 +2026-02-23 07:02:45 [ERROR] Out of memory - 18020 +2026-02-23 07:02:45 [CRITICAL] - 1636 +2026-02-23 07:02:45 [CRITICAL] - 20921 +2026-02-23 07:02:45 [CRITICAL] - 30481 +2026-02-23 07:02:45 [DEBUG] - 13857 +2026-02-23 07:02:45 [INFO] - 22968 +2026-02-23 07:02:45 [ERROR] Failed to connect - 6293 +2026-02-23 07:02:45 [WARNING] - 921 +2026-02-23 07:02:45 [DEBUG] - 16869 +2026-02-23 07:02:45 [ERROR] Invalid input - 29966 +2026-02-23 07:02:45 [WARNING] - 10420 +2026-02-23 07:02:45 [CRITICAL] - 20045 +2026-02-23 07:02:45 [ERROR] Segmentation fault - 24550 +2026-02-23 07:02:45 [DEBUG] - 1432 +2026-02-23 07:02:45 [DEBUG] - 23797 +2026-02-23 07:02:45 [DEBUG] - 7649 +2026-02-23 07:02:45 [WARNING] - 10000 +2026-02-23 07:02:45 [CRITICAL] - 8977 +2026-02-23 07:02:45 [CRITICAL] - 17441 +2026-02-23 07:02:45 [CRITICAL] - 15488 +2026-02-23 07:02:45 [WARNING] - 251 +2026-02-23 07:02:45 [ERROR] Invalid input - 23575 +2026-02-23 07:02:45 [DEBUG] - 23242 +2026-02-23 07:02:45 [ERROR] Failed to connect - 17325 +2026-02-23 07:02:45 [CRITICAL] - 18258 +2026-02-23 07:02:45 [WARNING] - 4901 +2026-02-23 07:02:45 [ERROR] Failed to connect - 25698 +2026-02-23 07:02:45 [WARNING] - 13387 +2026-02-23 07:02:45 [CRITICAL] - 12670 +2026-02-23 07:02:45 [ERROR] Failed to connect - 49 +2026-02-23 07:02:45 [ERROR] Segmentation fault - 28536 +2026-02-23 07:02:45 [DEBUG] - 15862 +2026-02-23 07:02:45 [INFO] - 27091 +2026-02-23 07:02:45 [ERROR] Failed to connect - 11301 +2026-02-23 07:02:45 [CRITICAL] - 14579 +2026-02-23 07:02:45 [CRITICAL] - 22843 +2026-02-23 07:02:45 [WARNING] - 3799 +2026-02-23 07:02:45 [INFO] - 23452 +2026-02-23 07:02:45 [DEBUG] - 13504 +2026-02-23 07:02:45 [CRITICAL] - 5966 +2026-02-23 07:02:45 [ERROR] Invalid input - 20176 +2026-02-23 07:02:45 [ERROR] Segmentation fault - 15373 +2026-02-23 07:02:45 [CRITICAL] - 18412 +2026-02-23 07:02:45 [CRITICAL] - 9053 +2026-02-23 07:02:45 [WARNING] - 31018 +2026-02-23 07:02:45 [DEBUG] - 9055 +2026-02-23 07:02:45 [ERROR] Invalid input - 4754 +2026-02-23 07:02:45 [WARNING] - 24039 +2026-02-23 07:02:45 [CRITICAL] - 25877 +2026-02-23 07:02:45 [CRITICAL] - 8984 +2026-02-23 07:02:45 [ERROR] Disk full - 1563 +2026-02-23 07:02:45 [WARNING] - 32356 +2026-02-23 07:02:45 [ERROR] Failed to connect - 21797 +2026-02-23 07:02:45 [CRITICAL] - 8747 +2026-02-23 07:02:45 [CRITICAL] - 31372 +2026-02-23 07:02:45 [CRITICAL] - 10981 +2026-02-23 07:02:45 [DEBUG] - 15120 +2026-02-23 07:02:45 [ERROR] Failed to connect - 27665 +2026-02-23 07:02:45 [ERROR] Disk full - 32340 +2026-02-23 07:02:45 [DEBUG] - 24953 +2026-02-23 07:02:45 [WARNING] - 18239 +2026-02-23 07:02:45 [CRITICAL] - 16976 +2026-02-23 07:02:45 [ERROR] Out of memory - 422 +2026-02-23 07:02:45 [DEBUG] - 19153 +2026-02-23 07:02:45 [INFO] - 17819 +2026-02-23 07:02:45 [ERROR] Disk full - 25630 +2026-02-23 07:02:45 [CRITICAL] - 5483 +2026-02-23 07:02:45 [INFO] - 9976 +2026-02-23 07:02:45 [INFO] - 24245 +2026-02-23 07:02:45 [WARNING] - 24104 +2026-02-23 07:02:45 [INFO] - 12490 +2026-02-23 07:02:45 [WARNING] - 1262 +2026-02-23 07:02:45 [ERROR] Segmentation fault - 10408 +2026-02-23 07:02:45 [WARNING] - 9581 +2026-02-23 07:02:45 [ERROR] Disk full - 30544 +2026-02-23 07:02:45 [CRITICAL] - 4603 +2026-02-23 07:02:45 [INFO] - 27768 +2026-02-23 07:02:45 [WARNING] - 5426 +2026-02-23 07:02:45 [DEBUG] - 21545 +2026-02-23 07:02:45 [INFO] - 29232 +2026-02-23 07:02:45 [INFO] - 31226 +2026-02-23 07:02:45 [ERROR] Disk full - 29822 +2026-02-23 07:02:45 [ERROR] Failed to connect - 13089 +2026-02-23 07:02:45 [DEBUG] - 11552 +2026-02-23 07:02:45 [DEBUG] - 3197 +2026-02-23 07:02:45 [DEBUG] - 24480 +2026-02-23 07:02:45 [WARNING] - 12733 +2026-02-23 07:02:45 [DEBUG] - 22895 +2026-02-23 07:02:45 [ERROR] Disk full - 12675 +2026-02-23 07:02:45 [ERROR] Out of memory - 14361 +2026-02-23 07:02:45 [WARNING] - 20082 +2026-02-23 07:02:45 [INFO] - 5675 +2026-02-23 07:02:45 [ERROR] Segmentation fault - 6190 +2026-02-23 07:02:45 [WARNING] - 4195 +2026-02-23 07:02:45 [DEBUG] - 998 +2026-02-23 07:02:45 [DEBUG] - 23500 +2026-02-23 07:02:45 [DEBUG] - 9839 +2026-02-23 07:02:45 [CRITICAL] - 9340 +2026-02-23 07:02:45 [INFO] - 14545 +2026-02-23 07:02:45 [INFO] - 23188 +2026-02-23 07:02:45 [DEBUG] - 6214 +2026-02-23 07:02:45 [DEBUG] - 13355 +2026-02-23 07:02:45 [CRITICAL] - 19404 +2026-02-23 07:02:45 [CRITICAL] - 17874 +2026-02-23 07:02:45 [INFO] - 7628 +2026-02-23 07:02:45 [DEBUG] - 10470 +2026-02-23 07:02:45 [ERROR] Segmentation fault - 2531 +2026-02-23 07:02:45 [DEBUG] - 29663 +2026-02-23 07:02:45 [CRITICAL] - 14562 +2026-02-23 07:02:45 [DEBUG] - 16334 +2026-02-23 07:02:45 [ERROR] Failed to connect - 8553 +2026-02-23 07:02:45 [CRITICAL] - 32042 +2026-02-23 07:02:45 [INFO] - 19019 +2026-02-23 07:02:45 [WARNING] - 18818 +2026-02-23 07:02:45 [WARNING] - 29304 +2026-02-23 07:02:45 [DEBUG] - 27519 +2026-02-23 07:02:45 [DEBUG] - 28119 +2026-02-23 07:02:45 [ERROR] Invalid input - 26100 +2026-02-23 07:02:45 [CRITICAL] - 5603 +2026-02-23 07:02:45 [DEBUG] - 26280 +2026-02-23 07:02:45 [INFO] - 6593 +2026-02-23 07:02:45 [ERROR] Segmentation fault - 14430 +2026-02-23 07:02:45 [CRITICAL] - 10918 +2026-02-23 07:02:45 [INFO] - 23484 +2026-02-23 07:02:45 [WARNING] - 13735 +2026-02-23 07:02:45 [INFO] - 6147 +2026-02-23 07:02:45 [CRITICAL] - 16885 +2026-02-23 07:02:45 [WARNING] - 3756 +2026-02-23 07:02:45 [ERROR] Disk full - 24848 +2026-02-23 07:02:45 [DEBUG] - 12031 +2026-02-23 07:02:45 [DEBUG] - 19113 +2026-02-23 07:02:45 [INFO] - 27287 +2026-02-23 07:02:45 [DEBUG] - 11747 +2026-02-23 07:02:45 [DEBUG] - 8960 +2026-02-23 07:02:45 [INFO] - 11871 +2026-02-23 07:02:45 [INFO] - 5453 +2026-02-23 07:02:45 [ERROR] Disk full - 2841 +2026-02-23 07:02:45 [DEBUG] - 17781 +2026-02-23 07:02:45 [INFO] - 26383 +2026-02-23 07:02:45 [WARNING] - 20112 +2026-02-23 07:02:45 [ERROR] Invalid input - 6346 +2026-02-23 07:02:45 [DEBUG] - 601 +2026-02-23 07:02:45 [DEBUG] - 3709 +2026-02-23 07:02:45 [INFO] - 13549 +2026-02-23 07:02:45 [ERROR] Segmentation fault - 28967 +2026-02-23 07:02:45 [INFO] - 27127 +2026-02-23 07:02:45 [WARNING] - 16199 +2026-02-23 07:02:45 [ERROR] Disk full - 24318 +2026-02-23 07:02:45 [CRITICAL] - 16071 +2026-02-23 07:02:45 [DEBUG] - 7717 +2026-02-23 07:02:45 [WARNING] - 5676 +2026-02-23 07:02:45 [INFO] - 3149 +2026-02-23 07:02:45 [WARNING] - 14237 +2026-02-23 07:02:45 [DEBUG] - 26874 +2026-02-23 07:02:45 [WARNING] - 26263 +2026-02-23 07:02:45 [ERROR] Disk full - 10262 +2026-02-23 07:02:45 [ERROR] Segmentation fault - 15154 +2026-02-23 07:02:45 [INFO] - 29520 +2026-02-23 07:02:45 [DEBUG] - 11150 +2026-02-23 07:02:45 [INFO] - 798 +2026-02-23 07:02:45 [ERROR] Invalid input - 11294 +2026-02-23 07:02:45 [CRITICAL] - 21060 +2026-02-23 07:02:45 [CRITICAL] - 31907 +2026-02-23 07:02:45 [INFO] - 21090 +2026-02-23 07:02:45 [INFO] - 11673 +2026-02-23 07:02:45 [INFO] - 12234 +2026-02-23 07:02:45 [ERROR] Out of memory - 25257 +2026-02-23 07:02:45 [INFO] - 7517 +2026-02-23 07:02:45 [WARNING] - 15854 +2026-02-23 07:02:45 [WARNING] - 26051 +2026-02-23 07:02:45 [ERROR] Out of memory - 14918 +2026-02-23 07:02:45 [DEBUG] - 22188 +2026-02-23 07:02:45 [CRITICAL] - 19336 +2026-02-23 07:02:45 [CRITICAL] - 23958 +2026-02-23 07:02:45 [INFO] - 15419 +2026-02-23 07:02:45 [ERROR] Disk full - 3286 +2026-02-23 07:02:45 [WARNING] - 28576 +2026-02-23 07:02:45 [CRITICAL] - 30799 +2026-02-23 07:02:45 [DEBUG] - 17673 +2026-02-23 07:02:45 [DEBUG] - 22303 +2026-02-23 07:02:45 [ERROR] Disk full - 12641 +2026-02-23 07:02:45 [INFO] - 6138 +2026-02-23 07:02:45 [INFO] - 1599 +2026-02-23 07:02:45 [WARNING] - 28971 +2026-02-23 07:02:45 [ERROR] Disk full - 31701 +2026-02-23 07:02:45 [CRITICAL] - 30797 +2026-02-23 07:02:45 [CRITICAL] - 21472 +2026-02-23 07:02:45 [INFO] - 26515 +2026-02-23 07:02:45 [INFO] - 15183 +2026-02-23 07:02:45 [INFO] - 11745 +2026-02-23 07:02:45 [INFO] - 15498 +2026-02-23 07:02:45 [INFO] - 22880 +2026-02-23 07:02:45 [DEBUG] - 9871 +2026-02-23 07:02:45 [ERROR] Failed to connect - 2746 +2026-02-23 07:02:45 [INFO] - 22044 +2026-02-23 07:02:45 [ERROR] Disk full - 3897 +2026-02-23 07:02:45 [CRITICAL] - 19779 +2026-02-23 07:02:45 [ERROR] Segmentation fault - 26006 +2026-02-23 07:02:45 [DEBUG] - 2333 +2026-02-23 07:02:45 [WARNING] - 24433 +2026-02-23 07:02:45 [INFO] - 210 +2026-02-23 07:02:45 [WARNING] - 25179 +2026-02-23 07:02:45 [CRITICAL] - 28046 +2026-02-23 07:02:45 [CRITICAL] - 14957 +2026-02-23 07:02:45 [CRITICAL] - 13997 +2026-02-23 07:02:45 [WARNING] - 27993 +2026-02-23 07:02:45 [ERROR] Invalid input - 1348 +2026-02-23 07:02:45 [DEBUG] - 27475 +2026-02-23 07:02:45 [ERROR] Invalid input - 28089 +2026-02-23 07:02:45 [ERROR] Out of memory - 20609 +2026-02-23 07:02:45 [ERROR] Segmentation fault - 24117 +2026-02-23 07:02:45 [DEBUG] - 10536 +2026-02-23 07:02:45 [DEBUG] - 13958 +2026-02-23 07:02:45 [CRITICAL] - 26157 +2026-02-23 07:02:45 [INFO] - 394 +2026-02-23 07:02:45 [WARNING] - 9447 +2026-02-23 07:02:45 [CRITICAL] - 25381 +2026-02-23 07:02:45 [CRITICAL] - 14027 +2026-02-23 07:02:45 [WARNING] - 11290 +2026-02-23 07:02:45 [DEBUG] - 15926 +2026-02-23 07:02:45 [CRITICAL] - 32288 +2026-02-23 07:02:45 [DEBUG] - 20135 +2026-02-23 07:02:45 [ERROR] Out of memory - 1922 +2026-02-23 07:02:45 [CRITICAL] - 10098 +2026-02-23 07:02:45 [INFO] - 22309 +2026-02-23 07:02:45 [DEBUG] - 19374 +2026-02-23 07:02:45 [WARNING] - 10790 +2026-02-23 07:02:45 [WARNING] - 16554 +2026-02-23 07:02:45 [CRITICAL] - 7752 +2026-02-23 07:02:45 [INFO] - 15220 +2026-02-23 07:02:45 [WARNING] - 12608 +2026-02-23 07:02:45 [ERROR] Failed to connect - 27391 +2026-02-23 07:02:45 [ERROR] Disk full - 22612 +2026-02-23 07:02:45 [ERROR] Failed to connect - 2930 +2026-02-23 07:02:45 [INFO] - 1976 +2026-02-23 07:02:45 [WARNING] - 3347 +2026-02-23 07:02:45 [DEBUG] - 22658 +2026-02-23 07:02:45 [CRITICAL] - 22510 +2026-02-23 07:02:45 [CRITICAL] - 14148 +2026-02-23 07:02:45 [INFO] - 6237 +2026-02-23 07:02:45 [INFO] - 11033 +2026-02-23 07:02:45 [DEBUG] - 17474 +2026-02-23 07:02:45 [INFO] - 10217 +2026-02-23 07:02:45 [DEBUG] - 13458 +2026-02-23 07:02:45 [INFO] - 16504 +2026-02-23 07:02:45 [INFO] - 16491 +2026-02-23 07:02:45 [CRITICAL] - 5658 +2026-02-23 07:02:45 [DEBUG] - 3787 +2026-02-23 07:02:45 [ERROR] Invalid input - 6395 +2026-02-23 07:02:45 [ERROR] Disk full - 32030 +2026-02-23 07:02:45 [CRITICAL] - 26690 +2026-02-23 07:02:45 [DEBUG] - 17648 +2026-02-23 07:02:45 [INFO] - 17485 +2026-02-23 07:02:45 [ERROR] Invalid input - 4463 +2026-02-23 07:02:45 [INFO] - 10822 +2026-02-23 07:02:45 [WARNING] - 14284 +2026-02-23 07:02:45 [CRITICAL] - 14702 +2026-02-23 07:02:45 [WARNING] - 9549 +2026-02-23 07:02:45 [WARNING] - 27907 +2026-02-23 07:02:45 [WARNING] - 13295 +2026-02-23 07:02:45 [INFO] - 4804 +2026-02-23 07:02:45 [WARNING] - 25405 +2026-02-23 07:02:45 [INFO] - 12753 +2026-02-23 07:02:45 [CRITICAL] - 1675 +2026-02-23 07:02:45 [INFO] - 3277 +2026-02-23 07:02:45 [INFO] - 18524 +2026-02-23 07:02:45 [INFO] - 5018 +2026-02-23 07:02:45 [WARNING] - 24206 +2026-02-23 07:02:45 [INFO] - 22261 +2026-02-23 07:02:45 [WARNING] - 30867 +2026-02-23 07:02:45 [CRITICAL] - 21326 +2026-02-23 07:02:45 [INFO] - 3780 +2026-02-23 07:02:45 [ERROR] Failed to connect - 12936 +2026-02-23 07:02:45 [WARNING] - 20712 +2026-02-23 07:02:45 [DEBUG] - 26040 +2026-02-23 07:02:45 [CRITICAL] - 9632 +2026-02-23 07:02:45 [DEBUG] - 9598 +2026-02-23 07:02:45 [WARNING] - 29181 +2026-02-23 07:02:45 [CRITICAL] - 21024 +2026-02-23 07:02:45 [CRITICAL] - 24921 +2026-02-23 07:02:45 [ERROR] Disk full - 29209 +2026-02-23 07:02:45 [DEBUG] - 13094 +2026-02-23 07:02:45 [INFO] - 28086 +2026-02-23 07:02:45 [ERROR] Disk full - 29014 +2026-02-23 07:02:45 [ERROR] Failed to connect - 11323 +2026-02-23 07:02:45 [DEBUG] - 7872 +2026-02-23 07:02:45 [INFO] - 14854 +2026-02-23 07:02:45 [CRITICAL] - 399 +2026-02-23 07:02:45 [DEBUG] - 29579 +2026-02-23 07:02:45 [DEBUG] - 141 +2026-02-23 07:02:45 [WARNING] - 6463 +2026-02-23 07:02:45 [DEBUG] - 16203 +2026-02-23 07:02:45 [WARNING] - 30394 +2026-02-23 07:02:45 [CRITICAL] - 8444 +2026-02-23 07:02:45 [INFO] - 21159 +2026-02-23 07:02:45 [CRITICAL] - 7815 +2026-02-23 07:02:45 [DEBUG] - 27403 +2026-02-23 07:02:45 [WARNING] - 14785 +2026-02-23 07:02:45 [DEBUG] - 23304 +2026-02-23 07:02:45 [DEBUG] - 15573 +2026-02-23 07:02:45 [CRITICAL] - 12890 +2026-02-23 07:02:45 [WARNING] - 26947 +2026-02-23 07:02:45 [CRITICAL] - 3091 +2026-02-23 07:02:45 [INFO] - 13222 +2026-02-23 07:02:45 [INFO] - 5270 +2026-02-23 07:02:45 [WARNING] - 23361 +2026-02-23 07:02:45 [ERROR] Failed to connect - 9265 +2026-02-23 07:02:45 [DEBUG] - 20779 +2026-02-23 07:02:45 [WARNING] - 21362 +2026-02-23 07:02:45 [INFO] - 17462 +2026-02-23 07:02:45 [ERROR] Invalid input - 10063 +2026-02-23 07:02:45 [INFO] - 21728 +2026-02-23 07:02:45 [WARNING] - 19906 +2026-02-23 07:02:45 [DEBUG] - 7190 +2026-02-23 07:02:45 [INFO] - 24008 +2026-02-23 07:02:45 [ERROR] Out of memory - 16215 +2026-02-23 07:02:45 [INFO] - 18941 +2026-02-23 07:02:45 [DEBUG] - 2575 +2026-02-23 07:02:45 [ERROR] Disk full - 12174 +2026-02-23 07:02:45 [ERROR] Failed to connect - 17129 +2026-02-23 07:02:45 [INFO] - 14631 +2026-02-23 07:02:45 [WARNING] - 28552 +2026-02-23 07:02:45 [ERROR] Out of memory - 30952 +2026-02-23 07:02:45 [DEBUG] - 4053 +2026-02-23 07:02:45 [ERROR] Failed to connect - 21549 +2026-02-23 07:02:45 [DEBUG] - 27996 +2026-02-23 07:02:45 [INFO] - 13309 +2026-02-23 07:02:45 [ERROR] Out of memory - 23891 +2026-02-23 07:02:45 [WARNING] - 31693 +2026-02-23 07:02:45 [DEBUG] - 9321 +2026-02-23 07:02:45 [DEBUG] - 18914 +2026-02-23 07:02:45 [CRITICAL] - 7527 +2026-02-23 07:02:45 [WARNING] - 606 +2026-02-23 07:02:45 [DEBUG] - 15023 +2026-02-23 07:02:45 [ERROR] Out of memory - 32124 +2026-02-23 07:02:45 [CRITICAL] - 1083 +2026-02-23 07:02:45 [WARNING] - 27598 +2026-02-23 07:02:45 [ERROR] Failed to connect - 4260 +2026-02-23 07:02:45 [DEBUG] - 27144 +2026-02-23 07:02:45 [ERROR] Disk full - 23086 +2026-02-23 07:02:45 [CRITICAL] - 14500 +2026-02-23 07:02:45 [INFO] - 27183 +2026-02-23 07:02:45 [DEBUG] - 25622 +2026-02-23 07:02:45 [DEBUG] - 9784 +2026-02-23 07:02:45 [WARNING] - 27414 +2026-02-23 07:02:45 [DEBUG] - 11133 +2026-02-23 07:02:45 [WARNING] - 27457 +2026-02-23 07:02:45 [INFO] - 21495 +2026-02-23 07:02:45 [DEBUG] - 6440 +2026-02-23 07:02:45 [DEBUG] - 5785 +2026-02-23 07:02:45 [CRITICAL] - 9734 +2026-02-23 07:02:45 [CRITICAL] - 22352 +2026-02-23 07:02:45 [CRITICAL] - 2473 +2026-02-23 07:02:45 [ERROR] Out of memory - 10536 +2026-02-23 07:02:45 [INFO] - 25426 +2026-02-23 07:02:45 [WARNING] - 27142 +2026-02-23 07:02:45 [CRITICAL] - 15202 +2026-02-23 07:02:45 [DEBUG] - 12312 +2026-02-23 07:02:45 [INFO] - 1460 +2026-02-23 07:02:45 [DEBUG] - 20348 +2026-02-23 07:02:45 [WARNING] - 11085 +2026-02-23 07:02:45 [INFO] - 29721 +2026-02-23 07:02:45 [INFO] - 3904 +2026-02-23 07:02:45 [WARNING] - 1451 +2026-02-23 07:02:45 [ERROR] Invalid input - 24302 +2026-02-23 07:02:45 [CRITICAL] - 31516 +2026-02-23 07:02:45 [DEBUG] - 5926 +2026-02-23 07:02:45 [ERROR] Disk full - 20834 +2026-02-23 07:02:45 [INFO] - 21117 +2026-02-23 07:02:45 [ERROR] Disk full - 11194 +2026-02-23 07:02:45 [DEBUG] - 26693 +2026-02-23 07:02:45 [ERROR] Segmentation fault - 14951 +2026-02-23 07:02:45 [ERROR] Out of memory - 1266 +2026-02-23 07:02:45 [WARNING] - 17129 +2026-02-23 07:02:45 [INFO] - 24956 +2026-02-23 07:02:45 [CRITICAL] - 15750 +2026-02-23 07:02:45 [CRITICAL] - 25185 +2026-02-23 07:02:45 [INFO] - 5070 +2026-02-23 07:02:45 [ERROR] Segmentation fault - 8974 +2026-02-23 07:02:45 [INFO] - 17983 +2026-02-23 07:02:45 [CRITICAL] - 28889 +2026-02-23 07:02:45 [WARNING] - 10138 +2026-02-23 07:02:45 [DEBUG] - 4276 +2026-02-23 07:02:45 [DEBUG] - 10826 +2026-02-23 07:02:45 [INFO] - 26562 +2026-02-23 07:02:45 [DEBUG] - 5196 +2026-02-23 07:02:45 [INFO] - 24780 +2026-02-23 07:02:45 [ERROR] Segmentation fault - 3256 +2026-02-23 07:02:45 [DEBUG] - 32519 +2026-02-23 07:02:45 [CRITICAL] - 11042 +2026-02-23 07:02:45 [ERROR] Invalid input - 24673 +2026-02-23 07:02:45 [DEBUG] - 26716 +2026-02-23 07:02:45 [WARNING] - 11461 +2026-02-23 07:02:45 [DEBUG] - 32132 +2026-02-23 07:02:45 [WARNING] - 10549 +2026-02-23 07:02:45 [INFO] - 16348 +2026-02-23 07:02:45 [CRITICAL] - 20041 +2026-02-23 07:02:45 [INFO] - 27068 +2026-02-23 07:02:45 [DEBUG] - 26766 +2026-02-23 07:02:45 [INFO] - 11180 +2026-02-23 07:02:45 [INFO] - 18937 +2026-02-23 07:02:45 [WARNING] - 13565 +2026-02-23 07:02:45 [DEBUG] - 14444 +2026-02-23 07:02:45 [ERROR] Out of memory - 25377 +2026-02-23 07:02:45 [WARNING] - 17895 +2026-02-23 07:02:45 [DEBUG] - 18180 +2026-02-23 07:02:45 [DEBUG] - 7282 +2026-02-23 07:02:45 [CRITICAL] - 9776 +2026-02-23 07:02:45 [INFO] - 16822 +2026-02-23 07:02:45 [INFO] - 12432 +2026-02-23 07:02:45 [DEBUG] - 10998 +2026-02-23 07:02:45 [INFO] - 3095 +2026-02-23 07:02:45 [INFO] - 6738 +2026-02-23 07:02:45 [ERROR] Segmentation fault - 19603 +2026-02-23 07:02:45 [DEBUG] - 5124 +2026-02-23 07:02:45 [INFO] - 12991 +2026-02-23 07:02:45 [INFO] - 2336 +2026-02-23 07:02:45 [INFO] - 674 +2026-02-23 07:02:45 [ERROR] Failed to connect - 5976 +2026-02-23 07:02:45 [ERROR] Invalid input - 16994 +2026-02-23 07:02:45 [ERROR] Invalid input - 8508 +2026-02-23 07:02:45 [ERROR] Failed to connect - 30780 +2026-02-23 07:02:45 [ERROR] Out of memory - 18761 +2026-02-23 07:02:45 [CRITICAL] - 3346 +2026-02-23 07:02:45 [WARNING] - 14811 +2026-02-23 07:02:45 [DEBUG] - 21618 +2026-02-23 07:02:45 [WARNING] - 21979 +2026-02-23 07:02:45 [CRITICAL] - 5627 +2026-02-23 07:02:45 [DEBUG] - 16675 +2026-02-23 07:02:45 [WARNING] - 19823 +2026-02-23 07:02:45 [CRITICAL] - 1868 +2026-02-23 07:02:45 [ERROR] Out of memory - 23196 +2026-02-23 07:02:45 [WARNING] - 16305 +2026-02-23 07:02:45 [INFO] - 31472 +2026-02-23 07:02:45 [DEBUG] - 10915 +2026-02-23 07:02:45 [DEBUG] - 6052 +2026-02-23 07:02:45 [WARNING] - 15872 +2026-02-23 07:02:45 [DEBUG] - 20375 +2026-02-23 07:02:45 [ERROR] Out of memory - 6702 +2026-02-23 07:02:45 [DEBUG] - 31808 +2026-02-23 07:02:45 [ERROR] Invalid input - 2070 +2026-02-23 07:02:45 [WARNING] - 5869 +2026-02-23 07:02:45 [WARNING] - 31092 +2026-02-23 07:02:45 [WARNING] - 2993 +2026-02-23 07:02:45 [ERROR] Disk full - 3567 +2026-02-23 07:02:45 [CRITICAL] - 19498 +2026-02-23 07:02:45 [WARNING] - 16440 +2026-02-23 07:02:45 [DEBUG] - 30429 +2026-02-23 07:02:45 [ERROR] Out of memory - 14648 +2026-02-23 07:02:45 [WARNING] - 23838 +2026-02-23 07:02:45 [ERROR] Invalid input - 12470 +2026-02-23 07:02:45 [ERROR] Failed to connect - 22134 +2026-02-23 07:02:45 [CRITICAL] - 17758 +2026-02-23 07:02:45 [DEBUG] - 542 +2026-02-23 07:02:45 [INFO] - 32673 +2026-02-23 07:02:45 [CRITICAL] - 4045 +2026-02-23 07:02:45 [WARNING] - 13627 +2026-02-23 07:02:45 [INFO] - 3985 +2026-02-23 07:02:45 [INFO] - 2613 +2026-02-23 07:02:45 [CRITICAL] - 11628 +2026-02-23 07:02:45 [WARNING] - 13293 +2026-02-23 07:02:45 [ERROR] Disk full - 24948 +2026-02-23 07:02:45 [DEBUG] - 10591 +2026-02-23 07:02:45 [INFO] - 5053 +2026-02-23 07:02:45 [CRITICAL] - 6555 +2026-02-23 07:02:45 [INFO] - 4511 +2026-02-23 07:02:45 [INFO] - 6840 +2026-02-23 07:02:45 [ERROR] Out of memory - 19857 +2026-02-23 07:02:45 [CRITICAL] - 18482 +2026-02-23 07:02:45 [ERROR] Disk full - 26029 +2026-02-23 07:02:45 [ERROR] Out of memory - 22770 +2026-02-23 07:02:45 [CRITICAL] - 14540 +2026-02-23 07:02:45 [WARNING] - 4045 +2026-02-23 07:02:45 [WARNING] - 30176 +2026-02-23 07:02:45 [DEBUG] - 19806 +2026-02-23 07:02:45 [ERROR] Disk full - 27647 +2026-02-23 07:02:45 [INFO] - 25645 +2026-02-23 07:02:45 [INFO] - 29075 +2026-02-23 07:02:45 [CRITICAL] - 26384 +2026-02-23 07:02:45 [ERROR] Out of memory - 8953 +2026-02-23 07:02:45 [INFO] - 14806 +2026-02-23 07:02:45 [CRITICAL] - 31978 +2026-02-23 07:02:45 [ERROR] Disk full - 30520 +2026-02-23 07:02:45 [INFO] - 12465 +2026-02-23 07:02:45 [WARNING] - 29770 +2026-02-23 07:02:45 [WARNING] - 16211 +2026-02-23 07:02:45 [CRITICAL] - 3986 +2026-02-23 07:02:45 [CRITICAL] - 5273 +2026-02-23 07:02:45 [ERROR] Disk full - 442 +2026-02-23 07:02:45 [INFO] - 5735 +2026-02-23 07:02:45 [INFO] - 31464 +2026-02-23 07:02:45 [CRITICAL] - 24614 +2026-02-23 07:02:45 [WARNING] - 12942 +2026-02-23 07:02:45 [WARNING] - 18676 +2026-02-23 07:02:45 [WARNING] - 23585 +2026-02-23 07:02:45 [DEBUG] - 6450 +2026-02-23 07:02:45 [ERROR] Invalid input - 23564 +2026-02-23 07:02:45 [INFO] - 9065 +2026-02-23 07:02:45 [INFO] - 11979 +2026-02-23 07:02:45 [INFO] - 26569 +2026-02-23 07:02:45 [DEBUG] - 985 +2026-02-23 07:02:45 [ERROR] Failed to connect - 27105 +2026-02-23 07:02:45 [ERROR] Failed to connect - 15254 +2026-02-23 07:02:45 [INFO] - 27723 +2026-02-23 07:02:45 [INFO] - 12276 +2026-02-23 07:02:45 [ERROR] Segmentation fault - 25846 +2026-02-23 07:02:45 [DEBUG] - 15290 +2026-02-23 07:02:45 [DEBUG] - 7629 +2026-02-23 07:02:45 [WARNING] - 28705 +2026-02-23 07:02:45 [ERROR] Failed to connect - 12656 +2026-02-23 07:02:45 [CRITICAL] - 19861 +2026-02-23 07:02:45 [DEBUG] - 10412 +2026-02-23 07:02:45 [ERROR] Disk full - 11226 +2026-02-23 07:02:45 [WARNING] - 13109 +2026-02-23 07:02:45 [DEBUG] - 13400 +2026-02-23 07:02:45 [INFO] - 17778 +2026-02-23 07:02:45 [INFO] - 5093 +2026-02-23 07:02:45 [CRITICAL] - 4953 +2026-02-23 07:02:45 [ERROR] Failed to connect - 6198 +2026-02-23 07:02:45 [CRITICAL] - 27371 +2026-02-23 07:02:45 [DEBUG] - 8869 +2026-02-23 07:02:45 [DEBUG] - 26479 +2026-02-23 07:02:45 [DEBUG] - 25009 +2026-02-23 07:02:45 [ERROR] Failed to connect - 4692 +2026-02-23 07:02:45 [CRITICAL] - 32046 +2026-02-23 07:02:45 [DEBUG] - 24622 +2026-02-23 07:02:45 [DEBUG] - 19271 +2026-02-23 07:02:45 [ERROR] Disk full - 14401 +2026-02-23 07:02:45 [ERROR] Disk full - 19238 +2026-02-23 07:02:45 [DEBUG] - 26145 +2026-02-23 07:02:45 [ERROR] Failed to connect - 7203 +2026-02-23 07:02:45 [CRITICAL] - 1566 +2026-02-23 07:02:45 [ERROR] Failed to connect - 4264 +2026-02-23 07:02:45 [CRITICAL] - 23050 +2026-02-23 07:02:45 [INFO] - 30486 +2026-02-23 07:02:45 [WARNING] - 17079 +2026-02-23 07:02:45 [ERROR] Failed to connect - 24157 +2026-02-23 07:02:45 [DEBUG] - 4713 +2026-02-23 07:02:45 [ERROR] Invalid input - 7261 +2026-02-23 07:02:45 [WARNING] - 28709 +2026-02-23 07:02:45 [CRITICAL] - 14853 +2026-02-23 07:02:45 [ERROR] Invalid input - 1473 +2026-02-23 07:02:45 [WARNING] - 19948 +2026-02-23 07:02:45 [ERROR] Segmentation fault - 23945 +2026-02-23 07:02:45 [DEBUG] - 16498 +2026-02-23 07:02:45 [WARNING] - 32565 +2026-02-23 07:02:45 [INFO] - 3152 +2026-02-23 07:02:45 [DEBUG] - 24942 +2026-02-23 07:02:45 [ERROR] Failed to connect - 10874 +2026-02-23 07:02:45 [CRITICAL] - 15362 +2026-02-23 07:02:45 [DEBUG] - 13016 +2026-02-23 07:02:45 [CRITICAL] - 12948 +2026-02-23 07:02:45 [CRITICAL] - 17187 +2026-02-23 07:02:45 [CRITICAL] - 14235 +2026-02-23 07:02:45 [CRITICAL] - 16209 +2026-02-23 07:02:45 [ERROR] Failed to connect - 16943 +2026-02-23 07:02:45 [ERROR] Segmentation fault - 13850 +2026-02-23 07:02:45 [ERROR] Segmentation fault - 6977 +2026-02-23 07:02:45 [ERROR] Disk full - 8396 +2026-02-23 07:02:45 [DEBUG] - 20917 +2026-02-23 07:02:45 [WARNING] - 10871 +2026-02-23 07:02:45 [DEBUG] - 8096 +2026-02-23 07:02:45 [DEBUG] - 6141 +2026-02-23 07:02:45 [CRITICAL] - 32765 +2026-02-23 07:02:45 [WARNING] - 8947 +2026-02-23 07:02:45 [DEBUG] - 15615 +2026-02-23 07:02:45 [INFO] - 30737 +2026-02-23 07:02:45 [ERROR] Failed to connect - 256 +2026-02-23 07:02:45 [ERROR] Segmentation fault - 28739 +2026-02-23 07:02:45 [INFO] - 12776 +2026-02-23 07:02:45 [WARNING] - 25719 +2026-02-23 07:02:45 [ERROR] Invalid input - 21228 +2026-02-23 07:02:45 [INFO] - 1270 +2026-02-23 07:02:45 [CRITICAL] - 20677 +2026-02-23 07:02:45 [INFO] - 19443 +2026-02-23 07:02:45 [ERROR] Out of memory - 12099 +2026-02-23 07:02:45 [INFO] - 22580 +2026-02-23 07:02:45 [WARNING] - 8104 +2026-02-23 07:02:45 [INFO] - 25565 +2026-02-23 07:02:45 [DEBUG] - 4276 +2026-02-23 07:02:45 [WARNING] - 4382 +2026-02-23 07:02:45 [ERROR] Segmentation fault - 13095 +2026-02-23 07:02:45 [DEBUG] - 17888 +2026-02-23 07:02:45 [INFO] - 26089 +2026-02-23 07:02:45 [WARNING] - 8300 +2026-02-23 07:02:45 [ERROR] Out of memory - 31884 +2026-02-23 07:02:45 [ERROR] Failed to connect - 31061 +2026-02-23 07:02:45 [ERROR] Out of memory - 14412 +2026-02-23 07:02:45 [WARNING] - 3253 +2026-02-23 07:02:45 [CRITICAL] - 32568 +2026-02-23 07:02:45 [ERROR] Segmentation fault - 27174 +2026-02-23 07:02:45 [INFO] - 31136 +2026-02-23 07:02:45 [INFO] - 4531 +2026-02-23 07:02:45 [DEBUG] - 14038 +2026-02-23 07:02:45 [WARNING] - 6980 +2026-02-23 07:02:45 [ERROR] Out of memory - 14090 +2026-02-23 07:02:45 [DEBUG] - 26995 +2026-02-23 07:02:45 [DEBUG] - 4075 +2026-02-23 07:02:45 [ERROR] Invalid input - 19739 +2026-02-23 07:02:45 [ERROR] Out of memory - 9020 +2026-02-23 07:02:45 [CRITICAL] - 5327 +2026-02-23 07:02:45 [INFO] - 30932 +2026-02-23 07:02:45 [ERROR] Segmentation fault - 30091 +2026-02-23 07:02:45 [DEBUG] - 20664 +2026-02-23 07:02:45 [WARNING] - 2066 +2026-02-23 07:02:45 [CRITICAL] - 19859 +2026-02-23 07:02:45 [ERROR] Invalid input - 17602 +2026-02-23 07:02:45 [CRITICAL] - 6818 +2026-02-23 07:02:45 [WARNING] - 10862 +2026-02-23 07:02:45 [WARNING] - 18780 +2026-02-23 07:02:45 [CRITICAL] - 2197 +2026-02-23 07:02:45 [CRITICAL] - 4702 +2026-02-23 07:02:45 [ERROR] Out of memory - 27338 +2026-02-23 07:02:45 [INFO] - 6578 +2026-02-23 07:02:45 [CRITICAL] - 9454 +2026-02-23 07:02:45 [WARNING] - 11849 +2026-02-23 07:02:45 [DEBUG] - 11716 +2026-02-23 07:02:45 [CRITICAL] - 15948 +2026-02-23 07:02:45 [INFO] - 24040 +2026-02-23 07:02:45 [INFO] - 27050 +2026-02-23 07:02:45 [WARNING] - 28028 +2026-02-23 07:02:45 [ERROR] Failed to connect - 5112 +2026-02-23 07:02:45 [INFO] - 5998 +2026-02-23 07:02:45 [INFO] - 25375 +2026-02-23 07:02:45 [CRITICAL] - 3931 +2026-02-23 07:02:45 [INFO] - 26169 +2026-02-23 07:02:45 [INFO] - 13042 +2026-02-23 07:02:45 [INFO] - 19095 +2026-02-23 07:02:45 [INFO] - 6974 +2026-02-23 07:02:45 [INFO] - 32423 +2026-02-23 07:02:45 [WARNING] - 28765 +2026-02-23 07:02:45 [DEBUG] - 22447 +2026-02-23 07:02:45 [CRITICAL] - 24154 +2026-02-23 07:02:45 [WARNING] - 10351 +2026-02-23 07:02:45 [ERROR] Segmentation fault - 18375 +2026-02-23 07:02:45 [CRITICAL] - 17200 +2026-02-23 07:02:45 [ERROR] Segmentation fault - 11377 +2026-02-23 07:02:45 [WARNING] - 5312 +2026-02-23 07:02:45 [ERROR] Disk full - 7048 +2026-02-23 07:02:45 [INFO] - 17431 +2026-02-23 07:02:45 [DEBUG] - 7518 +2026-02-23 07:02:45 [INFO] - 5858 +2026-02-23 07:02:45 [ERROR] Segmentation fault - 844 +2026-02-23 07:02:45 [CRITICAL] - 4997 +2026-02-23 07:02:45 [WARNING] - 3447 +2026-02-23 07:02:45 [CRITICAL] - 155 +2026-02-23 07:02:45 [ERROR] Invalid input - 23512 +2026-02-23 07:02:45 [WARNING] - 8086 +2026-02-23 07:02:45 [DEBUG] - 7143 +2026-02-23 07:02:45 [WARNING] - 21920 +2026-02-23 07:02:45 [INFO] - 22418 +2026-02-23 07:02:45 [WARNING] - 21640 +2026-02-23 07:02:45 [INFO] - 1577 +2026-02-23 07:02:45 [DEBUG] - 17475 +2026-02-23 07:02:45 [CRITICAL] - 16710 +2026-02-23 07:02:45 [CRITICAL] - 27362 +2026-02-23 07:02:45 [INFO] - 4871 +2026-02-23 07:02:45 [ERROR] Invalid input - 19967 +2026-02-23 07:02:45 [CRITICAL] - 30641 +2026-02-23 07:02:45 [DEBUG] - 26680 +2026-02-23 07:02:45 [ERROR] Segmentation fault - 7002 +2026-02-23 07:02:45 [WARNING] - 30503 +2026-02-23 07:02:45 [CRITICAL] - 6839 +2026-02-23 07:02:45 [ERROR] Invalid input - 30958 +2026-02-23 07:02:45 [INFO] - 13170 +2026-02-23 07:02:45 [WARNING] - 457 +2026-02-23 07:02:45 [DEBUG] - 8309 +2026-02-23 07:02:45 [ERROR] Segmentation fault - 17303 +2026-02-23 07:02:45 [INFO] - 18718 +2026-02-23 07:02:45 [WARNING] - 26985 +2026-02-23 07:02:45 [CRITICAL] - 20340 +2026-02-23 07:02:45 [DEBUG] - 8060 +2026-02-23 07:02:45 [DEBUG] - 25319 +2026-02-23 07:02:45 [INFO] - 27028 +2026-02-23 07:02:45 [CRITICAL] - 21769 +2026-02-23 07:02:45 [WARNING] - 19463 +2026-02-23 07:02:45 [DEBUG] - 13226 +2026-02-23 07:02:45 [CRITICAL] - 14392 +2026-02-23 07:02:45 [WARNING] - 8803 +2026-02-23 07:02:45 [ERROR] Out of memory - 16898 +2026-02-23 07:02:45 [DEBUG] - 21441 +2026-02-23 07:02:45 [DEBUG] - 20827 +2026-02-23 07:02:45 [DEBUG] - 11114 +2026-02-23 07:02:45 [ERROR] Out of memory - 10231 +2026-02-23 07:02:45 [WARNING] - 10835 +2026-02-23 07:02:45 [WARNING] - 4329 +2026-02-23 07:02:45 [INFO] - 22113 +2026-02-23 07:02:45 [WARNING] - 13576 +2026-02-23 07:02:45 [CRITICAL] - 25082 +2026-02-23 07:02:45 [INFO] - 7845 +2026-02-23 07:02:45 [WARNING] - 31574 +2026-02-23 07:02:45 [INFO] - 12303 +2026-02-23 07:02:45 [DEBUG] - 1824 +2026-02-23 07:02:45 [CRITICAL] - 1925 +2026-02-23 07:02:45 [INFO] - 7782 +2026-02-23 07:02:45 [CRITICAL] - 28804 +2026-02-23 07:02:45 [INFO] - 13540 +2026-02-23 07:02:45 [ERROR] Disk full - 2753 +2026-02-23 07:02:45 [ERROR] Out of memory - 27623 +2026-02-23 07:02:45 [ERROR] Disk full - 12699 +2026-02-23 07:02:45 [WARNING] - 7595 +2026-02-23 07:02:45 [DEBUG] - 25625 +2026-02-23 07:02:45 [CRITICAL] - 25368 +2026-02-23 07:02:45 [ERROR] Segmentation fault - 28958 +2026-02-23 07:02:45 [ERROR] Invalid input - 30490 +2026-02-23 07:02:45 [CRITICAL] - 27058 +2026-02-23 07:02:45 [DEBUG] - 24334 +2026-02-23 07:02:45 [DEBUG] - 6667 +2026-02-23 07:02:45 [WARNING] - 14640 +2026-02-23 07:02:45 [WARNING] - 8865 +2026-02-23 07:02:45 [INFO] - 31757 +2026-02-23 07:02:45 [INFO] - 25339 +2026-02-23 07:02:45 [CRITICAL] - 21387 +2026-02-23 07:02:45 [WARNING] - 11113 +2026-02-23 07:02:45 [INFO] - 7238 +2026-02-23 07:02:45 [INFO] - 15590 +2026-02-23 07:02:45 [INFO] - 11168 +2026-02-23 07:02:45 [WARNING] - 2862 +2026-02-23 07:02:45 [WARNING] - 25399 +2026-02-23 07:02:45 [DEBUG] - 16126 +2026-02-23 07:02:45 [DEBUG] - 7980 +2026-02-23 07:02:45 [INFO] - 5271 +2026-02-23 07:02:45 [CRITICAL] - 19454 +2026-02-23 07:02:45 [ERROR] Invalid input - 20553 +2026-02-23 07:02:45 [INFO] - 27126 +2026-02-23 07:02:46 [WARNING] - 31276 +2026-02-23 07:02:46 [ERROR] Failed to connect - 24199 +2026-02-23 07:02:46 [CRITICAL] - 2872 +2026-02-23 07:02:46 [ERROR] Invalid input - 12560 +2026-02-23 07:02:46 [DEBUG] - 17862 +2026-02-23 07:02:46 [WARNING] - 12281 +2026-02-23 07:02:46 [DEBUG] - 23170 +2026-02-23 07:02:46 [DEBUG] - 19341 +2026-02-23 07:02:46 [DEBUG] - 26419 +2026-02-23 07:02:46 [DEBUG] - 28281 +2026-02-23 07:02:46 [WARNING] - 7615 +2026-02-23 07:02:46 [INFO] - 16342 +2026-02-23 07:02:46 [INFO] - 25618 +2026-02-23 07:02:46 [ERROR] Segmentation fault - 5758 +2026-02-23 07:02:46 [WARNING] - 8400 +2026-02-23 07:02:46 [WARNING] - 29576 +2026-02-23 07:02:46 [INFO] - 607 +2026-02-23 07:02:46 [INFO] - 7929 +2026-02-23 07:02:46 [CRITICAL] - 1003 +2026-02-23 07:02:46 [ERROR] Disk full - 8920 +2026-02-23 07:02:46 [WARNING] - 6388 +2026-02-23 07:02:46 [WARNING] - 4296 +2026-02-23 07:02:46 [ERROR] Segmentation fault - 1845 +2026-02-23 07:02:46 [WARNING] - 16865 +2026-02-23 07:02:46 [DEBUG] - 28323 +2026-02-23 07:02:46 [DEBUG] - 16832 +2026-02-23 07:02:46 [CRITICAL] - 27331 +2026-02-23 07:02:46 [ERROR] Out of memory - 9394 +2026-02-23 07:02:46 [ERROR] Failed to connect - 18017 +2026-02-23 07:02:46 [ERROR] Out of memory - 18797 +2026-02-23 07:02:46 [INFO] - 31120 +2026-02-23 07:02:46 [ERROR] Segmentation fault - 7843 +2026-02-23 07:02:46 [CRITICAL] - 1290 +2026-02-23 07:02:46 [CRITICAL] - 23979 +2026-02-23 07:02:46 [WARNING] - 13403 +2026-02-23 07:02:46 [WARNING] - 7978 +2026-02-23 07:02:46 [WARNING] - 16483 +2026-02-23 07:02:46 [DEBUG] - 14583 +2026-02-23 07:02:46 [WARNING] - 5635 +2026-02-23 07:02:46 [INFO] - 15725 +2026-02-23 07:02:46 [ERROR] Segmentation fault - 23564 +2026-02-23 07:02:46 [WARNING] - 18237 +2026-02-23 07:02:46 [INFO] - 27253 +2026-02-23 07:02:46 [DEBUG] - 18848 +2026-02-23 07:02:46 [INFO] - 26891 +2026-02-23 07:02:46 [WARNING] - 20684 +2026-02-23 07:02:46 [CRITICAL] - 1689 +2026-02-23 07:02:46 [DEBUG] - 20311 +2026-02-23 07:02:46 [INFO] - 14302 +2026-02-23 07:02:46 [WARNING] - 24007 +2026-02-23 07:02:46 [CRITICAL] - 20169 +2026-02-23 07:02:46 [INFO] - 19944 +2026-02-23 07:02:46 [INFO] - 13958 +2026-02-23 07:02:46 [ERROR] Invalid input - 16155 +2026-02-23 07:02:46 [WARNING] - 20365 +2026-02-23 07:02:46 [INFO] - 5831 +2026-02-23 07:02:46 [WARNING] - 32644 +2026-02-23 07:02:46 [WARNING] - 22285 +2026-02-23 07:02:46 [ERROR] Disk full - 4167 +2026-02-23 07:02:46 [DEBUG] - 22889 +2026-02-23 07:02:46 [WARNING] - 13551 +2026-02-23 07:02:46 [WARNING] - 14423 +2026-02-23 07:02:46 [DEBUG] - 23941 +2026-02-23 07:02:46 [INFO] - 6261 +2026-02-23 07:02:46 [DEBUG] - 2026 +2026-02-23 07:02:46 [INFO] - 4584 +2026-02-23 07:02:46 [ERROR] Segmentation fault - 25202 +2026-02-23 07:02:46 [WARNING] - 16021 +2026-02-23 07:02:46 [WARNING] - 10570 +2026-02-23 07:02:46 [WARNING] - 17751 +2026-02-23 07:02:46 [WARNING] - 4208 +2026-02-23 07:02:46 [INFO] - 27502 +2026-02-23 07:02:46 [ERROR] Invalid input - 16224 +2026-02-23 07:02:46 [INFO] - 31966 +2026-02-23 07:02:46 [ERROR] Disk full - 4094 +2026-02-23 07:02:46 [ERROR] Out of memory - 8220 +2026-02-23 07:02:46 [DEBUG] - 15244 +2026-02-23 07:02:46 [INFO] - 11574 +2026-02-23 07:02:46 [CRITICAL] - 6439 +2026-02-23 07:02:46 [DEBUG] - 11599 +2026-02-23 07:02:46 [DEBUG] - 25340 +2026-02-23 07:02:46 [CRITICAL] - 31850 +2026-02-23 07:02:46 [DEBUG] - 24719 +2026-02-23 07:02:46 [INFO] - 16781 +2026-02-23 07:02:46 [INFO] - 14420 +2026-02-23 07:02:46 [CRITICAL] - 30493 +2026-02-23 07:02:46 [WARNING] - 29639 +2026-02-23 07:02:46 [WARNING] - 13382 +2026-02-23 07:02:46 [WARNING] - 4254 +2026-02-23 07:02:46 [ERROR] Disk full - 5852 +2026-02-23 07:02:46 [INFO] - 6224 +2026-02-23 07:02:46 [DEBUG] - 1309 +2026-02-23 07:02:46 [DEBUG] - 10081 +2026-02-23 07:02:46 [WARNING] - 3067 +2026-02-23 07:02:46 [DEBUG] - 6488 +2026-02-23 07:02:46 [ERROR] Failed to connect - 16420 +2026-02-23 07:02:46 [INFO] - 15785 +2026-02-23 07:02:46 [WARNING] - 23212 +2026-02-23 07:02:46 [CRITICAL] - 2425 +2026-02-23 07:02:46 [WARNING] - 17458 +2026-02-23 07:02:46 [DEBUG] - 31641 +2026-02-23 07:02:46 [INFO] - 6527 +2026-02-23 07:02:46 [ERROR] Disk full - 6311 +2026-02-23 07:02:46 [ERROR] Segmentation fault - 30744 +2026-02-23 07:02:46 [INFO] - 9562 +2026-02-23 07:02:46 [DEBUG] - 27412 +2026-02-23 07:02:46 [CRITICAL] - 10065 +2026-02-23 07:02:46 [CRITICAL] - 2347 +2026-02-23 07:02:46 [ERROR] Out of memory - 18439 +2026-02-23 07:02:46 [ERROR] Failed to connect - 21552 +2026-02-23 07:02:46 [DEBUG] - 26610 +2026-02-23 07:02:46 [CRITICAL] - 20020 +2026-02-23 07:02:46 [CRITICAL] - 10324 +2026-02-23 07:02:46 [DEBUG] - 12500 +2026-02-23 07:02:46 [ERROR] Disk full - 31867 +2026-02-23 07:02:46 [ERROR] Invalid input - 29679 +2026-02-23 07:02:46 [WARNING] - 30727 +2026-02-23 07:02:46 [DEBUG] - 30959 +2026-02-23 07:02:46 [CRITICAL] - 1473 +2026-02-23 07:02:46 [CRITICAL] - 32719 +2026-02-23 07:02:46 [INFO] - 4579 +2026-02-23 07:02:46 [DEBUG] - 30771 +2026-02-23 07:02:46 [WARNING] - 28401 +2026-02-23 07:02:46 [INFO] - 18801 +2026-02-23 07:02:46 [INFO] - 22463 +2026-02-23 07:02:46 [ERROR] Failed to connect - 25756 +2026-02-23 07:02:46 [INFO] - 17566 +2026-02-23 07:02:46 [DEBUG] - 29790 +2026-02-23 07:02:46 [ERROR] Segmentation fault - 4293 +2026-02-23 07:02:46 [DEBUG] - 23848 +2026-02-23 07:02:46 [INFO] - 22787 +2026-02-23 07:02:46 [CRITICAL] - 17050 +2026-02-23 07:02:46 [CRITICAL] - 7569 +2026-02-23 07:02:46 [DEBUG] - 2954 +2026-02-23 07:02:46 [DEBUG] - 23040 +2026-02-23 07:02:46 [INFO] - 19047 +2026-02-23 07:02:46 [WARNING] - 16711 +2026-02-23 07:02:46 [DEBUG] - 8995 +2026-02-23 07:02:46 [DEBUG] - 5356 +2026-02-23 07:02:46 [DEBUG] - 12264 +2026-02-23 07:02:46 [WARNING] - 29316 +2026-02-23 07:02:46 [ERROR] Disk full - 19398 +2026-02-23 07:02:46 [ERROR] Out of memory - 7390 +2026-02-23 07:02:46 [ERROR] Invalid input - 6319 +2026-02-23 07:02:46 [WARNING] - 11954 +2026-02-23 07:02:46 [WARNING] - 22828 +2026-02-23 07:02:46 [INFO] - 1722 +2026-02-23 07:02:46 [WARNING] - 21417 +2026-02-23 07:02:46 [CRITICAL] - 9369 +2026-02-23 07:02:46 [WARNING] - 10008 +2026-02-23 07:02:46 [ERROR] Failed to connect - 16316 +2026-02-23 07:02:46 [INFO] - 29838 +2026-02-23 07:02:46 [CRITICAL] - 22383 +2026-02-23 07:02:46 [CRITICAL] - 9912 +2026-02-23 07:02:46 [DEBUG] - 22928 +2026-02-23 07:02:46 [DEBUG] - 25235 +2026-02-23 07:02:46 [WARNING] - 18750 +2026-02-23 07:02:46 [INFO] - 26075 +2026-02-23 07:02:46 [WARNING] - 25100 +2026-02-23 07:02:46 [DEBUG] - 22000 +2026-02-23 07:02:46 [INFO] - 5146 +2026-02-23 07:02:46 [WARNING] - 24972 +2026-02-23 07:02:46 [CRITICAL] - 855 +2026-02-23 07:02:46 [WARNING] - 29962 +2026-02-23 07:02:46 [INFO] - 28192 +2026-02-23 07:02:46 [DEBUG] - 19246 +2026-02-23 07:02:46 [ERROR] Out of memory - 26306 +2026-02-23 07:02:46 [CRITICAL] - 789 +2026-02-23 07:02:46 [DEBUG] - 31424 +2026-02-23 07:02:46 [CRITICAL] - 10391 +2026-02-23 07:02:46 [DEBUG] - 30383 +2026-02-23 07:02:46 [DEBUG] - 20549 +2026-02-23 07:02:46 [WARNING] - 31155 +2026-02-23 07:02:46 [INFO] - 2461 +2026-02-23 07:02:46 [ERROR] Invalid input - 25931 +2026-02-23 07:02:46 [INFO] - 12252 +2026-02-23 07:02:46 [CRITICAL] - 19702 +2026-02-23 07:02:46 [ERROR] Out of memory - 21191 +2026-02-23 07:02:46 [ERROR] Out of memory - 19119 +2026-02-23 07:02:46 [CRITICAL] - 18860 +2026-02-23 07:02:46 [ERROR] Invalid input - 22870 +2026-02-23 07:02:46 [CRITICAL] - 17915 +2026-02-23 07:02:46 [CRITICAL] - 5431 +2026-02-23 07:02:46 [WARNING] - 28609 +2026-02-23 07:02:46 [DEBUG] - 4811 +2026-02-23 07:02:46 [DEBUG] - 23525 +2026-02-23 07:02:46 [CRITICAL] - 10010 +2026-02-23 07:02:46 [INFO] - 10950 +2026-02-23 07:02:46 [CRITICAL] - 3662 +2026-02-23 07:02:46 [CRITICAL] - 30576 +2026-02-23 07:02:46 [WARNING] - 30425 +2026-02-23 07:02:46 [CRITICAL] - 10437 +2026-02-23 07:02:46 [WARNING] - 32663 +2026-02-23 07:02:46 [DEBUG] - 24075 +2026-02-23 07:02:46 [ERROR] Invalid input - 11991 +2026-02-23 07:02:46 [INFO] - 10445 +2026-02-23 07:02:46 [INFO] - 28814 +2026-02-23 07:02:46 [DEBUG] - 11832 +2026-02-23 07:02:46 [INFO] - 3428 +2026-02-23 07:02:46 [CRITICAL] - 24666 +2026-02-23 07:02:46 [DEBUG] - 25149 +2026-02-23 07:02:46 [INFO] - 15291 +2026-02-23 07:02:46 [CRITICAL] - 31120 +2026-02-23 07:02:46 [INFO] - 6971 +2026-02-23 07:02:46 [WARNING] - 22158 +2026-02-23 07:02:46 [DEBUG] - 29005 +2026-02-23 07:02:46 [CRITICAL] - 30016 +2026-02-23 07:02:46 [ERROR] Disk full - 4060 +2026-02-23 07:02:46 [CRITICAL] - 25079 +2026-02-23 07:02:46 [INFO] - 32529 +2026-02-23 07:02:46 [ERROR] Out of memory - 19271 +2026-02-23 07:02:46 [DEBUG] - 23121 +2026-02-23 07:02:46 [CRITICAL] - 15069 +2026-02-23 07:02:46 [CRITICAL] - 29705 +2026-02-23 07:02:46 [CRITICAL] - 9882 +2026-02-23 07:02:46 [INFO] - 10740 +2026-02-23 07:02:46 [CRITICAL] - 5080 +2026-02-23 07:02:46 [INFO] - 17913 +2026-02-23 07:02:46 [CRITICAL] - 32260 +2026-02-23 07:02:46 [CRITICAL] - 31545 +2026-02-23 07:02:46 [WARNING] - 12361 +2026-02-23 07:02:46 [ERROR] Failed to connect - 21128 +2026-02-23 07:02:46 [CRITICAL] - 19244 +2026-02-23 07:02:46 [WARNING] - 258 +2026-02-23 07:02:46 [DEBUG] - 7435 +2026-02-23 07:02:46 [WARNING] - 26316 +2026-02-23 07:02:46 [DEBUG] - 19564 +2026-02-23 07:02:46 [WARNING] - 4475 +2026-02-23 07:02:46 [DEBUG] - 30895 +2026-02-23 07:02:46 [WARNING] - 6489 +2026-02-23 07:02:46 [CRITICAL] - 7998 +2026-02-23 07:02:46 [DEBUG] - 27414 +2026-02-23 07:02:46 [INFO] - 5243 +2026-02-23 07:02:46 [INFO] - 24789 +2026-02-23 07:02:46 [ERROR] Segmentation fault - 5916 +2026-02-23 07:02:46 [DEBUG] - 30948 +2026-02-23 07:02:46 [WARNING] - 14727 +2026-02-23 07:02:46 [CRITICAL] - 8324 +2026-02-23 07:02:46 [CRITICAL] - 1542 +2026-02-23 07:02:46 [DEBUG] - 4848 +2026-02-23 07:02:46 [INFO] - 16040 +2026-02-23 07:02:46 [INFO] - 24996 +2026-02-23 07:02:46 [DEBUG] - 24161 +2026-02-23 07:02:46 [ERROR] Out of memory - 17030 +2026-02-23 07:02:46 [INFO] - 27979 +2026-02-23 07:02:46 [ERROR] Out of memory - 30591 +2026-02-23 07:02:46 [DEBUG] - 26560 +2026-02-23 07:02:46 [INFO] - 5709 +2026-02-23 07:02:46 [CRITICAL] - 30169 +2026-02-23 07:02:46 [INFO] - 20421 +2026-02-23 07:02:46 [ERROR] Segmentation fault - 29388 +2026-02-23 07:02:46 [CRITICAL] - 17064 +2026-02-23 07:02:46 [INFO] - 4683 +2026-02-23 07:02:46 [WARNING] - 27071 +2026-02-23 07:02:46 [WARNING] - 9270 +2026-02-23 07:02:46 [DEBUG] - 14474 +2026-02-23 07:02:46 [WARNING] - 24109 +2026-02-23 07:02:46 [CRITICAL] - 28087 +2026-02-23 07:02:46 [DEBUG] - 23394 +2026-02-23 07:02:46 [CRITICAL] - 6829 +2026-02-23 07:02:46 [INFO] - 15963 +2026-02-23 07:02:46 [CRITICAL] - 27671 +2026-02-23 07:02:46 [WARNING] - 31703 +2026-02-23 07:02:46 [CRITICAL] - 22710 +2026-02-23 07:02:46 [ERROR] Invalid input - 12616 +2026-02-23 07:02:46 [INFO] - 2059 +2026-02-23 07:02:46 [INFO] - 27232 +2026-02-23 07:02:46 [ERROR] Out of memory - 27239 +2026-02-23 07:02:46 [DEBUG] - 9786 +2026-02-23 07:02:46 [CRITICAL] - 22298 +2026-02-23 07:02:46 [WARNING] - 18792 +2026-02-23 07:02:46 [CRITICAL] - 20639 +2026-02-23 07:02:46 [ERROR] Out of memory - 8649 +2026-02-23 07:02:46 [INFO] - 3573 +2026-02-23 07:02:46 [INFO] - 642 +2026-02-23 07:02:46 [ERROR] Segmentation fault - 23509 +2026-02-23 07:02:46 [DEBUG] - 15584 +2026-02-23 07:02:46 [INFO] - 20746 +2026-02-23 07:02:46 [DEBUG] - 7161 +2026-02-23 07:02:46 [DEBUG] - 26124 +2026-02-23 07:02:46 [INFO] - 18640 +2026-02-23 07:02:46 [INFO] - 2704 +2026-02-23 07:02:46 [DEBUG] - 21993 +2026-02-23 07:02:46 [DEBUG] - 7448 +2026-02-23 07:02:46 [WARNING] - 3791 +2026-02-23 07:02:46 [WARNING] - 26321 +2026-02-23 07:02:46 [CRITICAL] - 19104 +2026-02-23 07:02:46 [WARNING] - 12529 +2026-02-23 07:02:46 [CRITICAL] - 343 +2026-02-23 07:02:46 [DEBUG] - 21235 +2026-02-23 07:02:46 [INFO] - 17035 +2026-02-23 07:02:46 [ERROR] Segmentation fault - 4435 +2026-02-23 07:02:46 [ERROR] Segmentation fault - 25132 +2026-02-23 07:02:46 [WARNING] - 3249 +2026-02-23 07:02:46 [WARNING] - 5098 +2026-02-23 07:02:46 [DEBUG] - 32715 +2026-02-23 07:02:46 [WARNING] - 32633 +2026-02-23 07:02:46 [DEBUG] - 3364 +2026-02-23 07:02:46 [CRITICAL] - 10181 +2026-02-23 07:02:46 [WARNING] - 22647 +2026-02-23 07:02:46 [CRITICAL] - 8862 +2026-02-23 07:02:46 [INFO] - 572 +2026-02-23 07:02:46 [DEBUG] - 10328 +2026-02-23 07:02:46 [DEBUG] - 10931 +2026-02-23 07:02:46 [DEBUG] - 466 +2026-02-23 07:02:46 [ERROR] Failed to connect - 29192 +2026-02-23 07:02:46 [INFO] - 31984 +2026-02-23 07:02:46 [INFO] - 32268 +2026-02-23 07:02:46 [ERROR] Out of memory - 27788 +2026-02-23 07:02:46 [INFO] - 10609 +2026-02-23 07:02:46 [DEBUG] - 16855 +2026-02-23 07:02:46 [CRITICAL] - 24741 +2026-02-23 07:02:46 [ERROR] Invalid input - 25066 +2026-02-23 07:02:46 [DEBUG] - 14629 +2026-02-23 07:02:46 [ERROR] Disk full - 17270 +2026-02-23 07:02:46 [ERROR] Failed to connect - 23806 +2026-02-23 07:02:46 [WARNING] - 17665 +2026-02-23 07:02:46 [WARNING] - 10606 +2026-02-23 07:02:46 [CRITICAL] - 31391 +2026-02-23 07:02:46 [ERROR] Segmentation fault - 1728 +2026-02-23 07:02:46 [INFO] - 9966 +2026-02-23 07:02:46 [DEBUG] - 8306 +2026-02-23 07:02:46 [ERROR] Segmentation fault - 15088 +2026-02-23 07:02:46 [INFO] - 26755 +2026-02-23 07:02:46 [ERROR] Disk full - 11252 +2026-02-23 07:02:46 [INFO] - 5448 +2026-02-23 07:02:46 [ERROR] Disk full - 10148 +2026-02-23 07:02:46 [WARNING] - 30677 +2026-02-23 07:02:46 [INFO] - 5308 +2026-02-23 07:02:46 [CRITICAL] - 17408 +2026-02-23 07:02:46 [CRITICAL] - 17941 +2026-02-23 07:02:46 [DEBUG] - 19784 +2026-02-23 07:02:46 [ERROR] Invalid input - 24175 +2026-02-23 07:02:46 [ERROR] Disk full - 3636 +2026-02-23 07:02:46 [DEBUG] - 6032 +2026-02-23 07:02:46 [WARNING] - 31084 +2026-02-23 07:02:46 [WARNING] - 22718 +2026-02-23 07:02:46 [WARNING] - 6731 +2026-02-23 07:02:46 [ERROR] Out of memory - 6632 +2026-02-23 07:02:46 [WARNING] - 14099 +2026-02-23 07:02:46 [DEBUG] - 20554 +2026-02-23 07:02:46 [DEBUG] - 23990 +2026-02-23 07:02:46 [CRITICAL] - 6264 +2026-02-23 07:02:46 [INFO] - 10581 +2026-02-23 07:02:46 [CRITICAL] - 30293 +2026-02-23 07:02:46 [CRITICAL] - 31875 +2026-02-23 07:02:46 [ERROR] Invalid input - 28622 +2026-02-23 07:02:46 [INFO] - 15102 +2026-02-23 07:02:46 [ERROR] Disk full - 17543 +2026-02-23 07:02:46 [CRITICAL] - 9196 +2026-02-23 07:02:46 [ERROR] Failed to connect - 23108 +2026-02-23 07:02:46 [CRITICAL] - 25961 +2026-02-23 07:02:46 [CRITICAL] - 14965 +2026-02-23 07:02:46 [DEBUG] - 32259 +2026-02-23 07:02:46 [ERROR] Invalid input - 8491 +2026-02-23 07:02:46 [ERROR] Disk full - 14563 +2026-02-23 07:02:46 [CRITICAL] - 26138 +2026-02-23 07:02:46 [ERROR] Invalid input - 4996 +2026-02-23 07:02:46 [WARNING] - 29272 +2026-02-23 07:02:46 [ERROR] Disk full - 31299 +2026-02-23 07:02:46 [CRITICAL] - 29835 +2026-02-23 07:02:46 [INFO] - 13178 +2026-02-23 07:02:46 [ERROR] Failed to connect - 32504 +2026-02-23 07:02:46 [INFO] - 9206 +2026-02-23 07:02:46 [CRITICAL] - 26824 +2026-02-23 07:02:46 [WARNING] - 4595 +2026-02-23 07:02:46 [CRITICAL] - 11601 +2026-02-23 07:02:46 [ERROR] Disk full - 7952 +2026-02-23 07:02:46 [CRITICAL] - 13111 +2026-02-23 07:02:46 [ERROR] Disk full - 22290 +2026-02-23 07:02:46 [DEBUG] - 12269 +2026-02-23 07:02:46 [DEBUG] - 14206 +2026-02-23 07:02:46 [WARNING] - 1962 +2026-02-23 07:02:46 [WARNING] - 8320 +2026-02-23 07:02:46 [ERROR] Disk full - 9117 +2026-02-23 07:02:46 [INFO] - 1254 +2026-02-23 07:02:46 [DEBUG] - 27225 +2026-02-23 07:02:46 [CRITICAL] - 23069 +2026-02-23 07:02:46 [WARNING] - 8691 +2026-02-23 07:02:46 [CRITICAL] - 17630 +2026-02-23 07:02:46 [INFO] - 25599 +2026-02-23 07:02:46 [INFO] - 9991 +2026-02-23 07:02:46 [WARNING] - 11864 +2026-02-23 07:02:46 [CRITICAL] - 30670 +2026-02-23 07:02:46 [CRITICAL] - 22613 +2026-02-23 07:02:46 [DEBUG] - 28120 +2026-02-23 07:02:46 [CRITICAL] - 6496 +2026-02-23 07:02:46 [CRITICAL] - 21210 +2026-02-23 07:02:46 [CRITICAL] - 26637 +2026-02-23 07:02:46 [DEBUG] - 6202 +2026-02-23 07:02:46 [DEBUG] - 6235 +2026-02-23 07:02:46 [DEBUG] - 5349 +2026-02-23 07:02:46 [INFO] - 6273 +2026-02-23 07:02:46 [WARNING] - 32645 +2026-02-23 07:02:46 [WARNING] - 14444 +2026-02-23 07:02:46 [ERROR] Out of memory - 9794 +2026-02-23 07:02:46 [DEBUG] - 11648 +2026-02-23 07:02:46 [ERROR] Disk full - 4591 +2026-02-23 07:02:46 [INFO] - 3149 +2026-02-23 07:02:46 [CRITICAL] - 10461 +2026-02-23 07:02:46 [ERROR] Disk full - 18734 +2026-02-23 07:02:46 [INFO] - 28881 +2026-02-23 07:02:46 [INFO] - 479 +2026-02-23 07:02:46 [ERROR] Invalid input - 14243 +2026-02-23 07:02:46 [WARNING] - 9115 +2026-02-23 07:02:46 [CRITICAL] - 22908 +2026-02-23 07:02:46 [WARNING] - 6870 +2026-02-23 07:02:46 [ERROR] Out of memory - 14540 +2026-02-23 07:02:46 [WARNING] - 14706 +2026-02-23 07:02:46 [WARNING] - 13589 +2026-02-23 07:02:46 [CRITICAL] - 14524 +2026-02-23 07:02:46 [ERROR] Failed to connect - 15284 +2026-02-23 07:02:46 [ERROR] Out of memory - 12409 +2026-02-23 07:02:46 [ERROR] Invalid input - 18682 +2026-02-23 07:02:46 [INFO] - 12002 +2026-02-23 07:02:46 [ERROR] Segmentation fault - 12267 +2026-02-23 07:02:46 [WARNING] - 9316 +2026-02-23 07:02:46 [WARNING] - 27591 +2026-02-23 07:02:46 [CRITICAL] - 331 +2026-02-23 07:02:46 [INFO] - 12420 +2026-02-23 07:02:46 [WARNING] - 19816 +2026-02-23 07:02:46 [ERROR] Disk full - 18032 +2026-02-23 07:02:46 [CRITICAL] - 25856 +2026-02-23 07:02:46 [ERROR] Segmentation fault - 9186 +2026-02-23 07:02:46 [DEBUG] - 14649 +2026-02-23 07:02:46 [INFO] - 10754 +2026-02-23 07:02:46 [CRITICAL] - 25025 +2026-02-23 07:02:46 [ERROR] Segmentation fault - 1595 +2026-02-23 07:02:46 [ERROR] Invalid input - 30835 +2026-02-23 07:02:46 [CRITICAL] - 12716 +2026-02-23 07:02:46 [CRITICAL] - 4692 +2026-02-23 07:02:46 [WARNING] - 18343 +2026-02-23 07:02:46 [ERROR] Disk full - 6552 +2026-02-23 07:02:46 [ERROR] Failed to connect - 15407 +2026-02-23 07:02:46 [INFO] - 2987 +2026-02-23 07:02:46 [INFO] - 27841 +2026-02-23 07:02:46 [DEBUG] - 30596 +2026-02-23 07:02:46 [INFO] - 21997 +2026-02-23 07:02:46 [DEBUG] - 13368 +2026-02-23 07:02:46 [INFO] - 5378 +2026-02-23 07:02:46 [DEBUG] - 1965 +2026-02-23 07:02:46 [DEBUG] - 5258 +2026-02-23 07:02:46 [DEBUG] - 133 diff --git a/2026/day-20/scripts/archive/log_report.txt b/2026/day-20/scripts/archive/log_report.txt new file mode 100644 index 0000000000..143516b101 --- /dev/null +++ b/2026/day-20/scripts/archive/log_report.txt @@ -0,0 +1,10000 @@ +2026-02-23 06:48:52 [CRITICAL] - 22197 +2026-02-23 06:48:52 [DEBUG] - 27545 +2026-02-23 06:48:52 [WARNING] - 17312 +2026-02-23 06:48:52 [WARNING] - 13150 +2026-02-23 06:48:52 [INFO] - 17557 +2026-02-23 06:48:52 [ERROR] Segmentation fault - 20651 +2026-02-23 06:48:52 [ERROR] Invalid input - 14093 +2026-02-23 06:48:52 [DEBUG] - 11303 +2026-02-23 06:48:52 [CRITICAL] - 2647 +2026-02-23 06:48:52 [ERROR] Out of memory - 11796 +2026-02-23 06:48:52 [INFO] - 15500 +2026-02-23 06:48:52 [INFO] - 3771 +2026-02-23 06:48:52 [WARNING] - 14698 +2026-02-23 06:48:52 [INFO] - 26399 +2026-02-23 06:48:52 [WARNING] - 8070 +2026-02-23 06:48:52 [ERROR] Out of memory - 15550 +2026-02-23 06:48:52 [ERROR] Out of memory - 27498 +2026-02-23 06:48:52 [ERROR] Invalid input - 31345 +2026-02-23 06:48:52 [INFO] - 2791 +2026-02-23 06:48:52 [CRITICAL] - 32012 +2026-02-23 06:48:52 [CRITICAL] - 8191 +2026-02-23 06:48:52 [CRITICAL] - 29978 +2026-02-23 06:48:52 [ERROR] Out of memory - 10432 +2026-02-23 06:48:52 [WARNING] - 13354 +2026-02-23 06:48:52 [DEBUG] - 14899 +2026-02-23 06:48:52 [WARNING] - 30684 +2026-02-23 06:48:52 [WARNING] - 27358 +2026-02-23 06:48:52 [CRITICAL] - 17925 +2026-02-23 06:48:52 [CRITICAL] - 22595 +2026-02-23 06:48:52 [ERROR] Segmentation fault - 1315 +2026-02-23 06:48:52 [DEBUG] - 32181 +2026-02-23 06:48:52 [ERROR] Out of memory - 23895 +2026-02-23 06:48:52 [INFO] - 29329 +2026-02-23 06:48:52 [WARNING] - 11363 +2026-02-23 06:48:52 [DEBUG] - 21236 +2026-02-23 06:48:52 [DEBUG] - 16316 +2026-02-23 06:48:52 [WARNING] - 16221 +2026-02-23 06:48:52 [ERROR] Invalid input - 7790 +2026-02-23 06:48:52 [INFO] - 28975 +2026-02-23 06:48:52 [CRITICAL] - 12333 +2026-02-23 06:48:52 [ERROR] Failed to connect - 5771 +2026-02-23 06:48:52 [CRITICAL] - 19850 +2026-02-23 06:48:52 [WARNING] - 21213 +2026-02-23 06:48:52 [INFO] - 19858 +2026-02-23 06:48:52 [DEBUG] - 16273 +2026-02-23 06:48:52 [DEBUG] - 27868 +2026-02-23 06:48:52 [WARNING] - 4643 +2026-02-23 06:48:52 [INFO] - 10392 +2026-02-23 06:48:52 [CRITICAL] - 28277 +2026-02-23 06:48:52 [CRITICAL] - 21773 +2026-02-23 06:48:52 [ERROR] Segmentation fault - 19341 +2026-02-23 06:48:52 [CRITICAL] - 14133 +2026-02-23 06:48:52 [INFO] - 11088 +2026-02-23 06:48:52 [DEBUG] - 27792 +2026-02-23 06:48:52 [INFO] - 9805 +2026-02-23 06:48:52 [ERROR] Failed to connect - 5020 +2026-02-23 06:48:52 [ERROR] Out of memory - 13967 +2026-02-23 06:48:52 [ERROR] Failed to connect - 26248 +2026-02-23 06:48:52 [WARNING] - 20516 +2026-02-23 06:48:52 [CRITICAL] - 9247 +2026-02-23 06:48:52 [CRITICAL] - 18569 +2026-02-23 06:48:52 [CRITICAL] - 24871 +2026-02-23 06:48:52 [INFO] - 17010 +2026-02-23 06:48:52 [INFO] - 10050 +2026-02-23 06:48:52 [DEBUG] - 838 +2026-02-23 06:48:52 [DEBUG] - 30663 +2026-02-23 06:48:52 [ERROR] Invalid input - 32211 +2026-02-23 06:48:52 [INFO] - 11705 +2026-02-23 06:48:52 [WARNING] - 20169 +2026-02-23 06:48:52 [WARNING] - 25449 +2026-02-23 06:48:52 [DEBUG] - 16823 +2026-02-23 06:48:52 [CRITICAL] - 11366 +2026-02-23 06:48:52 [CRITICAL] - 521 +2026-02-23 06:48:52 [INFO] - 10920 +2026-02-23 06:48:52 [DEBUG] - 25750 +2026-02-23 06:48:52 [CRITICAL] - 5726 +2026-02-23 06:48:52 [CRITICAL] - 24220 +2026-02-23 06:48:52 [CRITICAL] - 27448 +2026-02-23 06:48:52 [CRITICAL] - 1478 +2026-02-23 06:48:52 [DEBUG] - 1793 +2026-02-23 06:48:52 [INFO] - 10980 +2026-02-23 06:48:52 [INFO] - 2115 +2026-02-23 06:48:52 [WARNING] - 2844 +2026-02-23 06:48:52 [WARNING] - 14183 +2026-02-23 06:48:52 [DEBUG] - 20697 +2026-02-23 06:48:52 [INFO] - 26550 +2026-02-23 06:48:52 [ERROR] Disk full - 31030 +2026-02-23 06:48:52 [DEBUG] - 7031 +2026-02-23 06:48:52 [CRITICAL] - 28522 +2026-02-23 06:48:52 [DEBUG] - 4500 +2026-02-23 06:48:52 [ERROR] Disk full - 19198 +2026-02-23 06:48:52 [DEBUG] - 5530 +2026-02-23 06:48:52 [WARNING] - 4217 +2026-02-23 06:48:52 [INFO] - 18465 +2026-02-23 06:48:52 [CRITICAL] - 5719 +2026-02-23 06:48:52 [DEBUG] - 19955 +2026-02-23 06:48:52 [CRITICAL] - 22287 +2026-02-23 06:48:52 [ERROR] Out of memory - 16271 +2026-02-23 06:48:52 [INFO] - 8538 +2026-02-23 06:48:52 [CRITICAL] - 1941 +2026-02-23 06:48:52 [DEBUG] - 30582 +2026-02-23 06:48:52 [DEBUG] - 20485 +2026-02-23 06:48:52 [CRITICAL] - 9770 +2026-02-23 06:48:52 [WARNING] - 29522 +2026-02-23 06:48:52 [ERROR] Invalid input - 26379 +2026-02-23 06:48:52 [INFO] - 23436 +2026-02-23 06:48:52 [WARNING] - 3264 +2026-02-23 06:48:52 [DEBUG] - 24634 +2026-02-23 06:48:52 [INFO] - 3994 +2026-02-23 06:48:52 [WARNING] - 5336 +2026-02-23 06:48:52 [INFO] - 2262 +2026-02-23 06:48:52 [DEBUG] - 23391 +2026-02-23 06:48:52 [DEBUG] - 19659 +2026-02-23 06:48:52 [DEBUG] - 25209 +2026-02-23 06:48:52 [ERROR] Failed to connect - 9739 +2026-02-23 06:48:52 [WARNING] - 14925 +2026-02-23 06:48:52 [CRITICAL] - 4861 +2026-02-23 06:48:52 [DEBUG] - 29424 +2026-02-23 06:48:52 [ERROR] Disk full - 23749 +2026-02-23 06:48:52 [ERROR] Segmentation fault - 26071 +2026-02-23 06:48:52 [WARNING] - 1805 +2026-02-23 06:48:52 [INFO] - 3373 +2026-02-23 06:48:52 [INFO] - 14204 +2026-02-23 06:48:52 [WARNING] - 5791 +2026-02-23 06:48:52 [WARNING] - 23576 +2026-02-23 06:48:52 [WARNING] - 2607 +2026-02-23 06:48:52 [DEBUG] - 13628 +2026-02-23 06:48:52 [ERROR] Failed to connect - 30721 +2026-02-23 06:48:52 [DEBUG] - 26775 +2026-02-23 06:48:52 [ERROR] Out of memory - 25379 +2026-02-23 06:48:52 [CRITICAL] - 2928 +2026-02-23 06:48:52 [CRITICAL] - 1953 +2026-02-23 06:48:52 [INFO] - 3538 +2026-02-23 06:48:52 [INFO] - 15361 +2026-02-23 06:48:52 [INFO] - 3826 +2026-02-23 06:48:52 [ERROR] Segmentation fault - 21112 +2026-02-23 06:48:52 [INFO] - 27572 +2026-02-23 06:48:52 [WARNING] - 12650 +2026-02-23 06:48:52 [ERROR] Out of memory - 21798 +2026-02-23 06:48:52 [ERROR] Disk full - 14463 +2026-02-23 06:48:52 [CRITICAL] - 5731 +2026-02-23 06:48:52 [INFO] - 17256 +2026-02-23 06:48:52 [ERROR] Disk full - 16390 +2026-02-23 06:48:52 [ERROR] Out of memory - 24647 +2026-02-23 06:48:52 [INFO] - 2147 +2026-02-23 06:48:52 [ERROR] Segmentation fault - 29831 +2026-02-23 06:48:52 [DEBUG] - 10382 +2026-02-23 06:48:52 [CRITICAL] - 25234 +2026-02-23 06:48:52 [ERROR] Disk full - 25732 +2026-02-23 06:48:52 [WARNING] - 12188 +2026-02-23 06:48:52 [ERROR] Invalid input - 19279 +2026-02-23 06:48:52 [CRITICAL] - 24265 +2026-02-23 06:48:52 [INFO] - 1690 +2026-02-23 06:48:52 [DEBUG] - 26742 +2026-02-23 06:48:52 [DEBUG] - 27241 +2026-02-23 06:48:52 [ERROR] Failed to connect - 11977 +2026-02-23 06:48:52 [ERROR] Invalid input - 5483 +2026-02-23 06:48:52 [WARNING] - 14468 +2026-02-23 06:48:52 [DEBUG] - 29462 +2026-02-23 06:48:52 [CRITICAL] - 20602 +2026-02-23 06:48:52 [CRITICAL] - 1072 +2026-02-23 06:48:52 [WARNING] - 25276 +2026-02-23 06:48:52 [ERROR] Segmentation fault - 3153 +2026-02-23 06:48:52 [DEBUG] - 2816 +2026-02-23 06:48:52 [CRITICAL] - 3067 +2026-02-23 06:48:52 [ERROR] Disk full - 20490 +2026-02-23 06:48:52 [CRITICAL] - 749 +2026-02-23 06:48:52 [INFO] - 30009 +2026-02-23 06:48:52 [INFO] - 24653 +2026-02-23 06:48:52 [DEBUG] - 12466 +2026-02-23 06:48:52 [DEBUG] - 16433 +2026-02-23 06:48:52 [DEBUG] - 23905 +2026-02-23 06:48:52 [DEBUG] - 6878 +2026-02-23 06:48:52 [INFO] - 24411 +2026-02-23 06:48:52 [DEBUG] - 25277 +2026-02-23 06:48:52 [CRITICAL] - 3322 +2026-02-23 06:48:52 [INFO] - 25231 +2026-02-23 06:48:52 [DEBUG] - 1500 +2026-02-23 06:48:52 [WARNING] - 18104 +2026-02-23 06:48:52 [INFO] - 17209 +2026-02-23 06:48:52 [WARNING] - 11329 +2026-02-23 06:48:52 [INFO] - 10194 +2026-02-23 06:48:52 [DEBUG] - 15515 +2026-02-23 06:48:52 [CRITICAL] - 12595 +2026-02-23 06:48:52 [WARNING] - 1070 +2026-02-23 06:48:52 [DEBUG] - 22590 +2026-02-23 06:48:52 [DEBUG] - 12043 +2026-02-23 06:48:52 [ERROR] Disk full - 4580 +2026-02-23 06:48:52 [INFO] - 3750 +2026-02-23 06:48:52 [INFO] - 4962 +2026-02-23 06:48:52 [CRITICAL] - 20379 +2026-02-23 06:48:52 [WARNING] - 26120 +2026-02-23 06:48:52 [ERROR] Failed to connect - 22139 +2026-02-23 06:48:52 [DEBUG] - 11017 +2026-02-23 06:48:52 [INFO] - 19930 +2026-02-23 06:48:52 [INFO] - 13031 +2026-02-23 06:48:52 [INFO] - 20982 +2026-02-23 06:48:52 [WARNING] - 9263 +2026-02-23 06:48:52 [CRITICAL] - 4429 +2026-02-23 06:48:52 [CRITICAL] - 5460 +2026-02-23 06:48:52 [CRITICAL] - 16836 +2026-02-23 06:48:52 [DEBUG] - 262 +2026-02-23 06:48:52 [INFO] - 14407 +2026-02-23 06:48:52 [WARNING] - 24053 +2026-02-23 06:48:52 [ERROR] Segmentation fault - 13791 +2026-02-23 06:48:52 [INFO] - 31128 +2026-02-23 06:48:52 [DEBUG] - 24770 +2026-02-23 06:48:52 [CRITICAL] - 3595 +2026-02-23 06:48:52 [WARNING] - 3287 +2026-02-23 06:48:52 [CRITICAL] - 19651 +2026-02-23 06:48:52 [DEBUG] - 7817 +2026-02-23 06:48:52 [WARNING] - 14420 +2026-02-23 06:48:52 [DEBUG] - 3140 +2026-02-23 06:48:52 [INFO] - 11095 +2026-02-23 06:48:52 [CRITICAL] - 10514 +2026-02-23 06:48:52 [WARNING] - 17928 +2026-02-23 06:48:52 [INFO] - 28960 +2026-02-23 06:48:52 [INFO] - 7657 +2026-02-23 06:48:52 [CRITICAL] - 3222 +2026-02-23 06:48:52 [INFO] - 30832 +2026-02-23 06:48:52 [DEBUG] - 2929 +2026-02-23 06:48:52 [WARNING] - 21551 +2026-02-23 06:48:52 [ERROR] Out of memory - 14809 +2026-02-23 06:48:52 [WARNING] - 17855 +2026-02-23 06:48:52 [CRITICAL] - 13636 +2026-02-23 06:48:52 [WARNING] - 18197 +2026-02-23 06:48:52 [INFO] - 840 +2026-02-23 06:48:52 [INFO] - 10879 +2026-02-23 06:48:52 [CRITICAL] - 12137 +2026-02-23 06:48:52 [ERROR] Disk full - 4290 +2026-02-23 06:48:52 [INFO] - 24759 +2026-02-23 06:48:52 [ERROR] Failed to connect - 23717 +2026-02-23 06:48:52 [ERROR] Failed to connect - 2012 +2026-02-23 06:48:52 [DEBUG] - 22878 +2026-02-23 06:48:52 [WARNING] - 520 +2026-02-23 06:48:52 [DEBUG] - 16645 +2026-02-23 06:48:52 [WARNING] - 17126 +2026-02-23 06:48:52 [INFO] - 28042 +2026-02-23 06:48:52 [WARNING] - 17277 +2026-02-23 06:48:52 [CRITICAL] - 24431 +2026-02-23 06:48:52 [WARNING] - 25564 +2026-02-23 06:48:52 [CRITICAL] - 6240 +2026-02-23 06:48:52 [CRITICAL] - 14965 +2026-02-23 06:48:52 [ERROR] Segmentation fault - 4607 +2026-02-23 06:48:52 [CRITICAL] - 19555 +2026-02-23 06:48:52 [ERROR] Invalid input - 22047 +2026-02-23 06:48:52 [DEBUG] - 27747 +2026-02-23 06:48:52 [INFO] - 28928 +2026-02-23 06:48:52 [INFO] - 31341 +2026-02-23 06:48:52 [WARNING] - 3818 +2026-02-23 06:48:52 [DEBUG] - 26662 +2026-02-23 06:48:52 [CRITICAL] - 14214 +2026-02-23 06:48:52 [WARNING] - 2042 +2026-02-23 06:48:52 [ERROR] Invalid input - 12311 +2026-02-23 06:48:52 [DEBUG] - 15408 +2026-02-23 06:48:52 [ERROR] Segmentation fault - 3396 +2026-02-23 06:48:52 [ERROR] Out of memory - 31490 +2026-02-23 06:48:52 [INFO] - 21292 +2026-02-23 06:48:52 [WARNING] - 4759 +2026-02-23 06:48:52 [ERROR] Out of memory - 29144 +2026-02-23 06:48:52 [DEBUG] - 18529 +2026-02-23 06:48:52 [INFO] - 26205 +2026-02-23 06:48:52 [WARNING] - 15659 +2026-02-23 06:48:52 [CRITICAL] - 10173 +2026-02-23 06:48:52 [DEBUG] - 6292 +2026-02-23 06:48:52 [WARNING] - 23987 +2026-02-23 06:48:52 [INFO] - 9927 +2026-02-23 06:48:52 [CRITICAL] - 7038 +2026-02-23 06:48:52 [ERROR] Invalid input - 1247 +2026-02-23 06:48:52 [INFO] - 21801 +2026-02-23 06:48:52 [WARNING] - 19923 +2026-02-23 06:48:52 [CRITICAL] - 9148 +2026-02-23 06:48:52 [ERROR] Invalid input - 18891 +2026-02-23 06:48:52 [INFO] - 2863 +2026-02-23 06:48:52 [ERROR] Invalid input - 29874 +2026-02-23 06:48:52 [WARNING] - 18796 +2026-02-23 06:48:52 [INFO] - 27919 +2026-02-23 06:48:52 [INFO] - 8019 +2026-02-23 06:48:52 [DEBUG] - 13814 +2026-02-23 06:48:52 [INFO] - 10085 +2026-02-23 06:48:52 [DEBUG] - 17025 +2026-02-23 06:48:52 [INFO] - 16760 +2026-02-23 06:48:52 [INFO] - 9516 +2026-02-23 06:48:52 [ERROR] Segmentation fault - 25713 +2026-02-23 06:48:52 [INFO] - 22941 +2026-02-23 06:48:52 [WARNING] - 785 +2026-02-23 06:48:52 [ERROR] Failed to connect - 12171 +2026-02-23 06:48:52 [WARNING] - 8905 +2026-02-23 06:48:52 [ERROR] Disk full - 2823 +2026-02-23 06:48:52 [DEBUG] - 30973 +2026-02-23 06:48:52 [INFO] - 2401 +2026-02-23 06:48:52 [CRITICAL] - 21173 +2026-02-23 06:48:52 [ERROR] Disk full - 25174 +2026-02-23 06:48:52 [DEBUG] - 16691 +2026-02-23 06:48:52 [DEBUG] - 17652 +2026-02-23 06:48:52 [INFO] - 13200 +2026-02-23 06:48:52 [INFO] - 6538 +2026-02-23 06:48:52 [WARNING] - 26397 +2026-02-23 06:48:52 [WARNING] - 24032 +2026-02-23 06:48:52 [CRITICAL] - 30805 +2026-02-23 06:48:52 [WARNING] - 12912 +2026-02-23 06:48:52 [DEBUG] - 8813 +2026-02-23 06:48:52 [DEBUG] - 2090 +2026-02-23 06:48:52 [DEBUG] - 14299 +2026-02-23 06:48:52 [DEBUG] - 22058 +2026-02-23 06:48:52 [WARNING] - 16224 +2026-02-23 06:48:52 [ERROR] Failed to connect - 8903 +2026-02-23 06:48:52 [INFO] - 13046 +2026-02-23 06:48:52 [DEBUG] - 2802 +2026-02-23 06:48:52 [WARNING] - 11386 +2026-02-23 06:48:52 [WARNING] - 15061 +2026-02-23 06:48:52 [DEBUG] - 24963 +2026-02-23 06:48:52 [DEBUG] - 10346 +2026-02-23 06:48:52 [CRITICAL] - 31996 +2026-02-23 06:48:52 [INFO] - 12907 +2026-02-23 06:48:52 [DEBUG] - 11607 +2026-02-23 06:48:52 [INFO] - 11091 +2026-02-23 06:48:52 [INFO] - 4180 +2026-02-23 06:48:52 [CRITICAL] - 30711 +2026-02-23 06:48:52 [ERROR] Failed to connect - 6917 +2026-02-23 06:48:52 [ERROR] Failed to connect - 31858 +2026-02-23 06:48:52 [CRITICAL] - 32074 +2026-02-23 06:48:52 [ERROR] Failed to connect - 10965 +2026-02-23 06:48:52 [INFO] - 20546 +2026-02-23 06:48:52 [CRITICAL] - 13109 +2026-02-23 06:48:52 [INFO] - 4173 +2026-02-23 06:48:52 [DEBUG] - 28691 +2026-02-23 06:48:52 [ERROR] Disk full - 12358 +2026-02-23 06:48:52 [DEBUG] - 22306 +2026-02-23 06:48:52 [CRITICAL] - 20745 +2026-02-23 06:48:52 [CRITICAL] - 21310 +2026-02-23 06:48:52 [WARNING] - 17205 +2026-02-23 06:48:52 [DEBUG] - 20691 +2026-02-23 06:48:52 [DEBUG] - 4675 +2026-02-23 06:48:52 [DEBUG] - 31162 +2026-02-23 06:48:52 [WARNING] - 21159 +2026-02-23 06:48:52 [WARNING] - 17331 +2026-02-23 06:48:52 [DEBUG] - 25396 +2026-02-23 06:48:52 [DEBUG] - 8612 +2026-02-23 06:48:52 [ERROR] Invalid input - 19597 +2026-02-23 06:48:52 [ERROR] Failed to connect - 4770 +2026-02-23 06:48:52 [DEBUG] - 10064 +2026-02-23 06:48:52 [DEBUG] - 24422 +2026-02-23 06:48:52 [CRITICAL] - 32368 +2026-02-23 06:48:52 [WARNING] - 24192 +2026-02-23 06:48:52 [INFO] - 12137 +2026-02-23 06:48:52 [ERROR] Invalid input - 10377 +2026-02-23 06:48:52 [ERROR] Invalid input - 12679 +2026-02-23 06:48:52 [ERROR] Segmentation fault - 1637 +2026-02-23 06:48:52 [INFO] - 32708 +2026-02-23 06:48:52 [CRITICAL] - 25364 +2026-02-23 06:48:52 [DEBUG] - 3866 +2026-02-23 06:48:52 [WARNING] - 22037 +2026-02-23 06:48:52 [ERROR] Invalid input - 11551 +2026-02-23 06:48:52 [DEBUG] - 14499 +2026-02-23 06:48:52 [DEBUG] - 12738 +2026-02-23 06:48:52 [CRITICAL] - 12378 +2026-02-23 06:48:52 [ERROR] Segmentation fault - 8400 +2026-02-23 06:48:52 [DEBUG] - 13082 +2026-02-23 06:48:52 [INFO] - 23512 +2026-02-23 06:48:52 [INFO] - 11795 +2026-02-23 06:48:52 [ERROR] Invalid input - 27208 +2026-02-23 06:48:52 [DEBUG] - 16117 +2026-02-23 06:48:52 [INFO] - 9745 +2026-02-23 06:48:52 [DEBUG] - 21536 +2026-02-23 06:48:52 [DEBUG] - 14995 +2026-02-23 06:48:52 [CRITICAL] - 27212 +2026-02-23 06:48:52 [WARNING] - 19090 +2026-02-23 06:48:52 [CRITICAL] - 5075 +2026-02-23 06:48:52 [ERROR] Out of memory - 21013 +2026-02-23 06:48:52 [WARNING] - 7966 +2026-02-23 06:48:52 [INFO] - 28705 +2026-02-23 06:48:52 [WARNING] - 6352 +2026-02-23 06:48:52 [CRITICAL] - 21316 +2026-02-23 06:48:52 [ERROR] Disk full - 32100 +2026-02-23 06:48:52 [INFO] - 26244 +2026-02-23 06:48:52 [CRITICAL] - 13485 +2026-02-23 06:48:52 [ERROR] Disk full - 19051 +2026-02-23 06:48:52 [DEBUG] - 19468 +2026-02-23 06:48:52 [ERROR] Disk full - 11500 +2026-02-23 06:48:52 [CRITICAL] - 10125 +2026-02-23 06:48:52 [CRITICAL] - 13110 +2026-02-23 06:48:52 [DEBUG] - 17878 +2026-02-23 06:48:52 [WARNING] - 23206 +2026-02-23 06:48:52 [WARNING] - 2119 +2026-02-23 06:48:52 [WARNING] - 28634 +2026-02-23 06:48:52 [INFO] - 24140 +2026-02-23 06:48:52 [CRITICAL] - 17677 +2026-02-23 06:48:52 [WARNING] - 19196 +2026-02-23 06:48:52 [CRITICAL] - 26113 +2026-02-23 06:48:52 [INFO] - 10081 +2026-02-23 06:48:52 [INFO] - 22700 +2026-02-23 06:48:52 [WARNING] - 22265 +2026-02-23 06:48:52 [DEBUG] - 4048 +2026-02-23 06:48:52 [CRITICAL] - 13735 +2026-02-23 06:48:52 [ERROR] Segmentation fault - 10842 +2026-02-23 06:48:52 [DEBUG] - 11807 +2026-02-23 06:48:52 [WARNING] - 9995 +2026-02-23 06:48:52 [INFO] - 13490 +2026-02-23 06:48:52 [CRITICAL] - 9208 +2026-02-23 06:48:52 [DEBUG] - 9053 +2026-02-23 06:48:52 [DEBUG] - 1971 +2026-02-23 06:48:52 [DEBUG] - 8651 +2026-02-23 06:48:52 [ERROR] Segmentation fault - 23894 +2026-02-23 06:48:52 [INFO] - 14248 +2026-02-23 06:48:52 [WARNING] - 31538 +2026-02-23 06:48:52 [WARNING] - 29742 +2026-02-23 06:48:52 [ERROR] Segmentation fault - 2311 +2026-02-23 06:48:52 [WARNING] - 19331 +2026-02-23 06:48:52 [INFO] - 23113 +2026-02-23 06:48:52 [WARNING] - 25426 +2026-02-23 06:48:52 [ERROR] Invalid input - 23055 +2026-02-23 06:48:52 [WARNING] - 9659 +2026-02-23 06:48:52 [DEBUG] - 2628 +2026-02-23 06:48:52 [CRITICAL] - 17943 +2026-02-23 06:48:52 [CRITICAL] - 32599 +2026-02-23 06:48:52 [ERROR] Invalid input - 29520 +2026-02-23 06:48:52 [DEBUG] - 9974 +2026-02-23 06:48:52 [ERROR] Failed to connect - 20405 +2026-02-23 06:48:52 [ERROR] Invalid input - 12168 +2026-02-23 06:48:52 [WARNING] - 17045 +2026-02-23 06:48:52 [WARNING] - 17947 +2026-02-23 06:48:52 [CRITICAL] - 5300 +2026-02-23 06:48:52 [CRITICAL] - 13776 +2026-02-23 06:48:52 [INFO] - 13725 +2026-02-23 06:48:52 [WARNING] - 31595 +2026-02-23 06:48:52 [ERROR] Disk full - 26050 +2026-02-23 06:48:52 [INFO] - 31402 +2026-02-23 06:48:52 [ERROR] Out of memory - 24542 +2026-02-23 06:48:52 [DEBUG] - 25365 +2026-02-23 06:48:52 [WARNING] - 16482 +2026-02-23 06:48:52 [INFO] - 11257 +2026-02-23 06:48:52 [WARNING] - 29634 +2026-02-23 06:48:52 [ERROR] Failed to connect - 13019 +2026-02-23 06:48:52 [DEBUG] - 31407 +2026-02-23 06:48:52 [DEBUG] - 17763 +2026-02-23 06:48:52 [ERROR] Segmentation fault - 28613 +2026-02-23 06:48:52 [WARNING] - 28938 +2026-02-23 06:48:52 [CRITICAL] - 17269 +2026-02-23 06:48:52 [ERROR] Disk full - 29555 +2026-02-23 06:48:52 [ERROR] Segmentation fault - 24124 +2026-02-23 06:48:52 [DEBUG] - 16499 +2026-02-23 06:48:52 [WARNING] - 23922 +2026-02-23 06:48:52 [DEBUG] - 15470 +2026-02-23 06:48:52 [DEBUG] - 31266 +2026-02-23 06:48:52 [INFO] - 12413 +2026-02-23 06:48:52 [ERROR] Invalid input - 17740 +2026-02-23 06:48:52 [WARNING] - 30232 +2026-02-23 06:48:52 [CRITICAL] - 4390 +2026-02-23 06:48:52 [WARNING] - 2683 +2026-02-23 06:48:52 [INFO] - 18332 +2026-02-23 06:48:52 [CRITICAL] - 24193 +2026-02-23 06:48:52 [ERROR] Disk full - 16430 +2026-02-23 06:48:52 [ERROR] Segmentation fault - 18042 +2026-02-23 06:48:52 [INFO] - 16237 +2026-02-23 06:48:52 [WARNING] - 3363 +2026-02-23 06:48:52 [INFO] - 26295 +2026-02-23 06:48:52 [CRITICAL] - 11833 +2026-02-23 06:48:52 [CRITICAL] - 8127 +2026-02-23 06:48:52 [DEBUG] - 14796 +2026-02-23 06:48:52 [WARNING] - 15481 +2026-02-23 06:48:52 [INFO] - 17917 +2026-02-23 06:48:52 [DEBUG] - 29133 +2026-02-23 06:48:52 [CRITICAL] - 14518 +2026-02-23 06:48:52 [DEBUG] - 6079 +2026-02-23 06:48:52 [WARNING] - 7646 +2026-02-23 06:48:52 [WARNING] - 30338 +2026-02-23 06:48:52 [INFO] - 28692 +2026-02-23 06:48:52 [CRITICAL] - 6961 +2026-02-23 06:48:52 [INFO] - 5542 +2026-02-23 06:48:52 [DEBUG] - 6579 +2026-02-23 06:48:52 [CRITICAL] - 31727 +2026-02-23 06:48:52 [WARNING] - 16419 +2026-02-23 06:48:52 [WARNING] - 21460 +2026-02-23 06:48:52 [DEBUG] - 21089 +2026-02-23 06:48:52 [INFO] - 26864 +2026-02-23 06:48:52 [CRITICAL] - 20170 +2026-02-23 06:48:52 [WARNING] - 27755 +2026-02-23 06:48:52 [CRITICAL] - 31486 +2026-02-23 06:48:52 [INFO] - 26214 +2026-02-23 06:48:52 [ERROR] Segmentation fault - 24323 +2026-02-23 06:48:52 [DEBUG] - 4003 +2026-02-23 06:48:52 [WARNING] - 4597 +2026-02-23 06:48:52 [ERROR] Segmentation fault - 22781 +2026-02-23 06:48:52 [WARNING] - 2836 +2026-02-23 06:48:52 [ERROR] Invalid input - 13940 +2026-02-23 06:48:52 [INFO] - 19709 +2026-02-23 06:48:52 [WARNING] - 4124 +2026-02-23 06:48:52 [ERROR] Disk full - 10026 +2026-02-23 06:48:52 [WARNING] - 29179 +2026-02-23 06:48:52 [INFO] - 12558 +2026-02-23 06:48:52 [INFO] - 16175 +2026-02-23 06:48:52 [ERROR] Failed to connect - 18502 +2026-02-23 06:48:52 [CRITICAL] - 15594 +2026-02-23 06:48:52 [ERROR] Invalid input - 6521 +2026-02-23 06:48:52 [DEBUG] - 21889 +2026-02-23 06:48:52 [WARNING] - 12447 +2026-02-23 06:48:52 [ERROR] Out of memory - 7236 +2026-02-23 06:48:52 [ERROR] Invalid input - 31892 +2026-02-23 06:48:52 [CRITICAL] - 5367 +2026-02-23 06:48:52 [ERROR] Out of memory - 18351 +2026-02-23 06:48:52 [ERROR] Invalid input - 25044 +2026-02-23 06:48:52 [CRITICAL] - 23884 +2026-02-23 06:48:52 [DEBUG] - 8091 +2026-02-23 06:48:52 [DEBUG] - 26014 +2026-02-23 06:48:52 [INFO] - 8947 +2026-02-23 06:48:52 [ERROR] Failed to connect - 8749 +2026-02-23 06:48:52 [WARNING] - 32212 +2026-02-23 06:48:52 [CRITICAL] - 14175 +2026-02-23 06:48:52 [INFO] - 25802 +2026-02-23 06:48:52 [CRITICAL] - 19134 +2026-02-23 06:48:52 [DEBUG] - 14097 +2026-02-23 06:48:52 [ERROR] Out of memory - 15892 +2026-02-23 06:48:52 [INFO] - 28645 +2026-02-23 06:48:52 [DEBUG] - 7081 +2026-02-23 06:48:52 [CRITICAL] - 30535 +2026-02-23 06:48:52 [ERROR] Out of memory - 11744 +2026-02-23 06:48:52 [WARNING] - 6393 +2026-02-23 06:48:52 [CRITICAL] - 11336 +2026-02-23 06:48:52 [INFO] - 12449 +2026-02-23 06:48:52 [WARNING] - 17250 +2026-02-23 06:48:52 [CRITICAL] - 2104 +2026-02-23 06:48:52 [CRITICAL] - 425 +2026-02-23 06:48:52 [ERROR] Segmentation fault - 25353 +2026-02-23 06:48:52 [WARNING] - 31748 +2026-02-23 06:48:52 [CRITICAL] - 22183 +2026-02-23 06:48:52 [CRITICAL] - 21444 +2026-02-23 06:48:52 [WARNING] - 6298 +2026-02-23 06:48:52 [DEBUG] - 14461 +2026-02-23 06:48:52 [DEBUG] - 24005 +2026-02-23 06:48:52 [CRITICAL] - 1369 +2026-02-23 06:48:52 [CRITICAL] - 5559 +2026-02-23 06:48:52 [CRITICAL] - 1701 +2026-02-23 06:48:52 [ERROR] Out of memory - 1913 +2026-02-23 06:48:52 [DEBUG] - 29516 +2026-02-23 06:48:52 [INFO] - 11086 +2026-02-23 06:48:52 [WARNING] - 3921 +2026-02-23 06:48:52 [ERROR] Failed to connect - 20299 +2026-02-23 06:48:52 [WARNING] - 9216 +2026-02-23 06:48:52 [CRITICAL] - 24731 +2026-02-23 06:48:52 [INFO] - 30097 +2026-02-23 06:48:52 [WARNING] - 5352 +2026-02-23 06:48:53 [WARNING] - 4303 +2026-02-23 06:48:53 [WARNING] - 18769 +2026-02-23 06:48:53 [INFO] - 17321 +2026-02-23 06:48:53 [INFO] - 3633 +2026-02-23 06:48:53 [ERROR] Failed to connect - 18852 +2026-02-23 06:48:53 [WARNING] - 26426 +2026-02-23 06:48:53 [CRITICAL] - 26800 +2026-02-23 06:48:53 [ERROR] Invalid input - 12981 +2026-02-23 06:48:53 [INFO] - 15686 +2026-02-23 06:48:53 [INFO] - 19906 +2026-02-23 06:48:53 [ERROR] Failed to connect - 16007 +2026-02-23 06:48:53 [DEBUG] - 27986 +2026-02-23 06:48:53 [ERROR] Invalid input - 20918 +2026-02-23 06:48:53 [CRITICAL] - 17634 +2026-02-23 06:48:53 [DEBUG] - 11664 +2026-02-23 06:48:53 [DEBUG] - 5021 +2026-02-23 06:48:53 [INFO] - 7282 +2026-02-23 06:48:53 [INFO] - 5096 +2026-02-23 06:48:53 [INFO] - 13415 +2026-02-23 06:48:53 [DEBUG] - 977 +2026-02-23 06:48:53 [ERROR] Invalid input - 15111 +2026-02-23 06:48:53 [CRITICAL] - 22800 +2026-02-23 06:48:53 [INFO] - 145 +2026-02-23 06:48:53 [WARNING] - 7453 +2026-02-23 06:48:53 [DEBUG] - 11628 +2026-02-23 06:48:53 [ERROR] Segmentation fault - 18919 +2026-02-23 06:48:53 [INFO] - 28678 +2026-02-23 06:48:53 [ERROR] Disk full - 28161 +2026-02-23 06:48:53 [INFO] - 13669 +2026-02-23 06:48:53 [ERROR] Disk full - 27195 +2026-02-23 06:48:53 [CRITICAL] - 807 +2026-02-23 06:48:53 [CRITICAL] - 7345 +2026-02-23 06:48:53 [ERROR] Segmentation fault - 25428 +2026-02-23 06:48:53 [INFO] - 19990 +2026-02-23 06:48:53 [INFO] - 29883 +2026-02-23 06:48:53 [CRITICAL] - 12840 +2026-02-23 06:48:53 [DEBUG] - 13187 +2026-02-23 06:48:53 [INFO] - 30140 +2026-02-23 06:48:53 [INFO] - 25624 +2026-02-23 06:48:53 [CRITICAL] - 30125 +2026-02-23 06:48:53 [ERROR] Failed to connect - 30318 +2026-02-23 06:48:53 [ERROR] Disk full - 31985 +2026-02-23 06:48:53 [WARNING] - 14311 +2026-02-23 06:48:53 [INFO] - 7777 +2026-02-23 06:48:53 [DEBUG] - 7036 +2026-02-23 06:48:53 [CRITICAL] - 7226 +2026-02-23 06:48:53 [DEBUG] - 26158 +2026-02-23 06:48:53 [WARNING] - 6300 +2026-02-23 06:48:53 [WARNING] - 11424 +2026-02-23 06:48:53 [INFO] - 12165 +2026-02-23 06:48:53 [ERROR] Out of memory - 11297 +2026-02-23 06:48:53 [WARNING] - 10460 +2026-02-23 06:48:53 [DEBUG] - 21015 +2026-02-23 06:48:53 [DEBUG] - 11812 +2026-02-23 06:48:53 [WARNING] - 19277 +2026-02-23 06:48:53 [INFO] - 6359 +2026-02-23 06:48:53 [DEBUG] - 14294 +2026-02-23 06:48:53 [ERROR] Segmentation fault - 26630 +2026-02-23 06:48:53 [ERROR] Invalid input - 24099 +2026-02-23 06:48:53 [INFO] - 4552 +2026-02-23 06:48:53 [DEBUG] - 5028 +2026-02-23 06:48:53 [DEBUG] - 20272 +2026-02-23 06:48:53 [CRITICAL] - 12340 +2026-02-23 06:48:53 [CRITICAL] - 8725 +2026-02-23 06:48:53 [CRITICAL] - 4314 +2026-02-23 06:48:53 [DEBUG] - 28872 +2026-02-23 06:48:53 [DEBUG] - 17140 +2026-02-23 06:48:53 [CRITICAL] - 21366 +2026-02-23 06:48:53 [ERROR] Segmentation fault - 4196 +2026-02-23 06:48:53 [INFO] - 31908 +2026-02-23 06:48:53 [INFO] - 1683 +2026-02-23 06:48:53 [CRITICAL] - 3236 +2026-02-23 06:48:53 [INFO] - 29012 +2026-02-23 06:48:53 [CRITICAL] - 22223 +2026-02-23 06:48:53 [CRITICAL] - 8438 +2026-02-23 06:48:53 [ERROR] Invalid input - 24415 +2026-02-23 06:48:53 [DEBUG] - 14457 +2026-02-23 06:48:53 [CRITICAL] - 22541 +2026-02-23 06:48:53 [WARNING] - 6009 +2026-02-23 06:48:53 [WARNING] - 1051 +2026-02-23 06:48:53 [CRITICAL] - 16046 +2026-02-23 06:48:53 [ERROR] Out of memory - 9959 +2026-02-23 06:48:53 [DEBUG] - 24099 +2026-02-23 06:48:53 [ERROR] Segmentation fault - 19532 +2026-02-23 06:48:53 [INFO] - 16932 +2026-02-23 06:48:53 [CRITICAL] - 22642 +2026-02-23 06:48:53 [DEBUG] - 20243 +2026-02-23 06:48:53 [INFO] - 18201 +2026-02-23 06:48:53 [INFO] - 9748 +2026-02-23 06:48:53 [WARNING] - 25174 +2026-02-23 06:48:53 [WARNING] - 7548 +2026-02-23 06:48:53 [ERROR] Out of memory - 6353 +2026-02-23 06:48:53 [ERROR] Out of memory - 626 +2026-02-23 06:48:53 [WARNING] - 651 +2026-02-23 06:48:53 [CRITICAL] - 20465 +2026-02-23 06:48:53 [INFO] - 10702 +2026-02-23 06:48:53 [WARNING] - 20034 +2026-02-23 06:48:53 [CRITICAL] - 5078 +2026-02-23 06:48:53 [ERROR] Failed to connect - 25570 +2026-02-23 06:48:53 [INFO] - 6825 +2026-02-23 06:48:53 [CRITICAL] - 21788 +2026-02-23 06:48:53 [CRITICAL] - 6961 +2026-02-23 06:48:53 [WARNING] - 10158 +2026-02-23 06:48:53 [INFO] - 28565 +2026-02-23 06:48:53 [WARNING] - 23854 +2026-02-23 06:48:53 [WARNING] - 2749 +2026-02-23 06:48:53 [WARNING] - 21435 +2026-02-23 06:48:53 [DEBUG] - 480 +2026-02-23 06:48:53 [ERROR] Failed to connect - 32662 +2026-02-23 06:48:53 [INFO] - 15778 +2026-02-23 06:48:53 [INFO] - 28027 +2026-02-23 06:48:53 [CRITICAL] - 12943 +2026-02-23 06:48:53 [CRITICAL] - 12698 +2026-02-23 06:48:53 [ERROR] Disk full - 27176 +2026-02-23 06:48:53 [INFO] - 29582 +2026-02-23 06:48:53 [CRITICAL] - 11053 +2026-02-23 06:48:53 [CRITICAL] - 16549 +2026-02-23 06:48:53 [CRITICAL] - 31132 +2026-02-23 06:48:53 [DEBUG] - 17084 +2026-02-23 06:48:53 [WARNING] - 18697 +2026-02-23 06:48:53 [ERROR] Failed to connect - 29283 +2026-02-23 06:48:53 [CRITICAL] - 21373 +2026-02-23 06:48:53 [ERROR] Invalid input - 2726 +2026-02-23 06:48:53 [WARNING] - 15726 +2026-02-23 06:48:53 [ERROR] Invalid input - 20454 +2026-02-23 06:48:53 [CRITICAL] - 11818 +2026-02-23 06:48:53 [DEBUG] - 16755 +2026-02-23 06:48:53 [WARNING] - 886 +2026-02-23 06:48:53 [WARNING] - 13624 +2026-02-23 06:48:53 [INFO] - 8421 +2026-02-23 06:48:53 [ERROR] Failed to connect - 6890 +2026-02-23 06:48:53 [ERROR] Failed to connect - 24731 +2026-02-23 06:48:53 [INFO] - 28479 +2026-02-23 06:48:53 [ERROR] Invalid input - 19620 +2026-02-23 06:48:53 [INFO] - 29139 +2026-02-23 06:48:53 [ERROR] Invalid input - 11514 +2026-02-23 06:48:53 [WARNING] - 29909 +2026-02-23 06:48:53 [DEBUG] - 16756 +2026-02-23 06:48:53 [CRITICAL] - 21250 +2026-02-23 06:48:53 [WARNING] - 13183 +2026-02-23 06:48:53 [WARNING] - 25570 +2026-02-23 06:48:53 [CRITICAL] - 19841 +2026-02-23 06:48:53 [WARNING] - 25588 +2026-02-23 06:48:53 [ERROR] Invalid input - 27685 +2026-02-23 06:48:53 [WARNING] - 31488 +2026-02-23 06:48:53 [INFO] - 7732 +2026-02-23 06:48:53 [CRITICAL] - 20226 +2026-02-23 06:48:53 [ERROR] Disk full - 18503 +2026-02-23 06:48:53 [CRITICAL] - 17714 +2026-02-23 06:48:53 [ERROR] Failed to connect - 28968 +2026-02-23 06:48:53 [INFO] - 4819 +2026-02-23 06:48:53 [WARNING] - 16005 +2026-02-23 06:48:53 [ERROR] Disk full - 19329 +2026-02-23 06:48:53 [INFO] - 7391 +2026-02-23 06:48:53 [ERROR] Failed to connect - 16727 +2026-02-23 06:48:53 [WARNING] - 5060 +2026-02-23 06:48:53 [INFO] - 11230 +2026-02-23 06:48:53 [CRITICAL] - 21360 +2026-02-23 06:48:53 [ERROR] Segmentation fault - 6695 +2026-02-23 06:48:53 [INFO] - 23850 +2026-02-23 06:48:53 [INFO] - 23589 +2026-02-23 06:48:53 [INFO] - 21238 +2026-02-23 06:48:53 [CRITICAL] - 5417 +2026-02-23 06:48:53 [DEBUG] - 12111 +2026-02-23 06:48:53 [DEBUG] - 13387 +2026-02-23 06:48:53 [DEBUG] - 29231 +2026-02-23 06:48:53 [ERROR] Invalid input - 24667 +2026-02-23 06:48:53 [DEBUG] - 29900 +2026-02-23 06:48:53 [WARNING] - 11765 +2026-02-23 06:48:53 [INFO] - 2503 +2026-02-23 06:48:53 [ERROR] Failed to connect - 13905 +2026-02-23 06:48:53 [INFO] - 1460 +2026-02-23 06:48:53 [ERROR] Disk full - 32331 +2026-02-23 06:48:53 [WARNING] - 1804 +2026-02-23 06:48:53 [DEBUG] - 32209 +2026-02-23 06:48:53 [INFO] - 4735 +2026-02-23 06:48:53 [DEBUG] - 30859 +2026-02-23 06:48:53 [ERROR] Out of memory - 24382 +2026-02-23 06:48:53 [DEBUG] - 21427 +2026-02-23 06:48:53 [ERROR] Invalid input - 8994 +2026-02-23 06:48:53 [WARNING] - 27884 +2026-02-23 06:48:53 [DEBUG] - 5204 +2026-02-23 06:48:53 [DEBUG] - 4973 +2026-02-23 06:48:53 [INFO] - 18701 +2026-02-23 06:48:53 [DEBUG] - 12003 +2026-02-23 06:48:53 [DEBUG] - 14294 +2026-02-23 06:48:53 [WARNING] - 21692 +2026-02-23 06:48:53 [INFO] - 410 +2026-02-23 06:48:53 [DEBUG] - 12328 +2026-02-23 06:48:53 [INFO] - 27278 +2026-02-23 06:48:53 [CRITICAL] - 1145 +2026-02-23 06:48:53 [WARNING] - 27088 +2026-02-23 06:48:53 [DEBUG] - 23328 +2026-02-23 06:48:53 [INFO] - 19966 +2026-02-23 06:48:53 [INFO] - 22902 +2026-02-23 06:48:53 [ERROR] Failed to connect - 9828 +2026-02-23 06:48:53 [CRITICAL] - 3886 +2026-02-23 06:48:53 [WARNING] - 5151 +2026-02-23 06:48:53 [WARNING] - 23010 +2026-02-23 06:48:53 [ERROR] Invalid input - 29994 +2026-02-23 06:48:53 [CRITICAL] - 28691 +2026-02-23 06:48:53 [WARNING] - 18539 +2026-02-23 06:48:53 [ERROR] Failed to connect - 16240 +2026-02-23 06:48:53 [DEBUG] - 4492 +2026-02-23 06:48:53 [WARNING] - 24746 +2026-02-23 06:48:53 [DEBUG] - 15884 +2026-02-23 06:48:53 [DEBUG] - 4665 +2026-02-23 06:48:53 [CRITICAL] - 23431 +2026-02-23 06:48:53 [ERROR] Out of memory - 1087 +2026-02-23 06:48:53 [INFO] - 15973 +2026-02-23 06:48:53 [WARNING] - 13616 +2026-02-23 06:48:53 [INFO] - 12486 +2026-02-23 06:48:53 [INFO] - 15978 +2026-02-23 06:48:53 [INFO] - 4688 +2026-02-23 06:48:53 [CRITICAL] - 4978 +2026-02-23 06:48:53 [WARNING] - 20579 +2026-02-23 06:48:53 [WARNING] - 3390 +2026-02-23 06:48:53 [DEBUG] - 13785 +2026-02-23 06:48:53 [INFO] - 29801 +2026-02-23 06:48:53 [WARNING] - 3113 +2026-02-23 06:48:53 [INFO] - 27118 +2026-02-23 06:48:53 [WARNING] - 30491 +2026-02-23 06:48:53 [INFO] - 19006 +2026-02-23 06:48:53 [CRITICAL] - 5963 +2026-02-23 06:48:53 [INFO] - 21466 +2026-02-23 06:48:53 [CRITICAL] - 3448 +2026-02-23 06:48:53 [CRITICAL] - 14322 +2026-02-23 06:48:53 [CRITICAL] - 12708 +2026-02-23 06:48:53 [INFO] - 8218 +2026-02-23 06:48:53 [INFO] - 16107 +2026-02-23 06:48:53 [INFO] - 32406 +2026-02-23 06:48:53 [WARNING] - 27060 +2026-02-23 06:48:53 [CRITICAL] - 31493 +2026-02-23 06:48:53 [DEBUG] - 5929 +2026-02-23 06:48:53 [DEBUG] - 28656 +2026-02-23 06:48:53 [CRITICAL] - 29058 +2026-02-23 06:48:53 [INFO] - 12624 +2026-02-23 06:48:53 [ERROR] Invalid input - 28611 +2026-02-23 06:48:53 [INFO] - 19622 +2026-02-23 06:48:53 [CRITICAL] - 10001 +2026-02-23 06:48:53 [WARNING] - 23813 +2026-02-23 06:48:53 [INFO] - 10865 +2026-02-23 06:48:53 [DEBUG] - 1607 +2026-02-23 06:48:53 [WARNING] - 22509 +2026-02-23 06:48:53 [WARNING] - 2428 +2026-02-23 06:48:53 [ERROR] Invalid input - 7382 +2026-02-23 06:48:53 [INFO] - 2591 +2026-02-23 06:48:53 [WARNING] - 13718 +2026-02-23 06:48:53 [DEBUG] - 20284 +2026-02-23 06:48:53 [ERROR] Out of memory - 31047 +2026-02-23 06:48:53 [CRITICAL] - 13259 +2026-02-23 06:48:53 [DEBUG] - 32657 +2026-02-23 06:48:53 [INFO] - 25329 +2026-02-23 06:48:53 [INFO] - 10153 +2026-02-23 06:48:53 [WARNING] - 19232 +2026-02-23 06:48:53 [INFO] - 4159 +2026-02-23 06:48:53 [WARNING] - 4963 +2026-02-23 06:48:53 [ERROR] Disk full - 2786 +2026-02-23 06:48:53 [WARNING] - 13704 +2026-02-23 06:48:53 [DEBUG] - 7793 +2026-02-23 06:48:53 [INFO] - 1350 +2026-02-23 06:48:53 [WARNING] - 25976 +2026-02-23 06:48:53 [CRITICAL] - 9253 +2026-02-23 06:48:53 [CRITICAL] - 19412 +2026-02-23 06:48:53 [DEBUG] - 28316 +2026-02-23 06:48:53 [ERROR] Failed to connect - 8466 +2026-02-23 06:48:53 [ERROR] Invalid input - 32620 +2026-02-23 06:48:53 [CRITICAL] - 29951 +2026-02-23 06:48:53 [INFO] - 75 +2026-02-23 06:48:53 [CRITICAL] - 5205 +2026-02-23 06:48:53 [DEBUG] - 19622 +2026-02-23 06:48:53 [CRITICAL] - 27530 +2026-02-23 06:48:53 [WARNING] - 2458 +2026-02-23 06:48:53 [CRITICAL] - 29289 +2026-02-23 06:48:53 [CRITICAL] - 14162 +2026-02-23 06:48:53 [ERROR] Disk full - 27225 +2026-02-23 06:48:53 [DEBUG] - 18429 +2026-02-23 06:48:53 [CRITICAL] - 7105 +2026-02-23 06:48:53 [ERROR] Out of memory - 8772 +2026-02-23 06:48:53 [WARNING] - 19181 +2026-02-23 06:48:53 [INFO] - 10751 +2026-02-23 06:48:53 [WARNING] - 14534 +2026-02-23 06:48:53 [INFO] - 12018 +2026-02-23 06:48:53 [INFO] - 8481 +2026-02-23 06:48:53 [CRITICAL] - 15561 +2026-02-23 06:48:53 [INFO] - 21302 +2026-02-23 06:48:53 [CRITICAL] - 21238 +2026-02-23 06:48:53 [ERROR] Out of memory - 21595 +2026-02-23 06:48:53 [CRITICAL] - 16667 +2026-02-23 06:48:53 [CRITICAL] - 22529 +2026-02-23 06:48:53 [INFO] - 20335 +2026-02-23 06:48:53 [ERROR] Disk full - 20519 +2026-02-23 06:48:53 [INFO] - 3440 +2026-02-23 06:48:53 [CRITICAL] - 2723 +2026-02-23 06:48:53 [INFO] - 10468 +2026-02-23 06:48:53 [WARNING] - 31245 +2026-02-23 06:48:53 [CRITICAL] - 13494 +2026-02-23 06:48:53 [DEBUG] - 4957 +2026-02-23 06:48:53 [ERROR] Invalid input - 30664 +2026-02-23 06:48:53 [DEBUG] - 28424 +2026-02-23 06:48:53 [DEBUG] - 24781 +2026-02-23 06:48:53 [DEBUG] - 3814 +2026-02-23 06:48:53 [DEBUG] - 21446 +2026-02-23 06:48:53 [ERROR] Out of memory - 27011 +2026-02-23 06:48:53 [DEBUG] - 519 +2026-02-23 06:48:53 [INFO] - 4451 +2026-02-23 06:48:53 [INFO] - 22283 +2026-02-23 06:48:53 [INFO] - 7214 +2026-02-23 06:48:53 [ERROR] Failed to connect - 18693 +2026-02-23 06:48:53 [ERROR] Segmentation fault - 23202 +2026-02-23 06:48:53 [CRITICAL] - 2404 +2026-02-23 06:48:53 [INFO] - 18952 +2026-02-23 06:48:53 [INFO] - 24026 +2026-02-23 06:48:53 [INFO] - 10984 +2026-02-23 06:48:53 [DEBUG] - 10723 +2026-02-23 06:48:53 [ERROR] Disk full - 8687 +2026-02-23 06:48:53 [WARNING] - 18321 +2026-02-23 06:48:53 [DEBUG] - 32015 +2026-02-23 06:48:53 [ERROR] Invalid input - 31627 +2026-02-23 06:48:53 [WARNING] - 7655 +2026-02-23 06:48:53 [ERROR] Out of memory - 1271 +2026-02-23 06:48:53 [CRITICAL] - 14824 +2026-02-23 06:48:53 [DEBUG] - 918 +2026-02-23 06:48:53 [CRITICAL] - 4627 +2026-02-23 06:48:53 [ERROR] Out of memory - 18735 +2026-02-23 06:48:53 [DEBUG] - 2320 +2026-02-23 06:48:53 [ERROR] Invalid input - 22397 +2026-02-23 06:48:53 [ERROR] Disk full - 6635 +2026-02-23 06:48:53 [DEBUG] - 8322 +2026-02-23 06:48:53 [ERROR] Segmentation fault - 1851 +2026-02-23 06:48:53 [CRITICAL] - 10746 +2026-02-23 06:48:53 [DEBUG] - 17877 +2026-02-23 06:48:53 [CRITICAL] - 25722 +2026-02-23 06:48:53 [WARNING] - 5865 +2026-02-23 06:48:53 [INFO] - 11635 +2026-02-23 06:48:53 [INFO] - 8160 +2026-02-23 06:48:53 [INFO] - 5173 +2026-02-23 06:48:53 [INFO] - 29296 +2026-02-23 06:48:53 [WARNING] - 11758 +2026-02-23 06:48:53 [DEBUG] - 3537 +2026-02-23 06:48:53 [DEBUG] - 16413 +2026-02-23 06:48:53 [CRITICAL] - 9325 +2026-02-23 06:48:53 [ERROR] Segmentation fault - 5882 +2026-02-23 06:48:53 [CRITICAL] - 29568 +2026-02-23 06:48:53 [WARNING] - 25662 +2026-02-23 06:48:53 [DEBUG] - 17392 +2026-02-23 06:48:53 [INFO] - 6996 +2026-02-23 06:48:53 [ERROR] Segmentation fault - 13189 +2026-02-23 06:48:53 [INFO] - 29545 +2026-02-23 06:48:53 [CRITICAL] - 4387 +2026-02-23 06:48:53 [DEBUG] - 23863 +2026-02-23 06:48:53 [DEBUG] - 11976 +2026-02-23 06:48:53 [WARNING] - 12901 +2026-02-23 06:48:53 [INFO] - 26235 +2026-02-23 06:48:53 [CRITICAL] - 16902 +2026-02-23 06:48:53 [DEBUG] - 1168 +2026-02-23 06:48:53 [DEBUG] - 13095 +2026-02-23 06:48:53 [DEBUG] - 21732 +2026-02-23 06:48:53 [CRITICAL] - 3695 +2026-02-23 06:48:53 [ERROR] Segmentation fault - 11459 +2026-02-23 06:48:53 [CRITICAL] - 24506 +2026-02-23 06:48:53 [INFO] - 14236 +2026-02-23 06:48:53 [ERROR] Out of memory - 4355 +2026-02-23 06:48:53 [DEBUG] - 18523 +2026-02-23 06:48:53 [WARNING] - 31125 +2026-02-23 06:48:53 [WARNING] - 3546 +2026-02-23 06:48:53 [INFO] - 30487 +2026-02-23 06:48:53 [DEBUG] - 24658 +2026-02-23 06:48:53 [CRITICAL] - 23427 +2026-02-23 06:48:53 [DEBUG] - 27885 +2026-02-23 06:48:53 [WARNING] - 2911 +2026-02-23 06:48:53 [INFO] - 5614 +2026-02-23 06:48:53 [INFO] - 8814 +2026-02-23 06:48:53 [DEBUG] - 14977 +2026-02-23 06:48:53 [INFO] - 17176 +2026-02-23 06:48:53 [INFO] - 10954 +2026-02-23 06:48:53 [ERROR] Out of memory - 9259 +2026-02-23 06:48:53 [WARNING] - 7260 +2026-02-23 06:48:53 [WARNING] - 25590 +2026-02-23 06:48:53 [DEBUG] - 29900 +2026-02-23 06:48:53 [WARNING] - 15093 +2026-02-23 06:48:53 [ERROR] Out of memory - 18110 +2026-02-23 06:48:53 [CRITICAL] - 5201 +2026-02-23 06:48:53 [INFO] - 19603 +2026-02-23 06:48:53 [INFO] - 7141 +2026-02-23 06:48:53 [DEBUG] - 22677 +2026-02-23 06:48:53 [DEBUG] - 24226 +2026-02-23 06:48:53 [CRITICAL] - 9578 +2026-02-23 06:48:53 [ERROR] Invalid input - 18941 +2026-02-23 06:48:53 [WARNING] - 32063 +2026-02-23 06:48:53 [CRITICAL] - 15071 +2026-02-23 06:48:53 [WARNING] - 27321 +2026-02-23 06:48:53 [WARNING] - 13744 +2026-02-23 06:48:53 [ERROR] Invalid input - 28561 +2026-02-23 06:48:53 [DEBUG] - 18122 +2026-02-23 06:48:53 [ERROR] Segmentation fault - 3017 +2026-02-23 06:48:53 [ERROR] Failed to connect - 23479 +2026-02-23 06:48:53 [ERROR] Invalid input - 21232 +2026-02-23 06:48:53 [DEBUG] - 29220 +2026-02-23 06:48:53 [INFO] - 32767 +2026-02-23 06:48:53 [WARNING] - 22672 +2026-02-23 06:48:53 [INFO] - 11018 +2026-02-23 06:48:53 [ERROR] Out of memory - 32734 +2026-02-23 06:48:53 [CRITICAL] - 20145 +2026-02-23 06:48:53 [DEBUG] - 24796 +2026-02-23 06:48:53 [INFO] - 11666 +2026-02-23 06:48:53 [CRITICAL] - 18765 +2026-02-23 06:48:53 [WARNING] - 32503 +2026-02-23 06:48:53 [INFO] - 22599 +2026-02-23 06:48:53 [INFO] - 15177 +2026-02-23 06:48:53 [INFO] - 1206 +2026-02-23 06:48:53 [INFO] - 32412 +2026-02-23 06:48:53 [CRITICAL] - 22925 +2026-02-23 06:48:53 [DEBUG] - 25290 +2026-02-23 06:48:53 [ERROR] Failed to connect - 1839 +2026-02-23 06:48:53 [DEBUG] - 7364 +2026-02-23 06:48:53 [WARNING] - 5418 +2026-02-23 06:48:53 [INFO] - 30944 +2026-02-23 06:48:53 [ERROR] Failed to connect - 5544 +2026-02-23 06:48:53 [CRITICAL] - 3850 +2026-02-23 06:48:53 [WARNING] - 49 +2026-02-23 06:48:53 [WARNING] - 18250 +2026-02-23 06:48:53 [CRITICAL] - 10420 +2026-02-23 06:48:53 [ERROR] Invalid input - 25263 +2026-02-23 06:48:53 [DEBUG] - 15927 +2026-02-23 06:48:53 [INFO] - 14065 +2026-02-23 06:48:53 [CRITICAL] - 32685 +2026-02-23 06:48:53 [INFO] - 23424 +2026-02-23 06:48:53 [CRITICAL] - 10395 +2026-02-23 06:48:53 [INFO] - 2074 +2026-02-23 06:48:53 [CRITICAL] - 4980 +2026-02-23 06:48:53 [CRITICAL] - 86 +2026-02-23 06:48:53 [WARNING] - 12156 +2026-02-23 06:48:53 [DEBUG] - 19562 +2026-02-23 06:48:53 [WARNING] - 31584 +2026-02-23 06:48:53 [CRITICAL] - 30618 +2026-02-23 06:48:53 [WARNING] - 17160 +2026-02-23 06:48:53 [WARNING] - 31995 +2026-02-23 06:48:53 [ERROR] Failed to connect - 17 +2026-02-23 06:48:53 [ERROR] Out of memory - 1304 +2026-02-23 06:48:53 [WARNING] - 555 +2026-02-23 06:48:53 [CRITICAL] - 4080 +2026-02-23 06:48:53 [ERROR] Invalid input - 24955 +2026-02-23 06:48:53 [DEBUG] - 13709 +2026-02-23 06:48:53 [WARNING] - 19793 +2026-02-23 06:48:53 [INFO] - 21116 +2026-02-23 06:48:53 [CRITICAL] - 6240 +2026-02-23 06:48:53 [ERROR] Out of memory - 10288 +2026-02-23 06:48:53 [INFO] - 19574 +2026-02-23 06:48:53 [ERROR] Segmentation fault - 5705 +2026-02-23 06:48:53 [DEBUG] - 8499 +2026-02-23 06:48:53 [CRITICAL] - 3088 +2026-02-23 06:48:53 [WARNING] - 16686 +2026-02-23 06:48:53 [ERROR] Failed to connect - 21862 +2026-02-23 06:48:53 [WARNING] - 15520 +2026-02-23 06:48:53 [WARNING] - 884 +2026-02-23 06:48:53 [DEBUG] - 23473 +2026-02-23 06:48:53 [ERROR] Out of memory - 4344 +2026-02-23 06:48:53 [ERROR] Segmentation fault - 26359 +2026-02-23 06:48:53 [WARNING] - 7646 +2026-02-23 06:48:53 [WARNING] - 3109 +2026-02-23 06:48:53 [ERROR] Out of memory - 15934 +2026-02-23 06:48:53 [CRITICAL] - 13777 +2026-02-23 06:48:53 [ERROR] Failed to connect - 15361 +2026-02-23 06:48:53 [DEBUG] - 10734 +2026-02-23 06:48:53 [INFO] - 15373 +2026-02-23 06:48:53 [DEBUG] - 17657 +2026-02-23 06:48:53 [ERROR] Out of memory - 24755 +2026-02-23 06:48:53 [DEBUG] - 11559 +2026-02-23 06:48:53 [CRITICAL] - 2086 +2026-02-23 06:48:53 [WARNING] - 25217 +2026-02-23 06:48:53 [INFO] - 26603 +2026-02-23 06:48:53 [DEBUG] - 19880 +2026-02-23 06:48:53 [CRITICAL] - 15417 +2026-02-23 06:48:53 [DEBUG] - 13988 +2026-02-23 06:48:53 [DEBUG] - 11757 +2026-02-23 06:48:53 [CRITICAL] - 7767 +2026-02-23 06:48:53 [INFO] - 21122 +2026-02-23 06:48:53 [ERROR] Failed to connect - 30270 +2026-02-23 06:48:53 [INFO] - 4305 +2026-02-23 06:48:53 [INFO] - 3640 +2026-02-23 06:48:53 [WARNING] - 24279 +2026-02-23 06:48:53 [ERROR] Segmentation fault - 27638 +2026-02-23 06:48:53 [ERROR] Out of memory - 29235 +2026-02-23 06:48:53 [INFO] - 27330 +2026-02-23 06:48:53 [CRITICAL] - 15204 +2026-02-23 06:48:53 [DEBUG] - 17659 +2026-02-23 06:48:53 [ERROR] Invalid input - 7641 +2026-02-23 06:48:53 [CRITICAL] - 12462 +2026-02-23 06:48:53 [INFO] - 29264 +2026-02-23 06:48:53 [WARNING] - 27609 +2026-02-23 06:48:53 [DEBUG] - 6014 +2026-02-23 06:48:53 [ERROR] Segmentation fault - 29011 +2026-02-23 06:48:53 [CRITICAL] - 1655 +2026-02-23 06:48:53 [ERROR] Disk full - 31487 +2026-02-23 06:48:53 [WARNING] - 6743 +2026-02-23 06:48:53 [INFO] - 4095 +2026-02-23 06:48:53 [ERROR] Disk full - 25117 +2026-02-23 06:48:53 [ERROR] Failed to connect - 18625 +2026-02-23 06:48:53 [DEBUG] - 10799 +2026-02-23 06:48:53 [DEBUG] - 9721 +2026-02-23 06:48:53 [CRITICAL] - 28505 +2026-02-23 06:48:53 [ERROR] Out of memory - 23039 +2026-02-23 06:48:53 [WARNING] - 18300 +2026-02-23 06:48:53 [WARNING] - 9459 +2026-02-23 06:48:53 [WARNING] - 5011 +2026-02-23 06:48:53 [WARNING] - 29797 +2026-02-23 06:48:53 [INFO] - 29391 +2026-02-23 06:48:53 [WARNING] - 22751 +2026-02-23 06:48:53 [INFO] - 19348 +2026-02-23 06:48:53 [WARNING] - 11608 +2026-02-23 06:48:53 [ERROR] Failed to connect - 12564 +2026-02-23 06:48:53 [WARNING] - 4220 +2026-02-23 06:48:53 [WARNING] - 13672 +2026-02-23 06:48:53 [ERROR] Out of memory - 19474 +2026-02-23 06:48:53 [INFO] - 30426 +2026-02-23 06:48:53 [INFO] - 27017 +2026-02-23 06:48:53 [CRITICAL] - 12425 +2026-02-23 06:48:53 [WARNING] - 25307 +2026-02-23 06:48:53 [DEBUG] - 4580 +2026-02-23 06:48:53 [ERROR] Segmentation fault - 491 +2026-02-23 06:48:53 [WARNING] - 1120 +2026-02-23 06:48:53 [INFO] - 24648 +2026-02-23 06:48:53 [WARNING] - 20048 +2026-02-23 06:48:53 [WARNING] - 2506 +2026-02-23 06:48:53 [WARNING] - 20622 +2026-02-23 06:48:53 [CRITICAL] - 21103 +2026-02-23 06:48:53 [INFO] - 27632 +2026-02-23 06:48:53 [WARNING] - 32360 +2026-02-23 06:48:53 [INFO] - 30460 +2026-02-23 06:48:53 [WARNING] - 2250 +2026-02-23 06:48:53 [INFO] - 16731 +2026-02-23 06:48:53 [CRITICAL] - 24730 +2026-02-23 06:48:53 [WARNING] - 28483 +2026-02-23 06:48:53 [WARNING] - 29833 +2026-02-23 06:48:53 [WARNING] - 3626 +2026-02-23 06:48:53 [ERROR] Segmentation fault - 30646 +2026-02-23 06:48:53 [DEBUG] - 8404 +2026-02-23 06:48:53 [CRITICAL] - 16219 +2026-02-23 06:48:53 [WARNING] - 16117 +2026-02-23 06:48:53 [ERROR] Out of memory - 6710 +2026-02-23 06:48:53 [INFO] - 16901 +2026-02-23 06:48:53 [DEBUG] - 28155 +2026-02-23 06:48:53 [CRITICAL] - 18627 +2026-02-23 06:48:53 [CRITICAL] - 7419 +2026-02-23 06:48:53 [CRITICAL] - 32205 +2026-02-23 06:48:53 [DEBUG] - 11809 +2026-02-23 06:48:53 [ERROR] Segmentation fault - 14075 +2026-02-23 06:48:53 [WARNING] - 18767 +2026-02-23 06:48:53 [WARNING] - 30929 +2026-02-23 06:48:53 [ERROR] Invalid input - 11895 +2026-02-23 06:48:53 [CRITICAL] - 13682 +2026-02-23 06:48:53 [ERROR] Failed to connect - 5236 +2026-02-23 06:48:53 [ERROR] Segmentation fault - 16651 +2026-02-23 06:48:53 [INFO] - 10107 +2026-02-23 06:48:53 [ERROR] Out of memory - 24814 +2026-02-23 06:48:53 [WARNING] - 12640 +2026-02-23 06:48:53 [CRITICAL] - 1984 +2026-02-23 06:48:53 [WARNING] - 5299 +2026-02-23 06:48:53 [ERROR] Invalid input - 5517 +2026-02-23 06:48:53 [ERROR] Segmentation fault - 9679 +2026-02-23 06:48:53 [INFO] - 20036 +2026-02-23 06:48:53 [DEBUG] - 32631 +2026-02-23 06:48:53 [WARNING] - 31626 +2026-02-23 06:48:53 [WARNING] - 21849 +2026-02-23 06:48:53 [CRITICAL] - 5097 +2026-02-23 06:48:53 [WARNING] - 31679 +2026-02-23 06:48:53 [WARNING] - 14183 +2026-02-23 06:48:53 [CRITICAL] - 8675 +2026-02-23 06:48:53 [INFO] - 22964 +2026-02-23 06:48:53 [ERROR] Out of memory - 20090 +2026-02-23 06:48:53 [WARNING] - 20667 +2026-02-23 06:48:53 [ERROR] Out of memory - 1399 +2026-02-23 06:48:53 [CRITICAL] - 1763 +2026-02-23 06:48:53 [ERROR] Invalid input - 812 +2026-02-23 06:48:53 [CRITICAL] - 13857 +2026-02-23 06:48:53 [CRITICAL] - 19895 +2026-02-23 06:48:53 [INFO] - 27965 +2026-02-23 06:48:53 [CRITICAL] - 29051 +2026-02-23 06:48:53 [CRITICAL] - 8314 +2026-02-23 06:48:53 [DEBUG] - 1810 +2026-02-23 06:48:53 [ERROR] Failed to connect - 24281 +2026-02-23 06:48:53 [CRITICAL] - 6357 +2026-02-23 06:48:53 [ERROR] Disk full - 25377 +2026-02-23 06:48:53 [ERROR] Disk full - 5997 +2026-02-23 06:48:53 [ERROR] Failed to connect - 27866 +2026-02-23 06:48:53 [DEBUG] - 21716 +2026-02-23 06:48:53 [CRITICAL] - 15817 +2026-02-23 06:48:53 [WARNING] - 19913 +2026-02-23 06:48:53 [INFO] - 20291 +2026-02-23 06:48:53 [DEBUG] - 32217 +2026-02-23 06:48:53 [CRITICAL] - 9395 +2026-02-23 06:48:53 [CRITICAL] - 7016 +2026-02-23 06:48:53 [WARNING] - 15389 +2026-02-23 06:48:53 [DEBUG] - 9517 +2026-02-23 06:48:53 [ERROR] Failed to connect - 9017 +2026-02-23 06:48:53 [WARNING] - 14580 +2026-02-23 06:48:53 [ERROR] Invalid input - 20326 +2026-02-23 06:48:53 [CRITICAL] - 24350 +2026-02-23 06:48:53 [DEBUG] - 15010 +2026-02-23 06:48:53 [ERROR] Out of memory - 10025 +2026-02-23 06:48:53 [INFO] - 27096 +2026-02-23 06:48:53 [WARNING] - 19326 +2026-02-23 06:48:53 [DEBUG] - 9337 +2026-02-23 06:48:53 [WARNING] - 21226 +2026-02-23 06:48:53 [DEBUG] - 17207 +2026-02-23 06:48:53 [WARNING] - 18155 +2026-02-23 06:48:53 [ERROR] Out of memory - 17632 +2026-02-23 06:48:53 [INFO] - 6212 +2026-02-23 06:48:53 [ERROR] Disk full - 5767 +2026-02-23 06:48:53 [ERROR] Invalid input - 21532 +2026-02-23 06:48:53 [ERROR] Failed to connect - 18937 +2026-02-23 06:48:53 [CRITICAL] - 12149 +2026-02-23 06:48:53 [INFO] - 23645 +2026-02-23 06:48:53 [WARNING] - 14160 +2026-02-23 06:48:53 [WARNING] - 24562 +2026-02-23 06:48:53 [ERROR] Disk full - 21888 +2026-02-23 06:48:53 [CRITICAL] - 3467 +2026-02-23 06:48:53 [WARNING] - 6672 +2026-02-23 06:48:53 [ERROR] Disk full - 30841 +2026-02-23 06:48:53 [WARNING] - 18103 +2026-02-23 06:48:53 [CRITICAL] - 29484 +2026-02-23 06:48:53 [WARNING] - 20717 +2026-02-23 06:48:53 [ERROR] Disk full - 19035 +2026-02-23 06:48:53 [CRITICAL] - 13731 +2026-02-23 06:48:53 [CRITICAL] - 23788 +2026-02-23 06:48:53 [WARNING] - 25009 +2026-02-23 06:48:53 [ERROR] Failed to connect - 12259 +2026-02-23 06:48:53 [INFO] - 17477 +2026-02-23 06:48:53 [INFO] - 32559 +2026-02-23 06:48:53 [INFO] - 3959 +2026-02-23 06:48:53 [INFO] - 5568 +2026-02-23 06:48:53 [WARNING] - 6575 +2026-02-23 06:48:53 [ERROR] Invalid input - 27274 +2026-02-23 06:48:53 [INFO] - 27339 +2026-02-23 06:48:53 [WARNING] - 2655 +2026-02-23 06:48:53 [ERROR] Failed to connect - 8910 +2026-02-23 06:48:53 [DEBUG] - 31901 +2026-02-23 06:48:53 [DEBUG] - 26272 +2026-02-23 06:48:53 [ERROR] Out of memory - 15428 +2026-02-23 06:48:53 [ERROR] Disk full - 23529 +2026-02-23 06:48:53 [WARNING] - 23056 +2026-02-23 06:48:53 [DEBUG] - 30773 +2026-02-23 06:48:53 [WARNING] - 24845 +2026-02-23 06:48:53 [CRITICAL] - 1962 +2026-02-23 06:48:53 [INFO] - 3261 +2026-02-23 06:48:53 [ERROR] Segmentation fault - 30164 +2026-02-23 06:48:53 [INFO] - 12972 +2026-02-23 06:48:53 [WARNING] - 12156 +2026-02-23 06:48:53 [CRITICAL] - 551 +2026-02-23 06:48:53 [INFO] - 4029 +2026-02-23 06:48:53 [DEBUG] - 16013 +2026-02-23 06:48:53 [DEBUG] - 15645 +2026-02-23 06:48:53 [WARNING] - 20949 +2026-02-23 06:48:53 [CRITICAL] - 18968 +2026-02-23 06:48:53 [INFO] - 383 +2026-02-23 06:48:53 [WARNING] - 9751 +2026-02-23 06:48:53 [WARNING] - 11127 +2026-02-23 06:48:53 [ERROR] Failed to connect - 10149 +2026-02-23 06:48:53 [INFO] - 26418 +2026-02-23 06:48:53 [INFO] - 26776 +2026-02-23 06:48:53 [WARNING] - 13914 +2026-02-23 06:48:53 [WARNING] - 19434 +2026-02-23 06:48:53 [WARNING] - 8997 +2026-02-23 06:48:53 [INFO] - 20183 +2026-02-23 06:48:53 [ERROR] Out of memory - 9094 +2026-02-23 06:48:53 [INFO] - 24609 +2026-02-23 06:48:53 [WARNING] - 28859 +2026-02-23 06:48:53 [CRITICAL] - 17990 +2026-02-23 06:48:53 [ERROR] Out of memory - 18213 +2026-02-23 06:48:53 [DEBUG] - 3725 +2026-02-23 06:48:53 [CRITICAL] - 8999 +2026-02-23 06:48:53 [ERROR] Segmentation fault - 19011 +2026-02-23 06:48:53 [DEBUG] - 13578 +2026-02-23 06:48:53 [INFO] - 32171 +2026-02-23 06:48:53 [INFO] - 16734 +2026-02-23 06:48:53 [CRITICAL] - 31519 +2026-02-23 06:48:53 [WARNING] - 30252 +2026-02-23 06:48:53 [ERROR] Failed to connect - 9502 +2026-02-23 06:48:53 [INFO] - 6365 +2026-02-23 06:48:53 [ERROR] Failed to connect - 31807 +2026-02-23 06:48:53 [ERROR] Invalid input - 20450 +2026-02-23 06:48:53 [INFO] - 20545 +2026-02-23 06:48:53 [INFO] - 4152 +2026-02-23 06:48:53 [CRITICAL] - 7915 +2026-02-23 06:48:53 [WARNING] - 22397 +2026-02-23 06:48:53 [WARNING] - 875 +2026-02-23 06:48:53 [CRITICAL] - 27873 +2026-02-23 06:48:53 [ERROR] Disk full - 30444 +2026-02-23 06:48:53 [DEBUG] - 13796 +2026-02-23 06:48:53 [DEBUG] - 22712 +2026-02-23 06:48:53 [CRITICAL] - 23160 +2026-02-23 06:48:53 [CRITICAL] - 13785 +2026-02-23 06:48:53 [CRITICAL] - 24830 +2026-02-23 06:48:53 [CRITICAL] - 23858 +2026-02-23 06:48:53 [WARNING] - 19818 +2026-02-23 06:48:53 [INFO] - 26687 +2026-02-23 06:48:53 [DEBUG] - 5903 +2026-02-23 06:48:53 [INFO] - 29332 +2026-02-23 06:48:53 [DEBUG] - 24505 +2026-02-23 06:48:53 [WARNING] - 8337 +2026-02-23 06:48:53 [DEBUG] - 14264 +2026-02-23 06:48:53 [INFO] - 19062 +2026-02-23 06:48:53 [DEBUG] - 14433 +2026-02-23 06:48:53 [WARNING] - 26959 +2026-02-23 06:48:53 [WARNING] - 26261 +2026-02-23 06:48:53 [ERROR] Segmentation fault - 13527 +2026-02-23 06:48:53 [INFO] - 30178 +2026-02-23 06:48:53 [DEBUG] - 18587 +2026-02-23 06:48:53 [DEBUG] - 25247 +2026-02-23 06:48:53 [ERROR] Out of memory - 29431 +2026-02-23 06:48:53 [DEBUG] - 7361 +2026-02-23 06:48:53 [INFO] - 21551 +2026-02-23 06:48:53 [DEBUG] - 4309 +2026-02-23 06:48:53 [ERROR] Disk full - 9814 +2026-02-23 06:48:53 [DEBUG] - 27223 +2026-02-23 06:48:53 [DEBUG] - 27469 +2026-02-23 06:48:53 [CRITICAL] - 1842 +2026-02-23 06:48:53 [WARNING] - 11226 +2026-02-23 06:48:53 [CRITICAL] - 9336 +2026-02-23 06:48:53 [DEBUG] - 6865 +2026-02-23 06:48:53 [INFO] - 16505 +2026-02-23 06:48:53 [WARNING] - 23091 +2026-02-23 06:48:53 [CRITICAL] - 24640 +2026-02-23 06:48:53 [CRITICAL] - 28524 +2026-02-23 06:48:53 [DEBUG] - 11144 +2026-02-23 06:48:53 [CRITICAL] - 20515 +2026-02-23 06:48:53 [WARNING] - 24333 +2026-02-23 06:48:53 [INFO] - 5845 +2026-02-23 06:48:53 [ERROR] Out of memory - 1354 +2026-02-23 06:48:53 [INFO] - 9197 +2026-02-23 06:48:53 [CRITICAL] - 21995 +2026-02-23 06:48:53 [DEBUG] - 10215 +2026-02-23 06:48:53 [CRITICAL] - 12254 +2026-02-23 06:48:53 [WARNING] - 7486 +2026-02-23 06:48:53 [DEBUG] - 16390 +2026-02-23 06:48:53 [INFO] - 27214 +2026-02-23 06:48:53 [WARNING] - 17940 +2026-02-23 06:48:53 [DEBUG] - 3196 +2026-02-23 06:48:53 [ERROR] Out of memory - 27581 +2026-02-23 06:48:53 [ERROR] Out of memory - 17413 +2026-02-23 06:48:53 [CRITICAL] - 21129 +2026-02-23 06:48:53 [WARNING] - 32087 +2026-02-23 06:48:53 [ERROR] Invalid input - 17332 +2026-02-23 06:48:53 [CRITICAL] - 26927 +2026-02-23 06:48:53 [ERROR] Segmentation fault - 10873 +2026-02-23 06:48:53 [WARNING] - 4620 +2026-02-23 06:48:53 [WARNING] - 20646 +2026-02-23 06:48:53 [DEBUG] - 29616 +2026-02-23 06:48:53 [INFO] - 27599 +2026-02-23 06:48:53 [ERROR] Segmentation fault - 20692 +2026-02-23 06:48:53 [WARNING] - 20803 +2026-02-23 06:48:53 [WARNING] - 14257 +2026-02-23 06:48:53 [INFO] - 12086 +2026-02-23 06:48:53 [ERROR] Disk full - 22603 +2026-02-23 06:48:53 [INFO] - 23432 +2026-02-23 06:48:53 [ERROR] Out of memory - 955 +2026-02-23 06:48:53 [INFO] - 32497 +2026-02-23 06:48:53 [ERROR] Segmentation fault - 23154 +2026-02-23 06:48:54 [WARNING] - 32239 +2026-02-23 06:48:54 [CRITICAL] - 20496 +2026-02-23 06:48:54 [DEBUG] - 7593 +2026-02-23 06:48:54 [ERROR] Failed to connect - 23037 +2026-02-23 06:48:54 [WARNING] - 23201 +2026-02-23 06:48:54 [CRITICAL] - 1187 +2026-02-23 06:48:54 [DEBUG] - 13470 +2026-02-23 06:48:54 [WARNING] - 9605 +2026-02-23 06:48:54 [WARNING] - 7855 +2026-02-23 06:48:54 [INFO] - 13856 +2026-02-23 06:48:54 [DEBUG] - 18690 +2026-02-23 06:48:54 [INFO] - 21802 +2026-02-23 06:48:54 [DEBUG] - 2360 +2026-02-23 06:48:54 [INFO] - 9661 +2026-02-23 06:48:54 [DEBUG] - 20290 +2026-02-23 06:48:54 [DEBUG] - 23383 +2026-02-23 06:48:54 [ERROR] Out of memory - 8600 +2026-02-23 06:48:54 [WARNING] - 12252 +2026-02-23 06:48:54 [INFO] - 24732 +2026-02-23 06:48:54 [DEBUG] - 15933 +2026-02-23 06:48:54 [ERROR] Segmentation fault - 27073 +2026-02-23 06:48:54 [WARNING] - 4845 +2026-02-23 06:48:54 [INFO] - 1701 +2026-02-23 06:48:54 [WARNING] - 920 +2026-02-23 06:48:54 [DEBUG] - 18952 +2026-02-23 06:48:54 [DEBUG] - 20523 +2026-02-23 06:48:54 [CRITICAL] - 18679 +2026-02-23 06:48:54 [WARNING] - 16250 +2026-02-23 06:48:54 [DEBUG] - 3430 +2026-02-23 06:48:54 [ERROR] Failed to connect - 2592 +2026-02-23 06:48:54 [CRITICAL] - 18193 +2026-02-23 06:48:54 [INFO] - 31442 +2026-02-23 06:48:54 [INFO] - 5285 +2026-02-23 06:48:54 [ERROR] Segmentation fault - 25401 +2026-02-23 06:48:54 [CRITICAL] - 14389 +2026-02-23 06:48:54 [WARNING] - 25919 +2026-02-23 06:48:54 [ERROR] Failed to connect - 6181 +2026-02-23 06:48:54 [DEBUG] - 19144 +2026-02-23 06:48:54 [CRITICAL] - 7393 +2026-02-23 06:48:54 [CRITICAL] - 1993 +2026-02-23 06:48:54 [ERROR] Out of memory - 1275 +2026-02-23 06:48:54 [DEBUG] - 26475 +2026-02-23 06:48:54 [WARNING] - 15717 +2026-02-23 06:48:54 [WARNING] - 16206 +2026-02-23 06:48:54 [ERROR] Invalid input - 17139 +2026-02-23 06:48:54 [WARNING] - 23273 +2026-02-23 06:48:54 [CRITICAL] - 8645 +2026-02-23 06:48:54 [ERROR] Disk full - 13272 +2026-02-23 06:48:54 [CRITICAL] - 6658 +2026-02-23 06:48:54 [DEBUG] - 12081 +2026-02-23 06:48:54 [ERROR] Invalid input - 28611 +2026-02-23 06:48:54 [CRITICAL] - 22291 +2026-02-23 06:48:54 [INFO] - 29073 +2026-02-23 06:48:54 [WARNING] - 10360 +2026-02-23 06:48:54 [CRITICAL] - 8960 +2026-02-23 06:48:54 [INFO] - 26326 +2026-02-23 06:48:54 [ERROR] Failed to connect - 2014 +2026-02-23 06:48:54 [WARNING] - 11138 +2026-02-23 06:48:54 [CRITICAL] - 10442 +2026-02-23 06:48:54 [INFO] - 14595 +2026-02-23 06:48:54 [DEBUG] - 2696 +2026-02-23 06:48:54 [DEBUG] - 23195 +2026-02-23 06:48:54 [WARNING] - 3414 +2026-02-23 06:48:54 [ERROR] Out of memory - 918 +2026-02-23 06:48:54 [CRITICAL] - 30945 +2026-02-23 06:48:54 [WARNING] - 6713 +2026-02-23 06:48:54 [CRITICAL] - 4288 +2026-02-23 06:48:54 [DEBUG] - 2629 +2026-02-23 06:48:54 [ERROR] Segmentation fault - 23727 +2026-02-23 06:48:54 [ERROR] Out of memory - 7380 +2026-02-23 06:48:54 [DEBUG] - 12335 +2026-02-23 06:48:54 [WARNING] - 17328 +2026-02-23 06:48:54 [WARNING] - 12941 +2026-02-23 06:48:54 [INFO] - 24228 +2026-02-23 06:48:54 [CRITICAL] - 3060 +2026-02-23 06:48:54 [INFO] - 25989 +2026-02-23 06:48:54 [ERROR] Segmentation fault - 15046 +2026-02-23 06:48:54 [DEBUG] - 22843 +2026-02-23 06:48:54 [WARNING] - 2287 +2026-02-23 06:48:54 [CRITICAL] - 20855 +2026-02-23 06:48:54 [DEBUG] - 23607 +2026-02-23 06:48:54 [ERROR] Out of memory - 22265 +2026-02-23 06:48:54 [ERROR] Segmentation fault - 23082 +2026-02-23 06:48:54 [ERROR] Segmentation fault - 6140 +2026-02-23 06:48:54 [WARNING] - 6142 +2026-02-23 06:48:54 [CRITICAL] - 20137 +2026-02-23 06:48:54 [DEBUG] - 1467 +2026-02-23 06:48:54 [INFO] - 27324 +2026-02-23 06:48:54 [DEBUG] - 34 +2026-02-23 06:48:54 [ERROR] Segmentation fault - 27413 +2026-02-23 06:48:54 [INFO] - 18749 +2026-02-23 06:48:54 [WARNING] - 22418 +2026-02-23 06:48:54 [WARNING] - 3869 +2026-02-23 06:48:54 [DEBUG] - 9908 +2026-02-23 06:48:54 [INFO] - 13008 +2026-02-23 06:48:54 [WARNING] - 26560 +2026-02-23 06:48:54 [ERROR] Failed to connect - 23129 +2026-02-23 06:48:54 [WARNING] - 17623 +2026-02-23 06:48:54 [ERROR] Invalid input - 7260 +2026-02-23 06:48:54 [DEBUG] - 5061 +2026-02-23 06:48:54 [DEBUG] - 18833 +2026-02-23 06:48:54 [WARNING] - 31599 +2026-02-23 06:48:54 [INFO] - 12567 +2026-02-23 06:48:54 [ERROR] Disk full - 26236 +2026-02-23 06:48:54 [WARNING] - 329 +2026-02-23 06:48:54 [CRITICAL] - 31065 +2026-02-23 06:48:54 [DEBUG] - 19739 +2026-02-23 06:48:54 [WARNING] - 20743 +2026-02-23 06:48:54 [CRITICAL] - 24443 +2026-02-23 06:48:54 [DEBUG] - 14400 +2026-02-23 06:48:54 [CRITICAL] - 15597 +2026-02-23 06:48:54 [WARNING] - 4437 +2026-02-23 06:48:54 [CRITICAL] - 21646 +2026-02-23 06:48:54 [CRITICAL] - 27550 +2026-02-23 06:48:54 [CRITICAL] - 5660 +2026-02-23 06:48:54 [CRITICAL] - 17448 +2026-02-23 06:48:54 [WARNING] - 20199 +2026-02-23 06:48:54 [INFO] - 981 +2026-02-23 06:48:54 [INFO] - 32294 +2026-02-23 06:48:54 [INFO] - 1270 +2026-02-23 06:48:54 [WARNING] - 31919 +2026-02-23 06:48:54 [CRITICAL] - 19106 +2026-02-23 06:48:54 [INFO] - 8992 +2026-02-23 06:48:54 [CRITICAL] - 8755 +2026-02-23 06:48:54 [DEBUG] - 12598 +2026-02-23 06:48:54 [ERROR] Invalid input - 22227 +2026-02-23 06:48:54 [CRITICAL] - 2050 +2026-02-23 06:48:54 [INFO] - 1077 +2026-02-23 06:48:54 [ERROR] Invalid input - 20240 +2026-02-23 06:48:54 [WARNING] - 16936 +2026-02-23 06:48:54 [ERROR] Invalid input - 11469 +2026-02-23 06:48:54 [CRITICAL] - 16219 +2026-02-23 06:48:54 [ERROR] Failed to connect - 5135 +2026-02-23 06:48:54 [DEBUG] - 18144 +2026-02-23 06:48:54 [WARNING] - 22057 +2026-02-23 06:48:54 [CRITICAL] - 650 +2026-02-23 06:48:54 [ERROR] Invalid input - 17878 +2026-02-23 06:48:54 [DEBUG] - 12760 +2026-02-23 06:48:54 [DEBUG] - 20692 +2026-02-23 06:48:54 [CRITICAL] - 26101 +2026-02-23 06:48:54 [CRITICAL] - 11103 +2026-02-23 06:48:54 [WARNING] - 19143 +2026-02-23 06:48:54 [ERROR] Out of memory - 19097 +2026-02-23 06:48:54 [ERROR] Invalid input - 29367 +2026-02-23 06:48:54 [INFO] - 20252 +2026-02-23 06:48:54 [ERROR] Segmentation fault - 17511 +2026-02-23 06:48:54 [DEBUG] - 31847 +2026-02-23 06:48:54 [WARNING] - 11596 +2026-02-23 06:48:54 [DEBUG] - 12518 +2026-02-23 06:48:54 [CRITICAL] - 15441 +2026-02-23 06:48:54 [ERROR] Invalid input - 16992 +2026-02-23 06:48:54 [INFO] - 27896 +2026-02-23 06:48:54 [ERROR] Failed to connect - 23315 +2026-02-23 06:48:54 [INFO] - 29646 +2026-02-23 06:48:54 [DEBUG] - 5944 +2026-02-23 06:48:54 [ERROR] Segmentation fault - 23282 +2026-02-23 06:48:54 [INFO] - 29142 +2026-02-23 06:48:54 [DEBUG] - 4490 +2026-02-23 06:48:54 [WARNING] - 15620 +2026-02-23 06:48:54 [INFO] - 28009 +2026-02-23 06:48:54 [WARNING] - 208 +2026-02-23 06:48:54 [INFO] - 21240 +2026-02-23 06:48:54 [INFO] - 1087 +2026-02-23 06:48:54 [WARNING] - 25528 +2026-02-23 06:48:54 [CRITICAL] - 16577 +2026-02-23 06:48:54 [ERROR] Out of memory - 2063 +2026-02-23 06:48:54 [INFO] - 20655 +2026-02-23 06:48:54 [WARNING] - 14443 +2026-02-23 06:48:54 [INFO] - 14544 +2026-02-23 06:48:54 [WARNING] - 17161 +2026-02-23 06:48:54 [INFO] - 21182 +2026-02-23 06:48:54 [INFO] - 28163 +2026-02-23 06:48:54 [ERROR] Invalid input - 4134 +2026-02-23 06:48:54 [DEBUG] - 14868 +2026-02-23 06:48:54 [CRITICAL] - 5508 +2026-02-23 06:48:54 [CRITICAL] - 10703 +2026-02-23 06:48:54 [DEBUG] - 17455 +2026-02-23 06:48:54 [WARNING] - 4880 +2026-02-23 06:48:54 [WARNING] - 15401 +2026-02-23 06:48:54 [DEBUG] - 5814 +2026-02-23 06:48:54 [WARNING] - 21860 +2026-02-23 06:48:54 [WARNING] - 26526 +2026-02-23 06:48:54 [WARNING] - 22711 +2026-02-23 06:48:54 [ERROR] Failed to connect - 570 +2026-02-23 06:48:54 [CRITICAL] - 18218 +2026-02-23 06:48:54 [WARNING] - 32284 +2026-02-23 06:48:54 [ERROR] Invalid input - 23949 +2026-02-23 06:48:54 [CRITICAL] - 20467 +2026-02-23 06:48:54 [INFO] - 14139 +2026-02-23 06:48:54 [CRITICAL] - 4429 +2026-02-23 06:48:54 [CRITICAL] - 17344 +2026-02-23 06:48:54 [INFO] - 20455 +2026-02-23 06:48:54 [DEBUG] - 26878 +2026-02-23 06:48:54 [DEBUG] - 7829 +2026-02-23 06:48:54 [INFO] - 26364 +2026-02-23 06:48:54 [CRITICAL] - 10510 +2026-02-23 06:48:54 [CRITICAL] - 26750 +2026-02-23 06:48:54 [ERROR] Failed to connect - 25259 +2026-02-23 06:48:54 [DEBUG] - 27215 +2026-02-23 06:48:54 [ERROR] Segmentation fault - 13100 +2026-02-23 06:48:54 [WARNING] - 12495 +2026-02-23 06:48:54 [WARNING] - 30011 +2026-02-23 06:48:54 [CRITICAL] - 18356 +2026-02-23 06:48:54 [CRITICAL] - 17324 +2026-02-23 06:48:54 [CRITICAL] - 25418 +2026-02-23 06:48:54 [DEBUG] - 31992 +2026-02-23 06:48:54 [INFO] - 13773 +2026-02-23 06:48:54 [INFO] - 14299 +2026-02-23 06:48:54 [INFO] - 13130 +2026-02-23 06:48:54 [WARNING] - 3117 +2026-02-23 06:48:54 [INFO] - 17752 +2026-02-23 06:48:54 [ERROR] Invalid input - 12211 +2026-02-23 06:48:54 [INFO] - 4888 +2026-02-23 06:48:54 [WARNING] - 6943 +2026-02-23 06:48:54 [INFO] - 14477 +2026-02-23 06:48:54 [CRITICAL] - 3679 +2026-02-23 06:48:54 [INFO] - 27040 +2026-02-23 06:48:54 [CRITICAL] - 8340 +2026-02-23 06:48:54 [ERROR] Invalid input - 22614 +2026-02-23 06:48:54 [WARNING] - 10136 +2026-02-23 06:48:54 [ERROR] Failed to connect - 2438 +2026-02-23 06:48:54 [ERROR] Failed to connect - 10925 +2026-02-23 06:48:54 [INFO] - 4500 +2026-02-23 06:48:54 [ERROR] Invalid input - 8845 +2026-02-23 06:48:54 [ERROR] Failed to connect - 31631 +2026-02-23 06:48:54 [WARNING] - 6803 +2026-02-23 06:48:54 [DEBUG] - 10502 +2026-02-23 06:48:54 [INFO] - 32659 +2026-02-23 06:48:54 [INFO] - 9689 +2026-02-23 06:48:54 [WARNING] - 24441 +2026-02-23 06:48:54 [WARNING] - 28338 +2026-02-23 06:48:54 [ERROR] Out of memory - 16969 +2026-02-23 06:48:54 [DEBUG] - 26424 +2026-02-23 06:48:54 [INFO] - 32668 +2026-02-23 06:48:54 [WARNING] - 7673 +2026-02-23 06:48:54 [WARNING] - 29624 +2026-02-23 06:48:54 [CRITICAL] - 28589 +2026-02-23 06:48:54 [DEBUG] - 18474 +2026-02-23 06:48:54 [CRITICAL] - 18873 +2026-02-23 06:48:54 [DEBUG] - 5458 +2026-02-23 06:48:54 [DEBUG] - 14259 +2026-02-23 06:48:54 [ERROR] Out of memory - 1939 +2026-02-23 06:48:54 [INFO] - 381 +2026-02-23 06:48:54 [INFO] - 3383 +2026-02-23 06:48:54 [CRITICAL] - 29398 +2026-02-23 06:48:54 [INFO] - 14105 +2026-02-23 06:48:54 [INFO] - 20485 +2026-02-23 06:48:54 [WARNING] - 18453 +2026-02-23 06:48:54 [INFO] - 20856 +2026-02-23 06:48:54 [WARNING] - 21212 +2026-02-23 06:48:54 [CRITICAL] - 12062 +2026-02-23 06:48:54 [CRITICAL] - 11261 +2026-02-23 06:48:54 [INFO] - 28586 +2026-02-23 06:48:54 [ERROR] Failed to connect - 9356 +2026-02-23 06:48:54 [CRITICAL] - 17670 +2026-02-23 06:48:54 [INFO] - 2118 +2026-02-23 06:48:54 [ERROR] Out of memory - 8444 +2026-02-23 06:48:54 [WARNING] - 18907 +2026-02-23 06:48:54 [ERROR] Failed to connect - 12314 +2026-02-23 06:48:54 [ERROR] Out of memory - 16441 +2026-02-23 06:48:54 [CRITICAL] - 30366 +2026-02-23 06:48:54 [ERROR] Invalid input - 28001 +2026-02-23 06:48:54 [WARNING] - 15922 +2026-02-23 06:48:54 [WARNING] - 8253 +2026-02-23 06:48:54 [DEBUG] - 12054 +2026-02-23 06:48:54 [ERROR] Failed to connect - 31565 +2026-02-23 06:48:54 [INFO] - 19574 +2026-02-23 06:48:54 [DEBUG] - 3722 +2026-02-23 06:48:54 [CRITICAL] - 24263 +2026-02-23 06:48:54 [WARNING] - 28483 +2026-02-23 06:48:54 [ERROR] Failed to connect - 8030 +2026-02-23 06:48:54 [DEBUG] - 7416 +2026-02-23 06:48:54 [CRITICAL] - 10399 +2026-02-23 06:48:54 [DEBUG] - 11190 +2026-02-23 06:48:54 [ERROR] Segmentation fault - 9253 +2026-02-23 06:48:54 [CRITICAL] - 4055 +2026-02-23 06:48:54 [DEBUG] - 11480 +2026-02-23 06:48:54 [DEBUG] - 29099 +2026-02-23 06:48:54 [ERROR] Disk full - 4027 +2026-02-23 06:48:54 [DEBUG] - 22680 +2026-02-23 06:48:54 [WARNING] - 16128 +2026-02-23 06:48:54 [DEBUG] - 10685 +2026-02-23 06:48:54 [ERROR] Out of memory - 4656 +2026-02-23 06:48:54 [WARNING] - 9786 +2026-02-23 06:48:54 [INFO] - 18936 +2026-02-23 06:48:54 [INFO] - 25011 +2026-02-23 06:48:54 [ERROR] Out of memory - 31012 +2026-02-23 06:48:54 [INFO] - 17645 +2026-02-23 06:48:54 [CRITICAL] - 17499 +2026-02-23 06:48:54 [WARNING] - 27745 +2026-02-23 06:48:54 [CRITICAL] - 27422 +2026-02-23 06:48:54 [WARNING] - 2322 +2026-02-23 06:48:54 [WARNING] - 3165 +2026-02-23 06:48:54 [CRITICAL] - 17895 +2026-02-23 06:48:54 [ERROR] Segmentation fault - 30235 +2026-02-23 06:48:54 [CRITICAL] - 543 +2026-02-23 06:48:54 [INFO] - 17361 +2026-02-23 06:48:54 [DEBUG] - 21729 +2026-02-23 06:48:54 [ERROR] Invalid input - 32402 +2026-02-23 06:48:54 [WARNING] - 32530 +2026-02-23 06:48:54 [ERROR] Out of memory - 1685 +2026-02-23 06:48:54 [ERROR] Failed to connect - 13459 +2026-02-23 06:48:54 [CRITICAL] - 28564 +2026-02-23 06:48:54 [WARNING] - 7480 +2026-02-23 06:48:54 [ERROR] Disk full - 25160 +2026-02-23 06:48:54 [INFO] - 25727 +2026-02-23 06:48:54 [CRITICAL] - 15513 +2026-02-23 06:48:54 [CRITICAL] - 22401 +2026-02-23 06:48:54 [WARNING] - 12211 +2026-02-23 06:48:54 [ERROR] Segmentation fault - 14671 +2026-02-23 06:48:54 [CRITICAL] - 22931 +2026-02-23 06:48:54 [INFO] - 11301 +2026-02-23 06:48:54 [DEBUG] - 13250 +2026-02-23 06:48:54 [ERROR] Invalid input - 18888 +2026-02-23 06:48:54 [DEBUG] - 28540 +2026-02-23 06:48:54 [ERROR] Invalid input - 790 +2026-02-23 06:48:54 [WARNING] - 5425 +2026-02-23 06:48:54 [DEBUG] - 27741 +2026-02-23 06:48:54 [WARNING] - 27252 +2026-02-23 06:48:54 [WARNING] - 26707 +2026-02-23 06:48:54 [CRITICAL] - 12495 +2026-02-23 06:48:54 [CRITICAL] - 18582 +2026-02-23 06:48:54 [ERROR] Failed to connect - 1108 +2026-02-23 06:48:54 [WARNING] - 28679 +2026-02-23 06:48:54 [INFO] - 5716 +2026-02-23 06:48:54 [DEBUG] - 27608 +2026-02-23 06:48:54 [CRITICAL] - 25628 +2026-02-23 06:48:54 [ERROR] Failed to connect - 32241 +2026-02-23 06:48:54 [DEBUG] - 14129 +2026-02-23 06:48:54 [CRITICAL] - 7448 +2026-02-23 06:48:54 [DEBUG] - 11545 +2026-02-23 06:48:54 [DEBUG] - 12486 +2026-02-23 06:48:54 [INFO] - 23285 +2026-02-23 06:48:54 [INFO] - 733 +2026-02-23 06:48:54 [DEBUG] - 13324 +2026-02-23 06:48:54 [CRITICAL] - 4650 +2026-02-23 06:48:54 [DEBUG] - 32699 +2026-02-23 06:48:54 [INFO] - 5701 +2026-02-23 06:48:54 [CRITICAL] - 22954 +2026-02-23 06:48:54 [DEBUG] - 28789 +2026-02-23 06:48:54 [WARNING] - 30792 +2026-02-23 06:48:54 [CRITICAL] - 156 +2026-02-23 06:48:54 [ERROR] Invalid input - 9369 +2026-02-23 06:48:54 [WARNING] - 2449 +2026-02-23 06:48:54 [ERROR] Segmentation fault - 3684 +2026-02-23 06:48:54 [DEBUG] - 27935 +2026-02-23 06:48:54 [CRITICAL] - 21842 +2026-02-23 06:48:54 [CRITICAL] - 12330 +2026-02-23 06:48:54 [WARNING] - 6370 +2026-02-23 06:48:54 [CRITICAL] - 2575 +2026-02-23 06:48:54 [ERROR] Invalid input - 30781 +2026-02-23 06:48:54 [ERROR] Disk full - 7895 +2026-02-23 06:48:54 [WARNING] - 11201 +2026-02-23 06:48:54 [ERROR] Invalid input - 29924 +2026-02-23 06:48:54 [INFO] - 15766 +2026-02-23 06:48:54 [INFO] - 17052 +2026-02-23 06:48:54 [INFO] - 9048 +2026-02-23 06:48:54 [CRITICAL] - 21596 +2026-02-23 06:48:54 [ERROR] Segmentation fault - 1007 +2026-02-23 06:48:54 [ERROR] Out of memory - 18152 +2026-02-23 06:48:54 [WARNING] - 16550 +2026-02-23 06:48:54 [DEBUG] - 14647 +2026-02-23 06:48:54 [ERROR] Invalid input - 6018 +2026-02-23 06:48:54 [CRITICAL] - 25227 +2026-02-23 06:48:54 [CRITICAL] - 30437 +2026-02-23 06:48:54 [ERROR] Disk full - 4493 +2026-02-23 06:48:54 [INFO] - 28435 +2026-02-23 06:48:54 [WARNING] - 532 +2026-02-23 06:48:54 [INFO] - 18704 +2026-02-23 06:48:54 [WARNING] - 29660 +2026-02-23 06:48:54 [ERROR] Invalid input - 9553 +2026-02-23 06:48:54 [INFO] - 26940 +2026-02-23 06:48:54 [CRITICAL] - 11843 +2026-02-23 06:48:54 [WARNING] - 27034 +2026-02-23 06:48:54 [DEBUG] - 27728 +2026-02-23 06:48:54 [DEBUG] - 6360 +2026-02-23 06:48:54 [WARNING] - 28726 +2026-02-23 06:48:54 [ERROR] Out of memory - 20947 +2026-02-23 06:48:54 [ERROR] Invalid input - 22578 +2026-02-23 06:48:54 [CRITICAL] - 19506 +2026-02-23 06:48:54 [DEBUG] - 4708 +2026-02-23 06:48:54 [CRITICAL] - 18894 +2026-02-23 06:48:54 [WARNING] - 22126 +2026-02-23 06:48:54 [INFO] - 10482 +2026-02-23 06:48:54 [ERROR] Out of memory - 27434 +2026-02-23 06:48:54 [INFO] - 12211 +2026-02-23 06:48:54 [DEBUG] - 4191 +2026-02-23 06:48:54 [CRITICAL] - 22323 +2026-02-23 06:48:54 [DEBUG] - 8876 +2026-02-23 06:48:54 [DEBUG] - 32517 +2026-02-23 06:48:54 [ERROR] Disk full - 16680 +2026-02-23 06:48:54 [WARNING] - 13332 +2026-02-23 06:48:54 [DEBUG] - 27079 +2026-02-23 06:48:54 [INFO] - 18977 +2026-02-23 06:48:54 [DEBUG] - 7427 +2026-02-23 06:48:54 [INFO] - 31223 +2026-02-23 06:48:54 [CRITICAL] - 12600 +2026-02-23 06:48:54 [CRITICAL] - 28941 +2026-02-23 06:48:54 [ERROR] Out of memory - 20123 +2026-02-23 06:48:54 [ERROR] Failed to connect - 11483 +2026-02-23 06:48:54 [ERROR] Failed to connect - 4381 +2026-02-23 06:48:54 [DEBUG] - 18353 +2026-02-23 06:48:54 [WARNING] - 2053 +2026-02-23 06:48:54 [DEBUG] - 5011 +2026-02-23 06:48:54 [CRITICAL] - 30050 +2026-02-23 06:48:54 [INFO] - 5410 +2026-02-23 06:48:54 [INFO] - 14272 +2026-02-23 06:48:54 [CRITICAL] - 27203 +2026-02-23 06:48:54 [INFO] - 28706 +2026-02-23 06:48:54 [INFO] - 23309 +2026-02-23 06:48:54 [ERROR] Disk full - 2078 +2026-02-23 06:48:54 [DEBUG] - 30372 +2026-02-23 06:48:54 [CRITICAL] - 531 +2026-02-23 06:48:54 [DEBUG] - 6459 +2026-02-23 06:48:54 [INFO] - 8496 +2026-02-23 06:48:54 [DEBUG] - 1842 +2026-02-23 06:48:54 [DEBUG] - 3233 +2026-02-23 06:48:54 [WARNING] - 7858 +2026-02-23 06:48:54 [WARNING] - 151 +2026-02-23 06:48:54 [WARNING] - 10581 +2026-02-23 06:48:54 [DEBUG] - 9412 +2026-02-23 06:48:54 [DEBUG] - 12088 +2026-02-23 06:48:54 [DEBUG] - 2948 +2026-02-23 06:48:54 [DEBUG] - 27743 +2026-02-23 06:48:54 [WARNING] - 25689 +2026-02-23 06:48:54 [WARNING] - 9573 +2026-02-23 06:48:54 [INFO] - 19526 +2026-02-23 06:48:54 [CRITICAL] - 21066 +2026-02-23 06:48:54 [DEBUG] - 10411 +2026-02-23 06:48:54 [WARNING] - 28956 +2026-02-23 06:48:54 [WARNING] - 4493 +2026-02-23 06:48:54 [INFO] - 9147 +2026-02-23 06:48:54 [WARNING] - 6461 +2026-02-23 06:48:54 [INFO] - 17100 +2026-02-23 06:48:54 [DEBUG] - 2377 +2026-02-23 06:48:54 [WARNING] - 28465 +2026-02-23 06:48:54 [INFO] - 3376 +2026-02-23 06:48:54 [INFO] - 25511 +2026-02-23 06:48:54 [DEBUG] - 21639 +2026-02-23 06:48:54 [DEBUG] - 1383 +2026-02-23 06:48:54 [INFO] - 10928 +2026-02-23 06:48:54 [INFO] - 20838 +2026-02-23 06:48:54 [CRITICAL] - 24736 +2026-02-23 06:48:54 [WARNING] - 1157 +2026-02-23 06:48:54 [WARNING] - 25860 +2026-02-23 06:48:54 [INFO] - 11233 +2026-02-23 06:48:54 [ERROR] Segmentation fault - 25554 +2026-02-23 06:48:54 [INFO] - 22116 +2026-02-23 06:48:54 [CRITICAL] - 1841 +2026-02-23 06:48:54 [ERROR] Out of memory - 17621 +2026-02-23 06:48:54 [WARNING] - 31240 +2026-02-23 06:48:54 [ERROR] Segmentation fault - 29607 +2026-02-23 06:48:54 [INFO] - 6084 +2026-02-23 06:48:54 [ERROR] Invalid input - 7621 +2026-02-23 06:48:54 [CRITICAL] - 29147 +2026-02-23 06:48:54 [DEBUG] - 31645 +2026-02-23 06:48:54 [WARNING] - 17441 +2026-02-23 06:48:54 [INFO] - 1634 +2026-02-23 06:48:54 [ERROR] Out of memory - 24238 +2026-02-23 06:48:54 [DEBUG] - 17637 +2026-02-23 06:48:54 [ERROR] Segmentation fault - 10023 +2026-02-23 06:48:54 [INFO] - 12129 +2026-02-23 06:48:54 [WARNING] - 22250 +2026-02-23 06:48:54 [DEBUG] - 1209 +2026-02-23 06:48:54 [WARNING] - 15843 +2026-02-23 06:48:54 [ERROR] Segmentation fault - 5576 +2026-02-23 06:48:54 [INFO] - 6112 +2026-02-23 06:48:54 [INFO] - 32119 +2026-02-23 06:48:54 [CRITICAL] - 27171 +2026-02-23 06:48:54 [ERROR] Failed to connect - 19735 +2026-02-23 06:48:54 [ERROR] Segmentation fault - 3751 +2026-02-23 06:48:54 [DEBUG] - 12286 +2026-02-23 06:48:54 [DEBUG] - 13527 +2026-02-23 06:48:54 [WARNING] - 14347 +2026-02-23 06:48:54 [INFO] - 11756 +2026-02-23 06:48:54 [INFO] - 24121 +2026-02-23 06:48:54 [INFO] - 20640 +2026-02-23 06:48:54 [WARNING] - 15669 +2026-02-23 06:48:54 [CRITICAL] - 2585 +2026-02-23 06:48:54 [WARNING] - 28221 +2026-02-23 06:48:54 [CRITICAL] - 24358 +2026-02-23 06:48:54 [INFO] - 15628 +2026-02-23 06:48:54 [ERROR] Disk full - 9421 +2026-02-23 06:48:54 [CRITICAL] - 10042 +2026-02-23 06:48:54 [INFO] - 32349 +2026-02-23 06:48:54 [INFO] - 14162 +2026-02-23 06:48:54 [CRITICAL] - 14363 +2026-02-23 06:48:54 [ERROR] Invalid input - 2443 +2026-02-23 06:48:54 [INFO] - 9191 +2026-02-23 06:48:54 [CRITICAL] - 26720 +2026-02-23 06:48:54 [ERROR] Failed to connect - 3441 +2026-02-23 06:48:54 [WARNING] - 27143 +2026-02-23 06:48:54 [ERROR] Disk full - 24016 +2026-02-23 06:48:54 [WARNING] - 5633 +2026-02-23 06:48:54 [ERROR] Invalid input - 18963 +2026-02-23 06:48:54 [WARNING] - 26853 +2026-02-23 06:48:54 [WARNING] - 16137 +2026-02-23 06:48:54 [CRITICAL] - 25255 +2026-02-23 06:48:54 [DEBUG] - 31187 +2026-02-23 06:48:54 [INFO] - 29963 +2026-02-23 06:48:54 [INFO] - 25851 +2026-02-23 06:48:54 [WARNING] - 15510 +2026-02-23 06:48:54 [WARNING] - 21716 +2026-02-23 06:48:54 [WARNING] - 28952 +2026-02-23 06:48:54 [DEBUG] - 4905 +2026-02-23 06:48:54 [WARNING] - 28669 +2026-02-23 06:48:54 [CRITICAL] - 8331 +2026-02-23 06:48:54 [INFO] - 2792 +2026-02-23 06:48:54 [WARNING] - 12607 +2026-02-23 06:48:54 [CRITICAL] - 1895 +2026-02-23 06:48:54 [WARNING] - 15758 +2026-02-23 06:48:54 [ERROR] Disk full - 26272 +2026-02-23 06:48:54 [WARNING] - 3084 +2026-02-23 06:48:54 [WARNING] - 4331 +2026-02-23 06:48:54 [WARNING] - 29329 +2026-02-23 06:48:54 [ERROR] Segmentation fault - 11093 +2026-02-23 06:48:54 [WARNING] - 16129 +2026-02-23 06:48:54 [INFO] - 18490 +2026-02-23 06:48:54 [WARNING] - 1093 +2026-02-23 06:48:54 [ERROR] Disk full - 20614 +2026-02-23 06:48:54 [WARNING] - 13697 +2026-02-23 06:48:54 [CRITICAL] - 24918 +2026-02-23 06:48:54 [CRITICAL] - 32723 +2026-02-23 06:48:54 [DEBUG] - 2577 +2026-02-23 06:48:54 [WARNING] - 21893 +2026-02-23 06:48:54 [WARNING] - 24909 +2026-02-23 06:48:54 [CRITICAL] - 15441 +2026-02-23 06:48:54 [DEBUG] - 10948 +2026-02-23 06:48:54 [ERROR] Segmentation fault - 26254 +2026-02-23 06:48:54 [WARNING] - 26626 +2026-02-23 06:48:54 [DEBUG] - 7799 +2026-02-23 06:48:54 [DEBUG] - 1841 +2026-02-23 06:48:54 [INFO] - 4140 +2026-02-23 06:48:54 [INFO] - 1838 +2026-02-23 06:48:54 [DEBUG] - 13396 +2026-02-23 06:48:54 [CRITICAL] - 485 +2026-02-23 06:48:54 [INFO] - 21588 +2026-02-23 06:48:54 [WARNING] - 12777 +2026-02-23 06:48:54 [CRITICAL] - 9821 +2026-02-23 06:48:54 [DEBUG] - 9447 +2026-02-23 06:48:54 [ERROR] Segmentation fault - 233 +2026-02-23 06:48:54 [DEBUG] - 19499 +2026-02-23 06:48:54 [WARNING] - 5492 +2026-02-23 06:48:54 [INFO] - 22570 +2026-02-23 06:48:54 [INFO] - 13071 +2026-02-23 06:48:54 [WARNING] - 7635 +2026-02-23 06:48:54 [DEBUG] - 14153 +2026-02-23 06:48:54 [DEBUG] - 25580 +2026-02-23 06:48:54 [CRITICAL] - 18654 +2026-02-23 06:48:54 [INFO] - 32309 +2026-02-23 06:48:54 [WARNING] - 21178 +2026-02-23 06:48:54 [INFO] - 33 +2026-02-23 06:48:54 [ERROR] Segmentation fault - 2182 +2026-02-23 06:48:54 [DEBUG] - 21432 +2026-02-23 06:48:54 [WARNING] - 21411 +2026-02-23 06:48:54 [CRITICAL] - 22824 +2026-02-23 06:48:54 [DEBUG] - 28932 +2026-02-23 06:48:54 [CRITICAL] - 22722 +2026-02-23 06:48:54 [ERROR] Failed to connect - 20205 +2026-02-23 06:48:54 [ERROR] Disk full - 31288 +2026-02-23 06:48:54 [CRITICAL] - 24142 +2026-02-23 06:48:54 [WARNING] - 9470 +2026-02-23 06:48:54 [ERROR] Failed to connect - 12471 +2026-02-23 06:48:54 [WARNING] - 32629 +2026-02-23 06:48:54 [ERROR] Failed to connect - 15982 +2026-02-23 06:48:54 [CRITICAL] - 32436 +2026-02-23 06:48:54 [INFO] - 30205 +2026-02-23 06:48:54 [INFO] - 22455 +2026-02-23 06:48:54 [INFO] - 88 +2026-02-23 06:48:54 [INFO] - 10696 +2026-02-23 06:48:54 [INFO] - 12988 +2026-02-23 06:48:54 [INFO] - 5595 +2026-02-23 06:48:54 [DEBUG] - 8381 +2026-02-23 06:48:54 [ERROR] Failed to connect - 8784 +2026-02-23 06:48:54 [DEBUG] - 12135 +2026-02-23 06:48:54 [ERROR] Out of memory - 6106 +2026-02-23 06:48:54 [WARNING] - 27917 +2026-02-23 06:48:54 [WARNING] - 24055 +2026-02-23 06:48:54 [CRITICAL] - 29023 +2026-02-23 06:48:54 [DEBUG] - 16930 +2026-02-23 06:48:54 [DEBUG] - 24396 +2026-02-23 06:48:54 [ERROR] Out of memory - 12108 +2026-02-23 06:48:54 [WARNING] - 12841 +2026-02-23 06:48:54 [ERROR] Segmentation fault - 22203 +2026-02-23 06:48:54 [ERROR] Out of memory - 6311 +2026-02-23 06:48:54 [DEBUG] - 30593 +2026-02-23 06:48:54 [WARNING] - 9496 +2026-02-23 06:48:54 [DEBUG] - 12997 +2026-02-23 06:48:54 [WARNING] - 20704 +2026-02-23 06:48:54 [ERROR] Out of memory - 29178 +2026-02-23 06:48:54 [DEBUG] - 25628 +2026-02-23 06:48:54 [INFO] - 2770 +2026-02-23 06:48:54 [DEBUG] - 31353 +2026-02-23 06:48:54 [WARNING] - 26019 +2026-02-23 06:48:54 [CRITICAL] - 21253 +2026-02-23 06:48:54 [ERROR] Segmentation fault - 10237 +2026-02-23 06:48:54 [CRITICAL] - 29891 +2026-02-23 06:48:54 [ERROR] Invalid input - 15388 +2026-02-23 06:48:54 [INFO] - 1457 +2026-02-23 06:48:54 [WARNING] - 32089 +2026-02-23 06:48:54 [INFO] - 13551 +2026-02-23 06:48:54 [CRITICAL] - 29606 +2026-02-23 06:48:54 [ERROR] Disk full - 4899 +2026-02-23 06:48:54 [DEBUG] - 16661 +2026-02-23 06:48:54 [DEBUG] - 11462 +2026-02-23 06:48:54 [INFO] - 3278 +2026-02-23 06:48:54 [ERROR] Disk full - 15575 +2026-02-23 06:48:54 [DEBUG] - 10845 +2026-02-23 06:48:54 [INFO] - 8966 +2026-02-23 06:48:54 [CRITICAL] - 5625 +2026-02-23 06:48:54 [CRITICAL] - 30231 +2026-02-23 06:48:54 [ERROR] Disk full - 5133 +2026-02-23 06:48:54 [DEBUG] - 13104 +2026-02-23 06:48:54 [CRITICAL] - 10516 +2026-02-23 06:48:54 [WARNING] - 27951 +2026-02-23 06:48:54 [WARNING] - 7203 +2026-02-23 06:48:54 [INFO] - 3115 +2026-02-23 06:48:54 [CRITICAL] - 15818 +2026-02-23 06:48:54 [INFO] - 31122 +2026-02-23 06:48:54 [WARNING] - 23615 +2026-02-23 06:48:54 [ERROR] Segmentation fault - 23951 +2026-02-23 06:48:54 [ERROR] Disk full - 24945 +2026-02-23 06:48:54 [WARNING] - 25122 +2026-02-23 06:48:54 [INFO] - 32680 +2026-02-23 06:48:54 [CRITICAL] - 303 +2026-02-23 06:48:54 [WARNING] - 32339 +2026-02-23 06:48:54 [DEBUG] - 28102 +2026-02-23 06:48:54 [DEBUG] - 21405 +2026-02-23 06:48:54 [WARNING] - 18080 +2026-02-23 06:48:54 [CRITICAL] - 10529 +2026-02-23 06:48:54 [INFO] - 29822 +2026-02-23 06:48:54 [INFO] - 29943 +2026-02-23 06:48:54 [WARNING] - 13382 +2026-02-23 06:48:54 [CRITICAL] - 5869 +2026-02-23 06:48:54 [ERROR] Invalid input - 5223 +2026-02-23 06:48:54 [CRITICAL] - 29192 +2026-02-23 06:48:54 [INFO] - 21797 +2026-02-23 06:48:54 [ERROR] Out of memory - 27214 +2026-02-23 06:48:54 [CRITICAL] - 16705 +2026-02-23 06:48:54 [DEBUG] - 20605 +2026-02-23 06:48:54 [DEBUG] - 25028 +2026-02-23 06:48:54 [WARNING] - 13401 +2026-02-23 06:48:54 [INFO] - 16218 +2026-02-23 06:48:54 [WARNING] - 4649 +2026-02-23 06:48:54 [WARNING] - 27229 +2026-02-23 06:48:54 [INFO] - 151 +2026-02-23 06:48:54 [WARNING] - 4984 +2026-02-23 06:48:54 [DEBUG] - 15543 +2026-02-23 06:48:54 [DEBUG] - 3665 +2026-02-23 06:48:54 [ERROR] Disk full - 9232 +2026-02-23 06:48:54 [WARNING] - 12015 +2026-02-23 06:48:54 [INFO] - 12045 +2026-02-23 06:48:54 [CRITICAL] - 29387 +2026-02-23 06:48:54 [ERROR] Segmentation fault - 3827 +2026-02-23 06:48:54 [CRITICAL] - 13035 +2026-02-23 06:48:54 [WARNING] - 18093 +2026-02-23 06:48:54 [WARNING] - 5010 +2026-02-23 06:48:54 [CRITICAL] - 18782 +2026-02-23 06:48:54 [ERROR] Failed to connect - 19055 +2026-02-23 06:48:54 [ERROR] Disk full - 30068 +2026-02-23 06:48:54 [ERROR] Failed to connect - 2629 +2026-02-23 06:48:54 [CRITICAL] - 10186 +2026-02-23 06:48:54 [ERROR] Segmentation fault - 26904 +2026-02-23 06:48:54 [DEBUG] - 11313 +2026-02-23 06:48:54 [CRITICAL] - 3135 +2026-02-23 06:48:54 [ERROR] Disk full - 13625 +2026-02-23 06:48:54 [WARNING] - 11419 +2026-02-23 06:48:54 [INFO] - 24564 +2026-02-23 06:48:54 [WARNING] - 29396 +2026-02-23 06:48:54 [DEBUG] - 24515 +2026-02-23 06:48:54 [DEBUG] - 23060 +2026-02-23 06:48:54 [INFO] - 32288 +2026-02-23 06:48:54 [INFO] - 287 +2026-02-23 06:48:54 [INFO] - 25115 +2026-02-23 06:48:54 [INFO] - 5179 +2026-02-23 06:48:54 [ERROR] Disk full - 31623 +2026-02-23 06:48:54 [CRITICAL] - 10367 +2026-02-23 06:48:54 [INFO] - 332 +2026-02-23 06:48:54 [CRITICAL] - 19164 +2026-02-23 06:48:54 [ERROR] Segmentation fault - 19751 +2026-02-23 06:48:54 [INFO] - 11521 +2026-02-23 06:48:54 [INFO] - 15893 +2026-02-23 06:48:54 [DEBUG] - 22379 +2026-02-23 06:48:54 [WARNING] - 22796 +2026-02-23 06:48:54 [ERROR] Disk full - 17949 +2026-02-23 06:48:54 [INFO] - 5547 +2026-02-23 06:48:54 [WARNING] - 20593 +2026-02-23 06:48:54 [INFO] - 11443 +2026-02-23 06:48:54 [ERROR] Segmentation fault - 18559 +2026-02-23 06:48:54 [INFO] - 5501 +2026-02-23 06:48:54 [DEBUG] - 3289 +2026-02-23 06:48:54 [INFO] - 29365 +2026-02-23 06:48:54 [CRITICAL] - 1372 +2026-02-23 06:48:54 [WARNING] - 2477 +2026-02-23 06:48:54 [INFO] - 14571 +2026-02-23 06:48:54 [ERROR] Disk full - 13151 +2026-02-23 06:48:54 [ERROR] Out of memory - 17823 +2026-02-23 06:48:54 [WARNING] - 8405 +2026-02-23 06:48:54 [DEBUG] - 25183 +2026-02-23 06:48:54 [INFO] - 31957 +2026-02-23 06:48:54 [DEBUG] - 20027 +2026-02-23 06:48:54 [INFO] - 7558 +2026-02-23 06:48:54 [INFO] - 20001 +2026-02-23 06:48:54 [ERROR] Out of memory - 14308 +2026-02-23 06:48:54 [DEBUG] - 22146 +2026-02-23 06:48:54 [CRITICAL] - 10178 +2026-02-23 06:48:54 [ERROR] Segmentation fault - 19035 +2026-02-23 06:48:54 [WARNING] - 20093 +2026-02-23 06:48:54 [INFO] - 18228 +2026-02-23 06:48:54 [DEBUG] - 73 +2026-02-23 06:48:54 [WARNING] - 8167 +2026-02-23 06:48:54 [CRITICAL] - 14487 +2026-02-23 06:48:54 [WARNING] - 5835 +2026-02-23 06:48:54 [DEBUG] - 10118 +2026-02-23 06:48:54 [CRITICAL] - 12332 +2026-02-23 06:48:54 [CRITICAL] - 22192 +2026-02-23 06:48:54 [CRITICAL] - 4607 +2026-02-23 06:48:54 [WARNING] - 3246 +2026-02-23 06:48:54 [WARNING] - 24123 +2026-02-23 06:48:54 [ERROR] Failed to connect - 7256 +2026-02-23 06:48:54 [DEBUG] - 17530 +2026-02-23 06:48:54 [WARNING] - 23553 +2026-02-23 06:48:54 [WARNING] - 1273 +2026-02-23 06:48:54 [INFO] - 3105 +2026-02-23 06:48:54 [WARNING] - 1183 +2026-02-23 06:48:54 [DEBUG] - 22425 +2026-02-23 06:48:54 [WARNING] - 32564 +2026-02-23 06:48:54 [WARNING] - 11049 +2026-02-23 06:48:54 [DEBUG] - 28833 +2026-02-23 06:48:54 [CRITICAL] - 9230 +2026-02-23 06:48:54 [CRITICAL] - 7182 +2026-02-23 06:48:54 [WARNING] - 19708 +2026-02-23 06:48:54 [ERROR] Failed to connect - 24146 +2026-02-23 06:48:54 [INFO] - 31848 +2026-02-23 06:48:54 [INFO] - 32088 +2026-02-23 06:48:54 [INFO] - 9260 +2026-02-23 06:48:54 [INFO] - 7589 +2026-02-23 06:48:54 [WARNING] - 30793 +2026-02-23 06:48:54 [WARNING] - 21682 +2026-02-23 06:48:54 [DEBUG] - 25042 +2026-02-23 06:48:54 [CRITICAL] - 13398 +2026-02-23 06:48:54 [CRITICAL] - 8458 +2026-02-23 06:48:54 [CRITICAL] - 7474 +2026-02-23 06:48:54 [DEBUG] - 20134 +2026-02-23 06:48:55 [INFO] - 13881 +2026-02-23 06:48:55 [ERROR] Invalid input - 11281 +2026-02-23 06:48:55 [ERROR] Segmentation fault - 23104 +2026-02-23 06:48:55 [INFO] - 3574 +2026-02-23 06:48:55 [WARNING] - 23200 +2026-02-23 06:48:55 [WARNING] - 9920 +2026-02-23 06:48:55 [DEBUG] - 162 +2026-02-23 06:48:55 [WARNING] - 6880 +2026-02-23 06:48:55 [ERROR] Segmentation fault - 5813 +2026-02-23 06:48:55 [WARNING] - 629 +2026-02-23 06:48:55 [WARNING] - 9846 +2026-02-23 06:48:55 [WARNING] - 27056 +2026-02-23 06:48:55 [WARNING] - 11668 +2026-02-23 06:48:55 [CRITICAL] - 10594 +2026-02-23 06:48:55 [WARNING] - 19328 +2026-02-23 06:48:55 [DEBUG] - 29470 +2026-02-23 06:48:55 [ERROR] Out of memory - 7557 +2026-02-23 06:48:55 [DEBUG] - 22335 +2026-02-23 06:48:55 [INFO] - 19492 +2026-02-23 06:48:55 [DEBUG] - 8849 +2026-02-23 06:48:55 [WARNING] - 9535 +2026-02-23 06:48:55 [INFO] - 2238 +2026-02-23 06:48:55 [ERROR] Failed to connect - 12375 +2026-02-23 06:48:55 [WARNING] - 17302 +2026-02-23 06:48:55 [INFO] - 31134 +2026-02-23 06:48:55 [WARNING] - 1859 +2026-02-23 06:48:55 [CRITICAL] - 22822 +2026-02-23 06:48:55 [DEBUG] - 24455 +2026-02-23 06:48:55 [CRITICAL] - 6505 +2026-02-23 06:48:55 [WARNING] - 21811 +2026-02-23 06:48:55 [ERROR] Disk full - 2113 +2026-02-23 06:48:55 [DEBUG] - 17703 +2026-02-23 06:48:55 [ERROR] Failed to connect - 26798 +2026-02-23 06:48:55 [CRITICAL] - 27882 +2026-02-23 06:48:55 [ERROR] Invalid input - 31705 +2026-02-23 06:48:55 [ERROR] Disk full - 1141 +2026-02-23 06:48:55 [ERROR] Out of memory - 1074 +2026-02-23 06:48:55 [DEBUG] - 7873 +2026-02-23 06:48:55 [ERROR] Invalid input - 23015 +2026-02-23 06:48:55 [DEBUG] - 8826 +2026-02-23 06:48:55 [WARNING] - 10724 +2026-02-23 06:48:55 [DEBUG] - 19470 +2026-02-23 06:48:55 [WARNING] - 25619 +2026-02-23 06:48:55 [WARNING] - 23349 +2026-02-23 06:48:55 [ERROR] Failed to connect - 13075 +2026-02-23 06:48:55 [WARNING] - 6983 +2026-02-23 06:48:55 [INFO] - 17457 +2026-02-23 06:48:55 [WARNING] - 27305 +2026-02-23 06:48:55 [INFO] - 26453 +2026-02-23 06:48:55 [INFO] - 20911 +2026-02-23 06:48:55 [CRITICAL] - 9210 +2026-02-23 06:48:55 [WARNING] - 8683 +2026-02-23 06:48:55 [CRITICAL] - 5756 +2026-02-23 06:48:55 [WARNING] - 11127 +2026-02-23 06:48:55 [DEBUG] - 25777 +2026-02-23 06:48:55 [INFO] - 2232 +2026-02-23 06:48:55 [INFO] - 15854 +2026-02-23 06:48:55 [CRITICAL] - 19030 +2026-02-23 06:48:55 [CRITICAL] - 29679 +2026-02-23 06:48:55 [INFO] - 25932 +2026-02-23 06:48:55 [DEBUG] - 4004 +2026-02-23 06:48:55 [WARNING] - 28576 +2026-02-23 06:48:55 [DEBUG] - 30120 +2026-02-23 06:48:55 [CRITICAL] - 3123 +2026-02-23 06:48:55 [INFO] - 27913 +2026-02-23 06:48:55 [ERROR] Disk full - 23188 +2026-02-23 06:48:55 [CRITICAL] - 16699 +2026-02-23 06:48:55 [INFO] - 119 +2026-02-23 06:48:55 [WARNING] - 24806 +2026-02-23 06:48:55 [WARNING] - 24386 +2026-02-23 06:48:55 [WARNING] - 26835 +2026-02-23 06:48:55 [WARNING] - 18375 +2026-02-23 06:48:55 [WARNING] - 20646 +2026-02-23 06:48:55 [INFO] - 31312 +2026-02-23 06:48:55 [DEBUG] - 10724 +2026-02-23 06:48:55 [ERROR] Segmentation fault - 10029 +2026-02-23 06:48:55 [WARNING] - 23932 +2026-02-23 06:48:55 [ERROR] Out of memory - 29380 +2026-02-23 06:48:55 [WARNING] - 26535 +2026-02-23 06:48:55 [WARNING] - 26591 +2026-02-23 06:48:55 [INFO] - 12791 +2026-02-23 06:48:55 [DEBUG] - 5497 +2026-02-23 06:48:55 [INFO] - 23573 +2026-02-23 06:48:55 [INFO] - 17634 +2026-02-23 06:48:55 [DEBUG] - 14548 +2026-02-23 06:48:55 [DEBUG] - 20540 +2026-02-23 06:48:55 [CRITICAL] - 32433 +2026-02-23 06:48:55 [ERROR] Segmentation fault - 684 +2026-02-23 06:48:55 [ERROR] Segmentation fault - 27090 +2026-02-23 06:48:55 [CRITICAL] - 24840 +2026-02-23 06:48:55 [DEBUG] - 24889 +2026-02-23 06:48:55 [ERROR] Disk full - 15338 +2026-02-23 06:48:55 [WARNING] - 24636 +2026-02-23 06:48:55 [WARNING] - 3504 +2026-02-23 06:48:55 [CRITICAL] - 16969 +2026-02-23 06:48:55 [CRITICAL] - 31032 +2026-02-23 06:48:55 [DEBUG] - 11244 +2026-02-23 06:48:55 [DEBUG] - 31453 +2026-02-23 06:48:55 [CRITICAL] - 8953 +2026-02-23 06:48:55 [INFO] - 10719 +2026-02-23 06:48:55 [CRITICAL] - 14272 +2026-02-23 06:48:55 [WARNING] - 18142 +2026-02-23 06:48:55 [DEBUG] - 10725 +2026-02-23 06:48:55 [CRITICAL] - 11629 +2026-02-23 06:48:55 [ERROR] Disk full - 9251 +2026-02-23 06:48:55 [DEBUG] - 27203 +2026-02-23 06:48:55 [CRITICAL] - 14414 +2026-02-23 06:48:55 [WARNING] - 22392 +2026-02-23 06:48:55 [DEBUG] - 6201 +2026-02-23 06:48:55 [DEBUG] - 17878 +2026-02-23 06:48:55 [INFO] - 18395 +2026-02-23 06:48:55 [INFO] - 16781 +2026-02-23 06:48:55 [DEBUG] - 28598 +2026-02-23 06:48:55 [WARNING] - 932 +2026-02-23 06:48:55 [INFO] - 31865 +2026-02-23 06:48:55 [WARNING] - 28590 +2026-02-23 06:48:55 [CRITICAL] - 14401 +2026-02-23 06:48:55 [INFO] - 29287 +2026-02-23 06:48:55 [DEBUG] - 3795 +2026-02-23 06:48:55 [CRITICAL] - 4099 +2026-02-23 06:48:55 [WARNING] - 897 +2026-02-23 06:48:55 [CRITICAL] - 3656 +2026-02-23 06:48:55 [CRITICAL] - 15026 +2026-02-23 06:48:55 [INFO] - 1818 +2026-02-23 06:48:55 [CRITICAL] - 2922 +2026-02-23 06:48:55 [DEBUG] - 23601 +2026-02-23 06:48:55 [DEBUG] - 6420 +2026-02-23 06:48:55 [CRITICAL] - 28336 +2026-02-23 06:48:55 [DEBUG] - 21457 +2026-02-23 06:48:55 [INFO] - 16547 +2026-02-23 06:48:55 [INFO] - 26244 +2026-02-23 06:48:55 [CRITICAL] - 29117 +2026-02-23 06:48:55 [ERROR] Failed to connect - 24728 +2026-02-23 06:48:55 [ERROR] Invalid input - 28792 +2026-02-23 06:48:55 [DEBUG] - 2237 +2026-02-23 06:48:55 [CRITICAL] - 24273 +2026-02-23 06:48:55 [DEBUG] - 7033 +2026-02-23 06:48:55 [CRITICAL] - 25774 +2026-02-23 06:48:55 [INFO] - 29802 +2026-02-23 06:48:55 [CRITICAL] - 30010 +2026-02-23 06:48:55 [DEBUG] - 9684 +2026-02-23 06:48:55 [INFO] - 28892 +2026-02-23 06:48:55 [ERROR] Out of memory - 1897 +2026-02-23 06:48:55 [WARNING] - 17732 +2026-02-23 06:48:55 [ERROR] Invalid input - 9444 +2026-02-23 06:48:55 [ERROR] Segmentation fault - 26552 +2026-02-23 06:48:55 [INFO] - 17115 +2026-02-23 06:48:55 [CRITICAL] - 31449 +2026-02-23 06:48:55 [ERROR] Invalid input - 27715 +2026-02-23 06:48:55 [ERROR] Out of memory - 16623 +2026-02-23 06:48:55 [ERROR] Invalid input - 21302 +2026-02-23 06:48:55 [INFO] - 15312 +2026-02-23 06:48:55 [ERROR] Disk full - 21496 +2026-02-23 06:48:55 [WARNING] - 7668 +2026-02-23 06:48:55 [ERROR] Disk full - 31660 +2026-02-23 06:48:55 [WARNING] - 2673 +2026-02-23 06:48:55 [WARNING] - 8671 +2026-02-23 06:48:55 [DEBUG] - 14219 +2026-02-23 06:48:55 [WARNING] - 12516 +2026-02-23 06:48:55 [ERROR] Out of memory - 24404 +2026-02-23 06:48:55 [INFO] - 8411 +2026-02-23 06:48:55 [ERROR] Disk full - 3198 +2026-02-23 06:48:55 [WARNING] - 15946 +2026-02-23 06:48:55 [ERROR] Invalid input - 16803 +2026-02-23 06:48:55 [INFO] - 25040 +2026-02-23 06:48:55 [INFO] - 7231 +2026-02-23 06:48:55 [DEBUG] - 3700 +2026-02-23 06:48:55 [WARNING] - 3988 +2026-02-23 06:48:55 [WARNING] - 19653 +2026-02-23 06:48:55 [INFO] - 17146 +2026-02-23 06:48:55 [WARNING] - 32365 +2026-02-23 06:48:55 [DEBUG] - 30895 +2026-02-23 06:48:55 [ERROR] Invalid input - 1528 +2026-02-23 06:48:55 [ERROR] Out of memory - 32236 +2026-02-23 06:48:55 [INFO] - 13434 +2026-02-23 06:48:55 [INFO] - 6897 +2026-02-23 06:48:55 [CRITICAL] - 9517 +2026-02-23 06:48:55 [WARNING] - 17253 +2026-02-23 06:48:55 [INFO] - 8646 +2026-02-23 06:48:55 [WARNING] - 23112 +2026-02-23 06:48:55 [CRITICAL] - 16755 +2026-02-23 06:48:55 [CRITICAL] - 29751 +2026-02-23 06:48:55 [CRITICAL] - 16545 +2026-02-23 06:48:55 [INFO] - 21172 +2026-02-23 06:48:55 [DEBUG] - 20654 +2026-02-23 06:48:55 [DEBUG] - 4504 +2026-02-23 06:48:55 [CRITICAL] - 22373 +2026-02-23 06:48:55 [CRITICAL] - 30446 +2026-02-23 06:48:55 [CRITICAL] - 28494 +2026-02-23 06:48:55 [CRITICAL] - 17107 +2026-02-23 06:48:55 [WARNING] - 31443 +2026-02-23 06:48:55 [INFO] - 11348 +2026-02-23 06:48:55 [ERROR] Disk full - 13394 +2026-02-23 06:48:55 [WARNING] - 6290 +2026-02-23 06:48:55 [INFO] - 32654 +2026-02-23 06:48:55 [WARNING] - 11384 +2026-02-23 06:48:55 [WARNING] - 31405 +2026-02-23 06:48:55 [ERROR] Failed to connect - 7811 +2026-02-23 06:48:55 [ERROR] Out of memory - 23932 +2026-02-23 06:48:55 [ERROR] Failed to connect - 26397 +2026-02-23 06:48:55 [INFO] - 7629 +2026-02-23 06:48:55 [INFO] - 8335 +2026-02-23 06:48:55 [WARNING] - 310 +2026-02-23 06:48:55 [DEBUG] - 3557 +2026-02-23 06:48:55 [WARNING] - 20748 +2026-02-23 06:48:55 [CRITICAL] - 20605 +2026-02-23 06:48:55 [ERROR] Segmentation fault - 26345 +2026-02-23 06:48:55 [WARNING] - 29647 +2026-02-23 06:48:55 [WARNING] - 17465 +2026-02-23 06:48:55 [INFO] - 6844 +2026-02-23 06:48:55 [ERROR] Disk full - 31143 +2026-02-23 06:48:55 [CRITICAL] - 19971 +2026-02-23 06:48:55 [WARNING] - 19426 +2026-02-23 06:48:55 [ERROR] Invalid input - 29209 +2026-02-23 06:48:55 [ERROR] Failed to connect - 13880 +2026-02-23 06:48:55 [WARNING] - 18555 +2026-02-23 06:48:55 [ERROR] Disk full - 3383 +2026-02-23 06:48:55 [ERROR] Failed to connect - 26664 +2026-02-23 06:48:55 [CRITICAL] - 10432 +2026-02-23 06:48:55 [CRITICAL] - 12159 +2026-02-23 06:48:55 [ERROR] Disk full - 12114 +2026-02-23 06:48:55 [CRITICAL] - 20374 +2026-02-23 06:48:55 [WARNING] - 10738 +2026-02-23 06:48:55 [CRITICAL] - 8523 +2026-02-23 06:48:55 [WARNING] - 28225 +2026-02-23 06:48:55 [WARNING] - 20877 +2026-02-23 06:48:55 [WARNING] - 23582 +2026-02-23 06:48:55 [DEBUG] - 10462 +2026-02-23 06:48:55 [DEBUG] - 11335 +2026-02-23 06:48:55 [DEBUG] - 25682 +2026-02-23 06:48:55 [ERROR] Invalid input - 2983 +2026-02-23 06:48:55 [ERROR] Invalid input - 18317 +2026-02-23 06:48:55 [INFO] - 18920 +2026-02-23 06:48:55 [DEBUG] - 28421 +2026-02-23 06:48:55 [INFO] - 10256 +2026-02-23 06:48:55 [CRITICAL] - 6936 +2026-02-23 06:48:55 [INFO] - 14603 +2026-02-23 06:48:55 [ERROR] Disk full - 12869 +2026-02-23 06:48:55 [CRITICAL] - 10347 +2026-02-23 06:48:55 [DEBUG] - 29611 +2026-02-23 06:48:55 [ERROR] Disk full - 6280 +2026-02-23 06:48:55 [ERROR] Disk full - 23877 +2026-02-23 06:48:55 [INFO] - 22361 +2026-02-23 06:48:55 [DEBUG] - 31426 +2026-02-23 06:48:55 [ERROR] Segmentation fault - 16652 +2026-02-23 06:48:55 [WARNING] - 17894 +2026-02-23 06:48:55 [CRITICAL] - 26131 +2026-02-23 06:48:55 [DEBUG] - 7536 +2026-02-23 06:48:55 [CRITICAL] - 18573 +2026-02-23 06:48:55 [CRITICAL] - 19157 +2026-02-23 06:48:55 [WARNING] - 7370 +2026-02-23 06:48:55 [DEBUG] - 4899 +2026-02-23 06:48:55 [ERROR] Out of memory - 25586 +2026-02-23 06:48:55 [DEBUG] - 13447 +2026-02-23 06:48:55 [ERROR] Disk full - 17874 +2026-02-23 06:48:55 [WARNING] - 28384 +2026-02-23 06:48:55 [INFO] - 24444 +2026-02-23 06:48:55 [WARNING] - 4425 +2026-02-23 06:48:55 [WARNING] - 32633 +2026-02-23 06:48:55 [INFO] - 17513 +2026-02-23 06:48:55 [WARNING] - 6507 +2026-02-23 06:48:55 [INFO] - 14124 +2026-02-23 06:48:55 [WARNING] - 16455 +2026-02-23 06:48:55 [CRITICAL] - 15921 +2026-02-23 06:48:55 [ERROR] Disk full - 21470 +2026-02-23 06:48:55 [DEBUG] - 13269 +2026-02-23 06:48:55 [DEBUG] - 13084 +2026-02-23 06:48:55 [INFO] - 21990 +2026-02-23 06:48:55 [ERROR] Invalid input - 9956 +2026-02-23 06:48:55 [DEBUG] - 28230 +2026-02-23 06:48:55 [INFO] - 1849 +2026-02-23 06:48:55 [DEBUG] - 15447 +2026-02-23 06:48:55 [INFO] - 17637 +2026-02-23 06:48:55 [ERROR] Invalid input - 14593 +2026-02-23 06:48:55 [ERROR] Invalid input - 32595 +2026-02-23 06:48:55 [CRITICAL] - 14117 +2026-02-23 06:48:55 [ERROR] Segmentation fault - 2332 +2026-02-23 06:48:55 [ERROR] Failed to connect - 1906 +2026-02-23 06:48:55 [ERROR] Failed to connect - 29503 +2026-02-23 06:48:55 [DEBUG] - 27525 +2026-02-23 06:48:55 [ERROR] Failed to connect - 18520 +2026-02-23 06:48:55 [WARNING] - 30513 +2026-02-23 06:48:55 [ERROR] Failed to connect - 6728 +2026-02-23 06:48:55 [DEBUG] - 30337 +2026-02-23 06:48:55 [INFO] - 16552 +2026-02-23 06:48:55 [CRITICAL] - 1188 +2026-02-23 06:48:55 [DEBUG] - 20971 +2026-02-23 06:48:55 [INFO] - 10664 +2026-02-23 06:48:55 [INFO] - 20604 +2026-02-23 06:48:55 [INFO] - 8137 +2026-02-23 06:48:55 [WARNING] - 30110 +2026-02-23 06:48:55 [INFO] - 27539 +2026-02-23 06:48:55 [WARNING] - 6779 +2026-02-23 06:48:55 [DEBUG] - 30115 +2026-02-23 06:48:55 [DEBUG] - 2147 +2026-02-23 06:48:55 [DEBUG] - 32184 +2026-02-23 06:48:55 [CRITICAL] - 6161 +2026-02-23 06:48:55 [DEBUG] - 12607 +2026-02-23 06:48:55 [DEBUG] - 3240 +2026-02-23 06:48:55 [WARNING] - 22811 +2026-02-23 06:48:55 [ERROR] Invalid input - 2346 +2026-02-23 06:48:55 [DEBUG] - 19352 +2026-02-23 06:48:55 [CRITICAL] - 7210 +2026-02-23 06:48:55 [WARNING] - 32141 +2026-02-23 06:48:55 [DEBUG] - 22835 +2026-02-23 06:48:55 [DEBUG] - 10360 +2026-02-23 06:48:55 [ERROR] Segmentation fault - 12759 +2026-02-23 06:48:55 [DEBUG] - 5090 +2026-02-23 06:48:55 [DEBUG] - 17539 +2026-02-23 06:48:55 [WARNING] - 15697 +2026-02-23 06:48:55 [WARNING] - 26308 +2026-02-23 06:48:55 [INFO] - 21822 +2026-02-23 06:48:55 [ERROR] Disk full - 25989 +2026-02-23 06:48:55 [ERROR] Disk full - 546 +2026-02-23 06:48:55 [ERROR] Segmentation fault - 32745 +2026-02-23 06:48:55 [DEBUG] - 6985 +2026-02-23 06:48:55 [INFO] - 11630 +2026-02-23 06:48:55 [CRITICAL] - 554 +2026-02-23 06:48:55 [INFO] - 26369 +2026-02-23 06:48:55 [ERROR] Failed to connect - 21732 +2026-02-23 06:48:55 [WARNING] - 11337 +2026-02-23 06:48:55 [DEBUG] - 14388 +2026-02-23 06:48:55 [CRITICAL] - 19262 +2026-02-23 06:48:55 [INFO] - 12681 +2026-02-23 06:48:55 [WARNING] - 16943 +2026-02-23 06:48:55 [DEBUG] - 16076 +2026-02-23 06:48:55 [INFO] - 18093 +2026-02-23 06:48:55 [DEBUG] - 32112 +2026-02-23 06:48:55 [DEBUG] - 3498 +2026-02-23 06:48:55 [DEBUG] - 12555 +2026-02-23 06:48:55 [INFO] - 2291 +2026-02-23 06:48:55 [WARNING] - 29118 +2026-02-23 06:48:55 [DEBUG] - 17010 +2026-02-23 06:48:55 [DEBUG] - 29124 +2026-02-23 06:48:55 [DEBUG] - 1671 +2026-02-23 06:48:55 [INFO] - 2629 +2026-02-23 06:48:55 [DEBUG] - 8516 +2026-02-23 06:48:55 [WARNING] - 10208 +2026-02-23 06:48:55 [DEBUG] - 31296 +2026-02-23 06:48:55 [WARNING] - 20382 +2026-02-23 06:48:55 [CRITICAL] - 29347 +2026-02-23 06:48:55 [ERROR] Segmentation fault - 30502 +2026-02-23 06:48:55 [DEBUG] - 24052 +2026-02-23 06:48:55 [INFO] - 15202 +2026-02-23 06:48:55 [WARNING] - 2747 +2026-02-23 06:48:55 [WARNING] - 24343 +2026-02-23 06:48:55 [INFO] - 2694 +2026-02-23 06:48:55 [WARNING] - 20662 +2026-02-23 06:48:55 [ERROR] Disk full - 27526 +2026-02-23 06:48:55 [INFO] - 20384 +2026-02-23 06:48:55 [ERROR] Segmentation fault - 3285 +2026-02-23 06:48:55 [DEBUG] - 22752 +2026-02-23 06:48:55 [ERROR] Failed to connect - 30162 +2026-02-23 06:48:55 [ERROR] Disk full - 24774 +2026-02-23 06:48:55 [CRITICAL] - 14836 +2026-02-23 06:48:55 [DEBUG] - 23637 +2026-02-23 06:48:55 [DEBUG] - 5959 +2026-02-23 06:48:55 [ERROR] Invalid input - 21590 +2026-02-23 06:48:55 [CRITICAL] - 1270 +2026-02-23 06:48:55 [CRITICAL] - 31155 +2026-02-23 06:48:55 [ERROR] Failed to connect - 20738 +2026-02-23 06:48:55 [CRITICAL] - 7754 +2026-02-23 06:48:55 [CRITICAL] - 391 +2026-02-23 06:48:55 [ERROR] Failed to connect - 432 +2026-02-23 06:48:55 [DEBUG] - 56 +2026-02-23 06:48:55 [ERROR] Out of memory - 26911 +2026-02-23 06:48:55 [CRITICAL] - 17324 +2026-02-23 06:48:55 [ERROR] Failed to connect - 29362 +2026-02-23 06:48:55 [CRITICAL] - 364 +2026-02-23 06:48:55 [INFO] - 12158 +2026-02-23 06:48:55 [WARNING] - 5127 +2026-02-23 06:48:55 [WARNING] - 13830 +2026-02-23 06:48:55 [WARNING] - 3355 +2026-02-23 06:48:55 [CRITICAL] - 23145 +2026-02-23 06:48:55 [INFO] - 26240 +2026-02-23 06:48:55 [INFO] - 884 +2026-02-23 06:48:55 [WARNING] - 16663 +2026-02-23 06:48:55 [CRITICAL] - 24431 +2026-02-23 06:48:55 [INFO] - 12844 +2026-02-23 06:48:55 [ERROR] Disk full - 8985 +2026-02-23 06:48:55 [WARNING] - 13721 +2026-02-23 06:48:55 [ERROR] Disk full - 6014 +2026-02-23 06:48:55 [WARNING] - 2452 +2026-02-23 06:48:55 [DEBUG] - 3902 +2026-02-23 06:48:55 [WARNING] - 25301 +2026-02-23 06:48:55 [WARNING] - 15376 +2026-02-23 06:48:55 [WARNING] - 3338 +2026-02-23 06:48:55 [ERROR] Segmentation fault - 9281 +2026-02-23 06:48:55 [CRITICAL] - 27361 +2026-02-23 06:48:55 [CRITICAL] - 25028 +2026-02-23 06:48:55 [CRITICAL] - 28782 +2026-02-23 06:48:55 [CRITICAL] - 14435 +2026-02-23 06:48:55 [ERROR] Disk full - 3017 +2026-02-23 06:48:55 [DEBUG] - 27759 +2026-02-23 06:48:55 [INFO] - 8683 +2026-02-23 06:48:55 [ERROR] Out of memory - 12704 +2026-02-23 06:48:55 [INFO] - 25802 +2026-02-23 06:48:55 [WARNING] - 17776 +2026-02-23 06:48:55 [CRITICAL] - 1055 +2026-02-23 06:48:55 [WARNING] - 22102 +2026-02-23 06:48:55 [WARNING] - 11622 +2026-02-23 06:48:55 [ERROR] Segmentation fault - 15162 +2026-02-23 06:48:55 [DEBUG] - 29407 +2026-02-23 06:48:55 [CRITICAL] - 8815 +2026-02-23 06:48:55 [CRITICAL] - 449 +2026-02-23 06:48:55 [INFO] - 12185 +2026-02-23 06:48:55 [DEBUG] - 18493 +2026-02-23 06:48:55 [DEBUG] - 20090 +2026-02-23 06:48:55 [ERROR] Segmentation fault - 31239 +2026-02-23 06:48:55 [ERROR] Failed to connect - 13606 +2026-02-23 06:48:55 [ERROR] Invalid input - 30320 +2026-02-23 06:48:55 [CRITICAL] - 16616 +2026-02-23 06:48:55 [ERROR] Out of memory - 5959 +2026-02-23 06:48:55 [ERROR] Invalid input - 23487 +2026-02-23 06:48:55 [CRITICAL] - 4160 +2026-02-23 06:48:55 [DEBUG] - 432 +2026-02-23 06:48:55 [CRITICAL] - 9445 +2026-02-23 06:48:55 [WARNING] - 26832 +2026-02-23 06:48:55 [CRITICAL] - 12553 +2026-02-23 06:48:55 [ERROR] Failed to connect - 3029 +2026-02-23 06:48:55 [INFO] - 27300 +2026-02-23 06:48:55 [WARNING] - 13389 +2026-02-23 06:48:55 [DEBUG] - 32002 +2026-02-23 06:48:55 [ERROR] Failed to connect - 27372 +2026-02-23 06:48:55 [DEBUG] - 29790 +2026-02-23 06:48:55 [ERROR] Invalid input - 27600 +2026-02-23 06:48:55 [DEBUG] - 31088 +2026-02-23 06:48:55 [DEBUG] - 14997 +2026-02-23 06:48:55 [ERROR] Failed to connect - 8306 +2026-02-23 06:48:55 [DEBUG] - 30964 +2026-02-23 06:48:55 [DEBUG] - 2372 +2026-02-23 06:48:55 [INFO] - 22012 +2026-02-23 06:48:55 [DEBUG] - 29925 +2026-02-23 06:48:55 [WARNING] - 16753 +2026-02-23 06:48:55 [WARNING] - 20124 +2026-02-23 06:48:55 [CRITICAL] - 30893 +2026-02-23 06:48:55 [INFO] - 19138 +2026-02-23 06:48:55 [INFO] - 4114 +2026-02-23 06:48:55 [WARNING] - 592 +2026-02-23 06:48:55 [WARNING] - 24515 +2026-02-23 06:48:55 [DEBUG] - 8845 +2026-02-23 06:48:55 [INFO] - 26250 +2026-02-23 06:48:55 [WARNING] - 9613 +2026-02-23 06:48:55 [INFO] - 10020 +2026-02-23 06:48:55 [WARNING] - 32608 +2026-02-23 06:48:55 [WARNING] - 28128 +2026-02-23 06:48:55 [WARNING] - 32346 +2026-02-23 06:48:55 [INFO] - 2487 +2026-02-23 06:48:55 [WARNING] - 16220 +2026-02-23 06:48:55 [ERROR] Segmentation fault - 26137 +2026-02-23 06:48:55 [DEBUG] - 30103 +2026-02-23 06:48:55 [ERROR] Out of memory - 6923 +2026-02-23 06:48:55 [WARNING] - 27330 +2026-02-23 06:48:55 [WARNING] - 7637 +2026-02-23 06:48:55 [INFO] - 28209 +2026-02-23 06:48:55 [INFO] - 20531 +2026-02-23 06:48:55 [WARNING] - 5473 +2026-02-23 06:48:55 [ERROR] Invalid input - 26778 +2026-02-23 06:48:55 [WARNING] - 19330 +2026-02-23 06:48:55 [ERROR] Segmentation fault - 12063 +2026-02-23 06:48:55 [ERROR] Disk full - 17321 +2026-02-23 06:48:55 [INFO] - 22067 +2026-02-23 06:48:55 [ERROR] Out of memory - 27546 +2026-02-23 06:48:55 [WARNING] - 7852 +2026-02-23 06:48:55 [ERROR] Disk full - 32536 +2026-02-23 06:48:55 [CRITICAL] - 15805 +2026-02-23 06:48:55 [ERROR] Segmentation fault - 29724 +2026-02-23 06:48:55 [INFO] - 26274 +2026-02-23 06:48:55 [WARNING] - 6902 +2026-02-23 06:48:55 [WARNING] - 8858 +2026-02-23 06:48:55 [WARNING] - 13408 +2026-02-23 06:48:55 [ERROR] Out of memory - 12704 +2026-02-23 06:48:55 [CRITICAL] - 26908 +2026-02-23 06:48:55 [ERROR] Invalid input - 18316 +2026-02-23 06:48:55 [DEBUG] - 2805 +2026-02-23 06:48:55 [INFO] - 25738 +2026-02-23 06:48:55 [DEBUG] - 25668 +2026-02-23 06:48:55 [INFO] - 4383 +2026-02-23 06:48:55 [ERROR] Invalid input - 13293 +2026-02-23 06:48:55 [WARNING] - 28423 +2026-02-23 06:48:55 [WARNING] - 15774 +2026-02-23 06:48:55 [DEBUG] - 16445 +2026-02-23 06:48:55 [CRITICAL] - 21399 +2026-02-23 06:48:55 [CRITICAL] - 4521 +2026-02-23 06:48:55 [INFO] - 5946 +2026-02-23 06:48:55 [INFO] - 22739 +2026-02-23 06:48:55 [CRITICAL] - 8608 +2026-02-23 06:48:55 [INFO] - 20309 +2026-02-23 06:48:55 [INFO] - 11148 +2026-02-23 06:48:55 [CRITICAL] - 23106 +2026-02-23 06:48:55 [DEBUG] - 28973 +2026-02-23 06:48:55 [ERROR] Out of memory - 31108 +2026-02-23 06:48:55 [DEBUG] - 9865 +2026-02-23 06:48:55 [INFO] - 15053 +2026-02-23 06:48:55 [CRITICAL] - 1266 +2026-02-23 06:48:55 [ERROR] Segmentation fault - 17371 +2026-02-23 06:48:55 [DEBUG] - 27571 +2026-02-23 06:48:55 [DEBUG] - 29323 +2026-02-23 06:48:55 [ERROR] Failed to connect - 20151 +2026-02-23 06:48:55 [ERROR] Disk full - 16623 +2026-02-23 06:48:55 [WARNING] - 19818 +2026-02-23 06:48:55 [DEBUG] - 31176 +2026-02-23 06:48:55 [INFO] - 8404 +2026-02-23 06:48:55 [INFO] - 14636 +2026-02-23 06:48:55 [INFO] - 7496 +2026-02-23 06:48:55 [ERROR] Failed to connect - 15392 +2026-02-23 06:48:55 [WARNING] - 31235 +2026-02-23 06:48:55 [INFO] - 16949 +2026-02-23 06:48:55 [CRITICAL] - 18546 +2026-02-23 06:48:55 [DEBUG] - 25272 +2026-02-23 06:48:55 [DEBUG] - 15645 +2026-02-23 06:48:55 [DEBUG] - 14046 +2026-02-23 06:48:55 [DEBUG] - 12493 +2026-02-23 06:48:55 [DEBUG] - 27561 +2026-02-23 06:48:55 [WARNING] - 5183 +2026-02-23 06:48:55 [ERROR] Out of memory - 32494 +2026-02-23 06:48:55 [CRITICAL] - 18003 +2026-02-23 06:48:55 [ERROR] Segmentation fault - 23655 +2026-02-23 06:48:55 [INFO] - 30965 +2026-02-23 06:48:55 [CRITICAL] - 27712 +2026-02-23 06:48:55 [DEBUG] - 31087 +2026-02-23 06:48:55 [INFO] - 3719 +2026-02-23 06:48:55 [WARNING] - 18333 +2026-02-23 06:48:55 [CRITICAL] - 5449 +2026-02-23 06:48:55 [CRITICAL] - 9391 +2026-02-23 06:48:55 [ERROR] Invalid input - 28036 +2026-02-23 06:48:55 [ERROR] Segmentation fault - 27538 +2026-02-23 06:48:55 [INFO] - 6011 +2026-02-23 06:48:55 [INFO] - 14521 +2026-02-23 06:48:55 [DEBUG] - 3529 +2026-02-23 06:48:55 [WARNING] - 14592 +2026-02-23 06:48:55 [DEBUG] - 944 +2026-02-23 06:48:55 [DEBUG] - 5767 +2026-02-23 06:48:55 [CRITICAL] - 23128 +2026-02-23 06:48:55 [ERROR] Out of memory - 31557 +2026-02-23 06:48:55 [ERROR] Segmentation fault - 3184 +2026-02-23 06:48:55 [ERROR] Out of memory - 14995 +2026-02-23 06:48:55 [DEBUG] - 12896 +2026-02-23 06:48:55 [DEBUG] - 5467 +2026-02-23 06:48:55 [DEBUG] - 11903 +2026-02-23 06:48:55 [DEBUG] - 27870 +2026-02-23 06:48:55 [WARNING] - 12628 +2026-02-23 06:48:55 [ERROR] Disk full - 28035 +2026-02-23 06:48:55 [ERROR] Segmentation fault - 26652 +2026-02-23 06:48:55 [WARNING] - 5642 +2026-02-23 06:48:55 [ERROR] Segmentation fault - 26038 +2026-02-23 06:48:55 [WARNING] - 5672 +2026-02-23 06:48:55 [CRITICAL] - 19881 +2026-02-23 06:48:55 [ERROR] Segmentation fault - 29046 +2026-02-23 06:48:55 [CRITICAL] - 21842 +2026-02-23 06:48:55 [INFO] - 16824 +2026-02-23 06:48:55 [DEBUG] - 12574 +2026-02-23 06:48:55 [DEBUG] - 5461 +2026-02-23 06:48:55 [WARNING] - 7089 +2026-02-23 06:48:55 [INFO] - 18287 +2026-02-23 06:48:55 [INFO] - 5646 +2026-02-23 06:48:55 [WARNING] - 17032 +2026-02-23 06:48:55 [CRITICAL] - 922 +2026-02-23 06:48:55 [ERROR] Segmentation fault - 32024 +2026-02-23 06:48:55 [WARNING] - 27397 +2026-02-23 06:48:55 [INFO] - 26751 +2026-02-23 06:48:55 [CRITICAL] - 7339 +2026-02-23 06:48:55 [INFO] - 2572 +2026-02-23 06:48:55 [ERROR] Segmentation fault - 16042 +2026-02-23 06:48:55 [ERROR] Invalid input - 20441 +2026-02-23 06:48:55 [WARNING] - 22413 +2026-02-23 06:48:55 [WARNING] - 28365 +2026-02-23 06:48:55 [WARNING] - 20833 +2026-02-23 06:48:55 [WARNING] - 26983 +2026-02-23 06:48:55 [CRITICAL] - 31670 +2026-02-23 06:48:55 [WARNING] - 25277 +2026-02-23 06:48:55 [INFO] - 8341 +2026-02-23 06:48:55 [DEBUG] - 6873 +2026-02-23 06:48:55 [INFO] - 17674 +2026-02-23 06:48:55 [DEBUG] - 17418 +2026-02-23 06:48:55 [DEBUG] - 15366 +2026-02-23 06:48:55 [ERROR] Segmentation fault - 2691 +2026-02-23 06:48:55 [CRITICAL] - 30774 +2026-02-23 06:48:55 [ERROR] Failed to connect - 6944 +2026-02-23 06:48:55 [INFO] - 6763 +2026-02-23 06:48:55 [WARNING] - 29858 +2026-02-23 06:48:55 [CRITICAL] - 17814 +2026-02-23 06:48:55 [ERROR] Segmentation fault - 19743 +2026-02-23 06:48:55 [ERROR] Out of memory - 23289 +2026-02-23 06:48:55 [DEBUG] - 14279 +2026-02-23 06:48:55 [DEBUG] - 194 +2026-02-23 06:48:55 [WARNING] - 22068 +2026-02-23 06:48:55 [WARNING] - 31015 +2026-02-23 06:48:55 [CRITICAL] - 15116 +2026-02-23 06:48:55 [DEBUG] - 5986 +2026-02-23 06:48:55 [DEBUG] - 17840 +2026-02-23 06:48:55 [CRITICAL] - 9053 +2026-02-23 06:48:55 [ERROR] Failed to connect - 21189 +2026-02-23 06:48:55 [DEBUG] - 31454 +2026-02-23 06:48:55 [ERROR] Failed to connect - 27335 +2026-02-23 06:48:55 [WARNING] - 11202 +2026-02-23 06:48:55 [INFO] - 440 +2026-02-23 06:48:55 [CRITICAL] - 5897 +2026-02-23 06:48:55 [CRITICAL] - 22638 +2026-02-23 06:48:55 [CRITICAL] - 20588 +2026-02-23 06:48:55 [INFO] - 10512 +2026-02-23 06:48:55 [WARNING] - 6563 +2026-02-23 06:48:55 [INFO] - 31916 +2026-02-23 06:48:55 [ERROR] Disk full - 16145 +2026-02-23 06:48:55 [ERROR] Disk full - 7511 +2026-02-23 06:48:55 [INFO] - 23861 +2026-02-23 06:48:55 [CRITICAL] - 23138 +2026-02-23 06:48:55 [CRITICAL] - 22766 +2026-02-23 06:48:55 [INFO] - 24713 +2026-02-23 06:48:55 [CRITICAL] - 18658 +2026-02-23 06:48:55 [DEBUG] - 1973 +2026-02-23 06:48:55 [INFO] - 26413 +2026-02-23 06:48:55 [CRITICAL] - 22670 +2026-02-23 06:48:55 [CRITICAL] - 19653 +2026-02-23 06:48:55 [DEBUG] - 13326 +2026-02-23 06:48:55 [ERROR] Invalid input - 22545 +2026-02-23 06:48:55 [DEBUG] - 15013 +2026-02-23 06:48:55 [WARNING] - 24671 +2026-02-23 06:48:55 [CRITICAL] - 28148 +2026-02-23 06:48:55 [DEBUG] - 1826 +2026-02-23 06:48:55 [INFO] - 8569 +2026-02-23 06:48:55 [INFO] - 26882 +2026-02-23 06:48:55 [CRITICAL] - 13643 +2026-02-23 06:48:55 [DEBUG] - 6837 +2026-02-23 06:48:55 [CRITICAL] - 11937 +2026-02-23 06:48:55 [CRITICAL] - 13986 +2026-02-23 06:48:55 [CRITICAL] - 17264 +2026-02-23 06:48:55 [CRITICAL] - 24835 +2026-02-23 06:48:55 [ERROR] Segmentation fault - 6853 +2026-02-23 06:48:55 [DEBUG] - 14827 +2026-02-23 06:48:55 [WARNING] - 26652 +2026-02-23 06:48:55 [INFO] - 20905 +2026-02-23 06:48:55 [WARNING] - 19447 +2026-02-23 06:48:55 [ERROR] Failed to connect - 567 +2026-02-23 06:48:55 [WARNING] - 31343 +2026-02-23 06:48:55 [DEBUG] - 27040 +2026-02-23 06:48:55 [CRITICAL] - 18483 +2026-02-23 06:48:55 [ERROR] Failed to connect - 8246 +2026-02-23 06:48:55 [DEBUG] - 9603 +2026-02-23 06:48:55 [INFO] - 28337 +2026-02-23 06:48:55 [ERROR] Invalid input - 30606 +2026-02-23 06:48:55 [CRITICAL] - 7821 +2026-02-23 06:48:55 [DEBUG] - 31850 +2026-02-23 06:48:55 [DEBUG] - 20866 +2026-02-23 06:48:55 [ERROR] Out of memory - 23196 +2026-02-23 06:48:55 [CRITICAL] - 5990 +2026-02-23 06:48:55 [CRITICAL] - 20927 +2026-02-23 06:48:55 [CRITICAL] - 7271 +2026-02-23 06:48:55 [CRITICAL] - 10627 +2026-02-23 06:48:55 [DEBUG] - 3870 +2026-02-23 06:48:55 [WARNING] - 4934 +2026-02-23 06:48:55 [DEBUG] - 18067 +2026-02-23 06:48:55 [WARNING] - 22824 +2026-02-23 06:48:55 [WARNING] - 4481 +2026-02-23 06:48:55 [DEBUG] - 17888 +2026-02-23 06:48:55 [INFO] - 17620 +2026-02-23 06:48:55 [CRITICAL] - 18055 +2026-02-23 06:48:55 [CRITICAL] - 25073 +2026-02-23 06:48:55 [DEBUG] - 927 +2026-02-23 06:48:55 [ERROR] Failed to connect - 15885 +2026-02-23 06:48:55 [CRITICAL] - 30335 +2026-02-23 06:48:55 [INFO] - 26485 +2026-02-23 06:48:55 [ERROR] Disk full - 21156 +2026-02-23 06:48:55 [WARNING] - 21 +2026-02-23 06:48:55 [INFO] - 648 +2026-02-23 06:48:55 [ERROR] Invalid input - 21610 +2026-02-23 06:48:55 [CRITICAL] - 2339 +2026-02-23 06:48:55 [CRITICAL] - 9815 +2026-02-23 06:48:55 [INFO] - 30039 +2026-02-23 06:48:55 [INFO] - 28655 +2026-02-23 06:48:55 [INFO] - 14971 +2026-02-23 06:48:55 [CRITICAL] - 16202 +2026-02-23 06:48:55 [CRITICAL] - 28261 +2026-02-23 06:48:55 [CRITICAL] - 2834 +2026-02-23 06:48:55 [ERROR] Segmentation fault - 19150 +2026-02-23 06:48:55 [DEBUG] - 10042 +2026-02-23 06:48:55 [DEBUG] - 8503 +2026-02-23 06:48:55 [ERROR] Out of memory - 22879 +2026-02-23 06:48:55 [ERROR] Segmentation fault - 2143 +2026-02-23 06:48:55 [WARNING] - 16170 +2026-02-23 06:48:55 [ERROR] Segmentation fault - 19252 +2026-02-23 06:48:55 [ERROR] Out of memory - 26301 +2026-02-23 06:48:55 [CRITICAL] - 2439 +2026-02-23 06:48:55 [CRITICAL] - 21152 +2026-02-23 06:48:55 [ERROR] Invalid input - 30091 +2026-02-23 06:48:55 [ERROR] Invalid input - 2848 +2026-02-23 06:48:55 [ERROR] Out of memory - 10897 +2026-02-23 06:48:55 [DEBUG] - 4709 +2026-02-23 06:48:55 [CRITICAL] - 24820 +2026-02-23 06:48:55 [WARNING] - 20496 +2026-02-23 06:48:55 [ERROR] Segmentation fault - 26926 +2026-02-23 06:48:55 [ERROR] Disk full - 12906 +2026-02-23 06:48:55 [DEBUG] - 6429 +2026-02-23 06:48:55 [WARNING] - 9297 +2026-02-23 06:48:55 [CRITICAL] - 26130 +2026-02-23 06:48:55 [DEBUG] - 10927 +2026-02-23 06:48:55 [WARNING] - 565 +2026-02-23 06:48:55 [ERROR] Segmentation fault - 4399 +2026-02-23 06:48:55 [CRITICAL] - 29267 +2026-02-23 06:48:55 [INFO] - 7640 +2026-02-23 06:48:55 [WARNING] - 26135 +2026-02-23 06:48:55 [DEBUG] - 4339 +2026-02-23 06:48:55 [ERROR] Segmentation fault - 27289 +2026-02-23 06:48:55 [CRITICAL] - 24247 +2026-02-23 06:48:55 [INFO] - 23426 +2026-02-23 06:48:55 [WARNING] - 3448 +2026-02-23 06:48:55 [CRITICAL] - 5684 +2026-02-23 06:48:55 [INFO] - 9018 +2026-02-23 06:48:55 [WARNING] - 16755 +2026-02-23 06:48:55 [CRITICAL] - 9856 +2026-02-23 06:48:55 [DEBUG] - 26422 +2026-02-23 06:48:55 [ERROR] Invalid input - 18809 +2026-02-23 06:48:55 [DEBUG] - 7025 +2026-02-23 06:48:55 [CRITICAL] - 13103 +2026-02-23 06:48:55 [CRITICAL] - 23402 +2026-02-23 06:48:55 [INFO] - 17696 +2026-02-23 06:48:55 [CRITICAL] - 918 +2026-02-23 06:48:55 [CRITICAL] - 31210 +2026-02-23 06:48:55 [INFO] - 20777 +2026-02-23 06:48:55 [CRITICAL] - 5020 +2026-02-23 06:48:55 [DEBUG] - 24546 +2026-02-23 06:48:55 [INFO] - 17851 +2026-02-23 06:48:55 [ERROR] Out of memory - 31534 +2026-02-23 06:48:55 [ERROR] Disk full - 11176 +2026-02-23 06:48:55 [ERROR] Failed to connect - 26482 +2026-02-23 06:48:55 [WARNING] - 32161 +2026-02-23 06:48:55 [WARNING] - 7171 +2026-02-23 06:48:55 [ERROR] Disk full - 9595 +2026-02-23 06:48:55 [INFO] - 17108 +2026-02-23 06:48:55 [DEBUG] - 4329 +2026-02-23 06:48:55 [ERROR] Invalid input - 16684 +2026-02-23 06:48:55 [ERROR] Out of memory - 4534 +2026-02-23 06:48:55 [CRITICAL] - 29005 +2026-02-23 06:48:55 [INFO] - 15976 +2026-02-23 06:48:55 [CRITICAL] - 20074 +2026-02-23 06:48:55 [WARNING] - 13648 +2026-02-23 06:48:55 [ERROR] Failed to connect - 21112 +2026-02-23 06:48:55 [WARNING] - 5342 +2026-02-23 06:48:55 [DEBUG] - 7708 +2026-02-23 06:48:55 [ERROR] Failed to connect - 14734 +2026-02-23 06:48:55 [WARNING] - 24033 +2026-02-23 06:48:56 [DEBUG] - 3905 +2026-02-23 06:48:56 [DEBUG] - 5607 +2026-02-23 06:48:56 [ERROR] Out of memory - 14048 +2026-02-23 06:48:56 [CRITICAL] - 13231 +2026-02-23 06:48:56 [WARNING] - 21685 +2026-02-23 06:48:56 [INFO] - 22702 +2026-02-23 06:48:56 [DEBUG] - 25726 +2026-02-23 06:48:56 [CRITICAL] - 27750 +2026-02-23 06:48:56 [CRITICAL] - 2979 +2026-02-23 06:48:56 [DEBUG] - 7261 +2026-02-23 06:48:56 [CRITICAL] - 17769 +2026-02-23 06:48:56 [ERROR] Out of memory - 13535 +2026-02-23 06:48:56 [DEBUG] - 19775 +2026-02-23 06:48:56 [INFO] - 28543 +2026-02-23 06:48:56 [INFO] - 30988 +2026-02-23 06:48:56 [CRITICAL] - 28646 +2026-02-23 06:48:56 [CRITICAL] - 20296 +2026-02-23 06:48:56 [DEBUG] - 22463 +2026-02-23 06:48:56 [ERROR] Out of memory - 19945 +2026-02-23 06:48:56 [WARNING] - 12878 +2026-02-23 06:48:56 [WARNING] - 25451 +2026-02-23 06:48:56 [WARNING] - 12408 +2026-02-23 06:48:56 [INFO] - 23923 +2026-02-23 06:48:56 [ERROR] Failed to connect - 32556 +2026-02-23 06:48:56 [INFO] - 14719 +2026-02-23 06:48:56 [DEBUG] - 30428 +2026-02-23 06:48:56 [WARNING] - 1846 +2026-02-23 06:48:56 [WARNING] - 24261 +2026-02-23 06:48:56 [DEBUG] - 26690 +2026-02-23 06:48:56 [DEBUG] - 12357 +2026-02-23 06:48:56 [DEBUG] - 6842 +2026-02-23 06:48:56 [WARNING] - 22530 +2026-02-23 06:48:56 [WARNING] - 7124 +2026-02-23 06:48:56 [CRITICAL] - 25890 +2026-02-23 06:48:56 [ERROR] Disk full - 15212 +2026-02-23 06:48:56 [ERROR] Failed to connect - 29561 +2026-02-23 06:48:56 [INFO] - 25370 +2026-02-23 06:48:56 [CRITICAL] - 19553 +2026-02-23 06:48:56 [ERROR] Out of memory - 5061 +2026-02-23 06:48:56 [DEBUG] - 10696 +2026-02-23 06:48:56 [WARNING] - 13492 +2026-02-23 06:48:56 [DEBUG] - 24960 +2026-02-23 06:48:56 [DEBUG] - 10344 +2026-02-23 06:48:56 [WARNING] - 19073 +2026-02-23 06:48:56 [INFO] - 8877 +2026-02-23 06:48:56 [INFO] - 3448 +2026-02-23 06:48:56 [DEBUG] - 28246 +2026-02-23 06:48:56 [ERROR] Invalid input - 8904 +2026-02-23 06:48:56 [INFO] - 4414 +2026-02-23 06:48:56 [DEBUG] - 22881 +2026-02-23 06:48:56 [ERROR] Failed to connect - 32288 +2026-02-23 06:48:56 [INFO] - 3406 +2026-02-23 06:48:56 [ERROR] Segmentation fault - 23123 +2026-02-23 06:48:56 [INFO] - 30415 +2026-02-23 06:48:56 [CRITICAL] - 20211 +2026-02-23 06:48:56 [INFO] - 2619 +2026-02-23 06:48:56 [CRITICAL] - 7549 +2026-02-23 06:48:56 [CRITICAL] - 21813 +2026-02-23 06:48:56 [INFO] - 30515 +2026-02-23 06:48:56 [CRITICAL] - 1595 +2026-02-23 06:48:56 [INFO] - 31393 +2026-02-23 06:48:56 [ERROR] Disk full - 10451 +2026-02-23 06:48:56 [INFO] - 11300 +2026-02-23 06:48:56 [DEBUG] - 19838 +2026-02-23 06:48:56 [WARNING] - 15486 +2026-02-23 06:48:56 [CRITICAL] - 13759 +2026-02-23 06:48:56 [CRITICAL] - 9252 +2026-02-23 06:48:56 [ERROR] Invalid input - 30267 +2026-02-23 06:48:56 [WARNING] - 5928 +2026-02-23 06:48:56 [CRITICAL] - 30988 +2026-02-23 06:48:56 [INFO] - 27066 +2026-02-23 06:48:56 [ERROR] Segmentation fault - 20335 +2026-02-23 06:48:56 [DEBUG] - 26104 +2026-02-23 06:48:56 [INFO] - 5122 +2026-02-23 06:48:56 [DEBUG] - 25812 +2026-02-23 06:48:56 [WARNING] - 499 +2026-02-23 06:48:56 [WARNING] - 20794 +2026-02-23 06:48:56 [WARNING] - 457 +2026-02-23 06:48:56 [WARNING] - 30036 +2026-02-23 06:48:56 [ERROR] Disk full - 16460 +2026-02-23 06:48:56 [WARNING] - 2129 +2026-02-23 06:48:56 [CRITICAL] - 26484 +2026-02-23 06:48:56 [CRITICAL] - 29813 +2026-02-23 06:48:56 [INFO] - 17369 +2026-02-23 06:48:56 [CRITICAL] - 18942 +2026-02-23 06:48:56 [INFO] - 8325 +2026-02-23 06:48:56 [DEBUG] - 19712 +2026-02-23 06:48:56 [ERROR] Disk full - 14491 +2026-02-23 06:48:56 [INFO] - 10203 +2026-02-23 06:48:56 [DEBUG] - 404 +2026-02-23 06:48:56 [INFO] - 19249 +2026-02-23 06:48:56 [ERROR] Disk full - 14422 +2026-02-23 06:48:56 [DEBUG] - 9002 +2026-02-23 06:48:56 [CRITICAL] - 13402 +2026-02-23 06:48:56 [ERROR] Segmentation fault - 4601 +2026-02-23 06:48:56 [INFO] - 7671 +2026-02-23 06:48:56 [INFO] - 2900 +2026-02-23 06:48:56 [WARNING] - 25539 +2026-02-23 06:48:56 [CRITICAL] - 10319 +2026-02-23 06:48:56 [INFO] - 9150 +2026-02-23 06:48:56 [CRITICAL] - 26300 +2026-02-23 06:48:56 [DEBUG] - 28691 +2026-02-23 06:48:56 [INFO] - 20000 +2026-02-23 06:48:56 [ERROR] Invalid input - 13815 +2026-02-23 06:48:56 [ERROR] Disk full - 14156 +2026-02-23 06:48:56 [INFO] - 14257 +2026-02-23 06:48:56 [INFO] - 11996 +2026-02-23 06:48:56 [INFO] - 10046 +2026-02-23 06:48:56 [ERROR] Disk full - 21071 +2026-02-23 06:48:56 [DEBUG] - 24728 +2026-02-23 06:48:56 [INFO] - 16341 +2026-02-23 06:48:56 [CRITICAL] - 2865 +2026-02-23 06:48:56 [ERROR] Segmentation fault - 25382 +2026-02-23 06:48:56 [WARNING] - 25533 +2026-02-23 06:48:56 [CRITICAL] - 15247 +2026-02-23 06:48:56 [WARNING] - 8830 +2026-02-23 06:48:56 [INFO] - 15994 +2026-02-23 06:48:56 [CRITICAL] - 21496 +2026-02-23 06:48:56 [DEBUG] - 23479 +2026-02-23 06:48:56 [WARNING] - 2197 +2026-02-23 06:48:56 [INFO] - 29819 +2026-02-23 06:48:56 [DEBUG] - 12927 +2026-02-23 06:48:56 [ERROR] Segmentation fault - 25468 +2026-02-23 06:48:56 [WARNING] - 13740 +2026-02-23 06:48:56 [CRITICAL] - 5105 +2026-02-23 06:48:56 [ERROR] Segmentation fault - 12648 +2026-02-23 06:48:56 [DEBUG] - 3119 +2026-02-23 06:48:56 [CRITICAL] - 876 +2026-02-23 06:48:56 [DEBUG] - 10970 +2026-02-23 06:48:56 [CRITICAL] - 9256 +2026-02-23 06:48:56 [WARNING] - 9378 +2026-02-23 06:48:56 [WARNING] - 25236 +2026-02-23 06:48:56 [CRITICAL] - 11973 +2026-02-23 06:48:56 [DEBUG] - 3625 +2026-02-23 06:48:56 [ERROR] Segmentation fault - 6754 +2026-02-23 06:48:56 [DEBUG] - 22170 +2026-02-23 06:48:56 [CRITICAL] - 17935 +2026-02-23 06:48:56 [ERROR] Failed to connect - 30998 +2026-02-23 06:48:56 [WARNING] - 28828 +2026-02-23 06:48:56 [INFO] - 2815 +2026-02-23 06:48:56 [ERROR] Disk full - 8822 +2026-02-23 06:48:56 [ERROR] Disk full - 55 +2026-02-23 06:48:56 [WARNING] - 28116 +2026-02-23 06:48:56 [DEBUG] - 22483 +2026-02-23 06:48:56 [WARNING] - 14877 +2026-02-23 06:48:56 [INFO] - 7524 +2026-02-23 06:48:56 [INFO] - 3037 +2026-02-23 06:48:56 [ERROR] Out of memory - 27091 +2026-02-23 06:48:56 [ERROR] Invalid input - 4312 +2026-02-23 06:48:56 [ERROR] Out of memory - 22866 +2026-02-23 06:48:56 [CRITICAL] - 16674 +2026-02-23 06:48:56 [CRITICAL] - 28688 +2026-02-23 06:48:56 [WARNING] - 16822 +2026-02-23 06:48:56 [ERROR] Invalid input - 30852 +2026-02-23 06:48:56 [CRITICAL] - 6750 +2026-02-23 06:48:56 [CRITICAL] - 210 +2026-02-23 06:48:56 [WARNING] - 13992 +2026-02-23 06:48:56 [ERROR] Disk full - 17522 +2026-02-23 06:48:56 [INFO] - 29923 +2026-02-23 06:48:56 [WARNING] - 17862 +2026-02-23 06:48:56 [CRITICAL] - 3358 +2026-02-23 06:48:56 [DEBUG] - 12670 +2026-02-23 06:48:56 [DEBUG] - 15691 +2026-02-23 06:48:56 [CRITICAL] - 13241 +2026-02-23 06:48:56 [DEBUG] - 31323 +2026-02-23 06:48:56 [CRITICAL] - 351 +2026-02-23 06:48:56 [INFO] - 19479 +2026-02-23 06:48:56 [DEBUG] - 15765 +2026-02-23 06:48:56 [INFO] - 27386 +2026-02-23 06:48:56 [INFO] - 16339 +2026-02-23 06:48:56 [WARNING] - 15630 +2026-02-23 06:48:56 [INFO] - 7815 +2026-02-23 06:48:56 [ERROR] Failed to connect - 22048 +2026-02-23 06:48:56 [INFO] - 1958 +2026-02-23 06:48:56 [CRITICAL] - 16530 +2026-02-23 06:48:56 [WARNING] - 15412 +2026-02-23 06:48:56 [WARNING] - 7815 +2026-02-23 06:48:56 [INFO] - 16895 +2026-02-23 06:48:56 [INFO] - 25303 +2026-02-23 06:48:56 [INFO] - 26790 +2026-02-23 06:48:56 [ERROR] Segmentation fault - 24553 +2026-02-23 06:48:56 [CRITICAL] - 21980 +2026-02-23 06:48:56 [INFO] - 24685 +2026-02-23 06:48:56 [ERROR] Disk full - 8179 +2026-02-23 06:48:56 [DEBUG] - 19750 +2026-02-23 06:48:56 [DEBUG] - 29145 +2026-02-23 06:48:56 [ERROR] Invalid input - 27381 +2026-02-23 06:48:56 [ERROR] Invalid input - 15158 +2026-02-23 06:48:56 [ERROR] Invalid input - 2457 +2026-02-23 06:48:56 [CRITICAL] - 7319 +2026-02-23 06:48:56 [INFO] - 30790 +2026-02-23 06:48:56 [INFO] - 3635 +2026-02-23 06:48:56 [WARNING] - 21328 +2026-02-23 06:48:56 [INFO] - 12340 +2026-02-23 06:48:56 [ERROR] Out of memory - 24883 +2026-02-23 06:48:56 [ERROR] Segmentation fault - 25334 +2026-02-23 06:48:56 [DEBUG] - 26858 +2026-02-23 06:48:56 [CRITICAL] - 27846 +2026-02-23 06:48:56 [CRITICAL] - 3146 +2026-02-23 06:48:56 [DEBUG] - 25829 +2026-02-23 06:48:56 [ERROR] Invalid input - 5817 +2026-02-23 06:48:56 [ERROR] Disk full - 14077 +2026-02-23 06:48:56 [DEBUG] - 31674 +2026-02-23 06:48:56 [WARNING] - 5960 +2026-02-23 06:48:56 [INFO] - 3599 +2026-02-23 06:48:56 [CRITICAL] - 22561 +2026-02-23 06:48:56 [WARNING] - 15124 +2026-02-23 06:48:56 [ERROR] Segmentation fault - 12813 +2026-02-23 06:48:56 [WARNING] - 31886 +2026-02-23 06:48:56 [CRITICAL] - 11222 +2026-02-23 06:48:56 [INFO] - 15131 +2026-02-23 06:48:56 [DEBUG] - 422 +2026-02-23 06:48:56 [INFO] - 24465 +2026-02-23 06:48:56 [INFO] - 25298 +2026-02-23 06:48:56 [INFO] - 20182 +2026-02-23 06:48:56 [CRITICAL] - 15236 +2026-02-23 06:48:56 [CRITICAL] - 22922 +2026-02-23 06:48:56 [DEBUG] - 13117 +2026-02-23 06:48:56 [DEBUG] - 16671 +2026-02-23 06:48:56 [ERROR] Segmentation fault - 26027 +2026-02-23 06:48:56 [DEBUG] - 31350 +2026-02-23 06:48:56 [DEBUG] - 4677 +2026-02-23 06:48:56 [DEBUG] - 1490 +2026-02-23 06:48:56 [WARNING] - 18469 +2026-02-23 06:48:56 [ERROR] Segmentation fault - 22369 +2026-02-23 06:48:56 [INFO] - 31201 +2026-02-23 06:48:56 [ERROR] Failed to connect - 1494 +2026-02-23 06:48:56 [INFO] - 16093 +2026-02-23 06:48:56 [WARNING] - 22591 +2026-02-23 06:48:56 [ERROR] Disk full - 14059 +2026-02-23 06:48:56 [ERROR] Out of memory - 5229 +2026-02-23 06:48:56 [CRITICAL] - 9222 +2026-02-23 06:48:56 [ERROR] Disk full - 10188 +2026-02-23 06:48:56 [DEBUG] - 30897 +2026-02-23 06:48:56 [ERROR] Invalid input - 22921 +2026-02-23 06:48:56 [WARNING] - 375 +2026-02-23 06:48:56 [INFO] - 10259 +2026-02-23 06:48:56 [WARNING] - 6396 +2026-02-23 06:48:56 [ERROR] Invalid input - 4239 +2026-02-23 06:48:56 [CRITICAL] - 23241 +2026-02-23 06:48:56 [INFO] - 12322 +2026-02-23 06:48:56 [CRITICAL] - 13597 +2026-02-23 06:48:56 [ERROR] Failed to connect - 2200 +2026-02-23 06:48:56 [WARNING] - 16744 +2026-02-23 06:48:56 [DEBUG] - 2471 +2026-02-23 06:48:56 [INFO] - 28156 +2026-02-23 06:48:56 [CRITICAL] - 28126 +2026-02-23 06:48:56 [DEBUG] - 5579 +2026-02-23 06:48:56 [INFO] - 32146 +2026-02-23 06:48:56 [INFO] - 4480 +2026-02-23 06:48:56 [INFO] - 4953 +2026-02-23 06:48:56 [ERROR] Failed to connect - 3365 +2026-02-23 06:48:56 [CRITICAL] - 4533 +2026-02-23 06:48:56 [CRITICAL] - 7908 +2026-02-23 06:48:56 [DEBUG] - 14197 +2026-02-23 06:48:56 [WARNING] - 18825 +2026-02-23 06:48:56 [DEBUG] - 28617 +2026-02-23 06:48:56 [DEBUG] - 32529 +2026-02-23 06:48:56 [WARNING] - 6616 +2026-02-23 06:48:56 [INFO] - 13366 +2026-02-23 06:48:56 [CRITICAL] - 29257 +2026-02-23 06:48:56 [WARNING] - 11281 +2026-02-23 06:48:56 [DEBUG] - 31639 +2026-02-23 06:48:56 [CRITICAL] - 26919 +2026-02-23 06:48:56 [INFO] - 16020 +2026-02-23 06:48:56 [CRITICAL] - 3358 +2026-02-23 06:48:56 [ERROR] Invalid input - 25873 +2026-02-23 06:48:56 [INFO] - 11525 +2026-02-23 06:48:56 [WARNING] - 26591 +2026-02-23 06:48:56 [CRITICAL] - 17612 +2026-02-23 06:48:56 [ERROR] Out of memory - 29380 +2026-02-23 06:48:56 [ERROR] Disk full - 29314 +2026-02-23 06:48:56 [WARNING] - 3942 +2026-02-23 06:48:56 [ERROR] Failed to connect - 2104 +2026-02-23 06:48:56 [CRITICAL] - 28840 +2026-02-23 06:48:56 [CRITICAL] - 3066 +2026-02-23 06:48:56 [ERROR] Out of memory - 16930 +2026-02-23 06:48:56 [CRITICAL] - 25806 +2026-02-23 06:48:56 [ERROR] Disk full - 12353 +2026-02-23 06:48:56 [INFO] - 30737 +2026-02-23 06:48:56 [ERROR] Disk full - 14548 +2026-02-23 06:48:56 [CRITICAL] - 28339 +2026-02-23 06:48:56 [DEBUG] - 5881 +2026-02-23 06:48:56 [DEBUG] - 10407 +2026-02-23 06:48:56 [ERROR] Out of memory - 26011 +2026-02-23 06:48:56 [INFO] - 11877 +2026-02-23 06:48:56 [ERROR] Out of memory - 5391 +2026-02-23 06:48:56 [ERROR] Failed to connect - 24022 +2026-02-23 06:48:56 [INFO] - 21489 +2026-02-23 06:48:56 [DEBUG] - 25652 +2026-02-23 06:48:56 [ERROR] Failed to connect - 19043 +2026-02-23 06:48:56 [ERROR] Invalid input - 1978 +2026-02-23 06:48:56 [DEBUG] - 9524 +2026-02-23 06:48:56 [ERROR] Segmentation fault - 11638 +2026-02-23 06:48:56 [WARNING] - 11138 +2026-02-23 06:48:56 [DEBUG] - 23166 +2026-02-23 06:48:56 [DEBUG] - 14816 +2026-02-23 06:48:56 [INFO] - 20303 +2026-02-23 06:48:56 [DEBUG] - 13542 +2026-02-23 06:48:56 [DEBUG] - 15696 +2026-02-23 06:48:56 [INFO] - 11703 +2026-02-23 06:48:56 [WARNING] - 31921 +2026-02-23 06:48:56 [INFO] - 31301 +2026-02-23 06:48:56 [INFO] - 5329 +2026-02-23 06:48:56 [CRITICAL] - 8346 +2026-02-23 06:48:56 [ERROR] Out of memory - 17503 +2026-02-23 06:48:56 [INFO] - 5106 +2026-02-23 06:48:56 [ERROR] Segmentation fault - 7334 +2026-02-23 06:48:56 [DEBUG] - 10370 +2026-02-23 06:48:56 [INFO] - 12486 +2026-02-23 06:48:56 [ERROR] Out of memory - 25994 +2026-02-23 06:48:56 [INFO] - 13970 +2026-02-23 06:48:56 [CRITICAL] - 6450 +2026-02-23 06:48:56 [CRITICAL] - 12299 +2026-02-23 06:48:56 [ERROR] Disk full - 17399 +2026-02-23 06:48:56 [INFO] - 3383 +2026-02-23 06:48:56 [DEBUG] - 27776 +2026-02-23 06:48:56 [ERROR] Disk full - 1537 +2026-02-23 06:48:56 [CRITICAL] - 11501 +2026-02-23 06:48:56 [WARNING] - 28603 +2026-02-23 06:48:56 [INFO] - 21124 +2026-02-23 06:48:56 [DEBUG] - 11331 +2026-02-23 06:48:56 [INFO] - 14414 +2026-02-23 06:48:56 [CRITICAL] - 30752 +2026-02-23 06:48:56 [DEBUG] - 24400 +2026-02-23 06:48:56 [DEBUG] - 3933 +2026-02-23 06:48:56 [DEBUG] - 14153 +2026-02-23 06:48:56 [WARNING] - 16207 +2026-02-23 06:48:56 [WARNING] - 6042 +2026-02-23 06:48:56 [INFO] - 29324 +2026-02-23 06:48:56 [CRITICAL] - 26570 +2026-02-23 06:48:56 [DEBUG] - 30856 +2026-02-23 06:48:56 [INFO] - 30621 +2026-02-23 06:48:56 [WARNING] - 20355 +2026-02-23 06:48:56 [DEBUG] - 31807 +2026-02-23 06:48:56 [WARNING] - 8461 +2026-02-23 06:48:56 [DEBUG] - 31865 +2026-02-23 06:48:56 [INFO] - 24523 +2026-02-23 06:48:56 [CRITICAL] - 4335 +2026-02-23 06:48:56 [DEBUG] - 13867 +2026-02-23 06:48:56 [INFO] - 22719 +2026-02-23 06:48:56 [ERROR] Invalid input - 6466 +2026-02-23 06:48:56 [DEBUG] - 26844 +2026-02-23 06:48:56 [CRITICAL] - 24309 +2026-02-23 06:48:56 [CRITICAL] - 21494 +2026-02-23 06:48:56 [DEBUG] - 4278 +2026-02-23 06:48:56 [WARNING] - 24097 +2026-02-23 06:48:56 [DEBUG] - 3625 +2026-02-23 06:48:56 [DEBUG] - 25951 +2026-02-23 06:48:56 [INFO] - 6825 +2026-02-23 06:48:56 [ERROR] Failed to connect - 5345 +2026-02-23 06:48:56 [WARNING] - 7772 +2026-02-23 06:48:56 [ERROR] Disk full - 3244 +2026-02-23 06:48:56 [INFO] - 31873 +2026-02-23 06:48:56 [INFO] - 7233 +2026-02-23 06:48:56 [ERROR] Invalid input - 2076 +2026-02-23 06:48:56 [CRITICAL] - 1763 +2026-02-23 06:48:56 [DEBUG] - 2417 +2026-02-23 06:48:56 [CRITICAL] - 25100 +2026-02-23 06:48:56 [DEBUG] - 11159 +2026-02-23 06:48:56 [CRITICAL] - 23755 +2026-02-23 06:48:56 [ERROR] Disk full - 26475 +2026-02-23 06:48:56 [WARNING] - 7879 +2026-02-23 06:48:56 [WARNING] - 30527 +2026-02-23 06:48:56 [CRITICAL] - 9867 +2026-02-23 06:48:56 [DEBUG] - 9703 +2026-02-23 06:48:56 [ERROR] Failed to connect - 24589 +2026-02-23 06:48:56 [CRITICAL] - 29280 +2026-02-23 06:48:56 [ERROR] Disk full - 27074 +2026-02-23 06:48:56 [INFO] - 30709 +2026-02-23 06:48:56 [DEBUG] - 26391 +2026-02-23 06:48:56 [CRITICAL] - 12341 +2026-02-23 06:48:56 [CRITICAL] - 10766 +2026-02-23 06:48:56 [DEBUG] - 21309 +2026-02-23 06:48:56 [DEBUG] - 18926 +2026-02-23 06:48:56 [WARNING] - 7895 +2026-02-23 06:48:56 [WARNING] - 16415 +2026-02-23 06:48:56 [WARNING] - 18285 +2026-02-23 06:48:56 [DEBUG] - 26730 +2026-02-23 06:48:56 [ERROR] Failed to connect - 23447 +2026-02-23 06:48:56 [DEBUG] - 12500 +2026-02-23 06:48:56 [INFO] - 21526 +2026-02-23 06:48:56 [ERROR] Disk full - 555 +2026-02-23 06:48:56 [CRITICAL] - 17826 +2026-02-23 06:48:56 [ERROR] Invalid input - 25137 +2026-02-23 06:48:56 [ERROR] Disk full - 15522 +2026-02-23 06:48:56 [DEBUG] - 18959 +2026-02-23 06:48:56 [CRITICAL] - 31327 +2026-02-23 06:48:56 [INFO] - 23695 +2026-02-23 06:48:56 [DEBUG] - 23026 +2026-02-23 06:48:56 [WARNING] - 24884 +2026-02-23 06:48:56 [ERROR] Segmentation fault - 31432 +2026-02-23 06:48:56 [WARNING] - 31660 +2026-02-23 06:48:56 [WARNING] - 13901 +2026-02-23 06:48:56 [INFO] - 16851 +2026-02-23 06:48:56 [DEBUG] - 5904 +2026-02-23 06:48:56 [ERROR] Disk full - 7561 +2026-02-23 06:48:56 [DEBUG] - 20149 +2026-02-23 06:48:56 [INFO] - 944 +2026-02-23 06:48:56 [DEBUG] - 7659 +2026-02-23 06:48:56 [INFO] - 22938 +2026-02-23 06:48:56 [WARNING] - 14778 +2026-02-23 06:48:56 [WARNING] - 30118 +2026-02-23 06:48:56 [CRITICAL] - 29897 +2026-02-23 06:48:56 [INFO] - 23738 +2026-02-23 06:48:56 [ERROR] Invalid input - 8968 +2026-02-23 06:48:56 [WARNING] - 13365 +2026-02-23 06:48:56 [INFO] - 12365 +2026-02-23 06:48:56 [ERROR] Out of memory - 15028 +2026-02-23 06:48:56 [WARNING] - 20321 +2026-02-23 06:48:56 [DEBUG] - 28067 +2026-02-23 06:48:56 [INFO] - 30955 +2026-02-23 06:48:56 [INFO] - 17944 +2026-02-23 06:48:56 [INFO] - 3962 +2026-02-23 06:48:56 [ERROR] Invalid input - 23053 +2026-02-23 06:48:56 [DEBUG] - 8529 +2026-02-23 06:48:56 [CRITICAL] - 52 +2026-02-23 06:48:56 [DEBUG] - 30067 +2026-02-23 06:48:56 [ERROR] Invalid input - 18603 +2026-02-23 06:48:56 [ERROR] Segmentation fault - 26249 +2026-02-23 06:48:56 [ERROR] Failed to connect - 17421 +2026-02-23 06:48:56 [INFO] - 2227 +2026-02-23 06:48:56 [ERROR] Invalid input - 13017 +2026-02-23 06:48:56 [INFO] - 18614 +2026-02-23 06:48:56 [CRITICAL] - 19379 +2026-02-23 06:48:56 [WARNING] - 14089 +2026-02-23 06:48:56 [WARNING] - 20361 +2026-02-23 06:48:56 [WARNING] - 30835 +2026-02-23 06:48:56 [DEBUG] - 22208 +2026-02-23 06:48:56 [DEBUG] - 1370 +2026-02-23 06:48:56 [CRITICAL] - 26319 +2026-02-23 06:48:56 [WARNING] - 19535 +2026-02-23 06:48:56 [WARNING] - 15581 +2026-02-23 06:48:56 [WARNING] - 11460 +2026-02-23 06:48:56 [INFO] - 26840 +2026-02-23 06:48:56 [WARNING] - 8400 +2026-02-23 06:48:56 [CRITICAL] - 20723 +2026-02-23 06:48:56 [CRITICAL] - 26600 +2026-02-23 06:48:56 [WARNING] - 4317 +2026-02-23 06:48:56 [INFO] - 907 +2026-02-23 06:48:56 [INFO] - 17001 +2026-02-23 06:48:56 [ERROR] Invalid input - 11800 +2026-02-23 06:48:56 [INFO] - 1985 +2026-02-23 06:48:56 [CRITICAL] - 2553 +2026-02-23 06:48:56 [INFO] - 32527 +2026-02-23 06:48:56 [WARNING] - 20960 +2026-02-23 06:48:56 [WARNING] - 15305 +2026-02-23 06:48:56 [WARNING] - 15627 +2026-02-23 06:48:56 [ERROR] Invalid input - 13397 +2026-02-23 06:48:56 [CRITICAL] - 22798 +2026-02-23 06:48:56 [ERROR] Failed to connect - 11614 +2026-02-23 06:48:56 [INFO] - 16507 +2026-02-23 06:48:56 [WARNING] - 12445 +2026-02-23 06:48:56 [ERROR] Failed to connect - 26142 +2026-02-23 06:48:56 [CRITICAL] - 25381 +2026-02-23 06:48:56 [CRITICAL] - 9004 +2026-02-23 06:48:56 [ERROR] Out of memory - 9964 +2026-02-23 06:48:56 [INFO] - 29168 +2026-02-23 06:48:56 [CRITICAL] - 10316 +2026-02-23 06:48:56 [DEBUG] - 5725 +2026-02-23 06:48:56 [ERROR] Out of memory - 18754 +2026-02-23 06:48:56 [DEBUG] - 9881 +2026-02-23 06:48:56 [CRITICAL] - 18653 +2026-02-23 06:48:56 [INFO] - 7740 +2026-02-23 06:48:56 [INFO] - 16354 +2026-02-23 06:48:56 [CRITICAL] - 31670 +2026-02-23 06:48:56 [CRITICAL] - 18820 +2026-02-23 06:48:56 [ERROR] Failed to connect - 4781 +2026-02-23 06:48:56 [CRITICAL] - 24442 +2026-02-23 06:48:56 [DEBUG] - 4173 +2026-02-23 06:48:56 [INFO] - 32345 +2026-02-23 06:48:56 [INFO] - 13405 +2026-02-23 06:48:56 [WARNING] - 21809 +2026-02-23 06:48:56 [ERROR] Invalid input - 25337 +2026-02-23 06:48:56 [DEBUG] - 27002 +2026-02-23 06:48:56 [CRITICAL] - 2378 +2026-02-23 06:48:56 [INFO] - 6619 +2026-02-23 06:48:56 [WARNING] - 21102 +2026-02-23 06:48:56 [INFO] - 32623 +2026-02-23 06:48:56 [CRITICAL] - 19853 +2026-02-23 06:48:56 [INFO] - 3293 +2026-02-23 06:48:56 [ERROR] Disk full - 24092 +2026-02-23 06:48:56 [CRITICAL] - 2986 +2026-02-23 06:48:56 [INFO] - 12962 +2026-02-23 06:48:56 [ERROR] Disk full - 10453 +2026-02-23 06:48:56 [CRITICAL] - 11667 +2026-02-23 06:48:56 [WARNING] - 17284 +2026-02-23 06:48:56 [CRITICAL] - 27308 +2026-02-23 06:48:56 [DEBUG] - 27026 +2026-02-23 06:48:56 [CRITICAL] - 24736 +2026-02-23 06:48:56 [DEBUG] - 17238 +2026-02-23 06:48:56 [DEBUG] - 24647 +2026-02-23 06:48:56 [INFO] - 9955 +2026-02-23 06:48:56 [CRITICAL] - 2016 +2026-02-23 06:48:56 [DEBUG] - 30905 +2026-02-23 06:48:56 [INFO] - 6483 +2026-02-23 06:48:56 [DEBUG] - 12793 +2026-02-23 06:48:56 [DEBUG] - 23935 +2026-02-23 06:48:56 [WARNING] - 12535 +2026-02-23 06:48:56 [CRITICAL] - 2884 +2026-02-23 06:48:56 [INFO] - 21415 +2026-02-23 06:48:56 [CRITICAL] - 25817 +2026-02-23 06:48:56 [CRITICAL] - 21500 +2026-02-23 06:48:56 [DEBUG] - 26631 +2026-02-23 06:48:56 [INFO] - 9858 +2026-02-23 06:48:56 [INFO] - 7760 +2026-02-23 06:48:56 [CRITICAL] - 31117 +2026-02-23 06:48:56 [INFO] - 8007 +2026-02-23 06:48:56 [CRITICAL] - 1228 +2026-02-23 06:48:56 [DEBUG] - 24895 +2026-02-23 06:48:56 [WARNING] - 6583 +2026-02-23 06:48:56 [ERROR] Invalid input - 10572 +2026-02-23 06:48:56 [CRITICAL] - 28157 +2026-02-23 06:48:56 [INFO] - 23325 +2026-02-23 06:48:56 [INFO] - 17778 +2026-02-23 06:48:56 [ERROR] Segmentation fault - 6280 +2026-02-23 06:48:56 [WARNING] - 13964 +2026-02-23 06:48:56 [ERROR] Invalid input - 14898 +2026-02-23 06:48:56 [CRITICAL] - 17459 +2026-02-23 06:48:56 [CRITICAL] - 30601 +2026-02-23 06:48:56 [DEBUG] - 11198 +2026-02-23 06:48:56 [CRITICAL] - 13384 +2026-02-23 06:48:56 [INFO] - 30841 +2026-02-23 06:48:56 [DEBUG] - 3473 +2026-02-23 06:48:56 [ERROR] Disk full - 5851 +2026-02-23 06:48:56 [CRITICAL] - 12629 +2026-02-23 06:48:56 [CRITICAL] - 31141 +2026-02-23 06:48:56 [DEBUG] - 15019 +2026-02-23 06:48:56 [DEBUG] - 31376 +2026-02-23 06:48:56 [DEBUG] - 26063 +2026-02-23 06:48:56 [ERROR] Out of memory - 27222 +2026-02-23 06:48:56 [WARNING] - 28911 +2026-02-23 06:48:56 [CRITICAL] - 19718 +2026-02-23 06:48:56 [DEBUG] - 9351 +2026-02-23 06:48:56 [ERROR] Segmentation fault - 19955 +2026-02-23 06:48:56 [DEBUG] - 10055 +2026-02-23 06:48:56 [INFO] - 4186 +2026-02-23 06:48:56 [CRITICAL] - 10662 +2026-02-23 06:48:56 [INFO] - 14083 +2026-02-23 06:48:56 [CRITICAL] - 25999 +2026-02-23 06:48:56 [CRITICAL] - 19931 +2026-02-23 06:48:56 [CRITICAL] - 16906 +2026-02-23 06:48:56 [ERROR] Segmentation fault - 10202 +2026-02-23 06:48:56 [INFO] - 23037 +2026-02-23 06:48:56 [ERROR] Failed to connect - 22345 +2026-02-23 06:48:56 [DEBUG] - 29928 +2026-02-23 06:48:56 [DEBUG] - 29683 +2026-02-23 06:48:56 [WARNING] - 8073 +2026-02-23 06:48:56 [ERROR] Segmentation fault - 24741 +2026-02-23 06:48:56 [ERROR] Failed to connect - 555 +2026-02-23 06:48:56 [INFO] - 3801 +2026-02-23 06:48:56 [CRITICAL] - 11244 +2026-02-23 06:48:56 [ERROR] Segmentation fault - 18994 +2026-02-23 06:48:56 [INFO] - 16749 +2026-02-23 06:48:56 [INFO] - 30101 +2026-02-23 06:48:56 [INFO] - 11337 +2026-02-23 06:48:56 [DEBUG] - 26887 +2026-02-23 06:48:56 [ERROR] Invalid input - 3302 +2026-02-23 06:48:56 [DEBUG] - 5372 +2026-02-23 06:48:56 [ERROR] Out of memory - 29804 +2026-02-23 06:48:56 [INFO] - 9286 +2026-02-23 06:48:56 [WARNING] - 27269 +2026-02-23 06:48:56 [WARNING] - 8754 +2026-02-23 06:48:56 [CRITICAL] - 14638 +2026-02-23 06:48:56 [INFO] - 17429 +2026-02-23 06:48:56 [ERROR] Disk full - 17554 +2026-02-23 06:48:56 [CRITICAL] - 10607 +2026-02-23 06:48:56 [WARNING] - 28421 +2026-02-23 06:48:56 [INFO] - 22487 +2026-02-23 06:48:56 [INFO] - 7282 +2026-02-23 06:48:56 [DEBUG] - 27686 +2026-02-23 06:48:56 [INFO] - 31302 +2026-02-23 06:48:56 [DEBUG] - 8979 +2026-02-23 06:48:56 [CRITICAL] - 30428 +2026-02-23 06:48:56 [INFO] - 4822 +2026-02-23 06:48:56 [ERROR] Disk full - 10715 +2026-02-23 06:48:56 [DEBUG] - 17569 +2026-02-23 06:48:56 [CRITICAL] - 16095 +2026-02-23 06:48:56 [WARNING] - 26317 +2026-02-23 06:48:56 [DEBUG] - 29667 +2026-02-23 06:48:56 [INFO] - 12776 +2026-02-23 06:48:56 [ERROR] Invalid input - 3023 +2026-02-23 06:48:56 [ERROR] Disk full - 20611 +2026-02-23 06:48:56 [WARNING] - 20994 +2026-02-23 06:48:56 [ERROR] Out of memory - 29240 +2026-02-23 06:48:56 [CRITICAL] - 1070 +2026-02-23 06:48:56 [DEBUG] - 19318 +2026-02-23 06:48:56 [CRITICAL] - 14509 +2026-02-23 06:48:56 [DEBUG] - 19340 +2026-02-23 06:48:56 [CRITICAL] - 8217 +2026-02-23 06:48:56 [INFO] - 30163 +2026-02-23 06:48:56 [WARNING] - 2018 +2026-02-23 06:48:56 [DEBUG] - 19375 +2026-02-23 06:48:56 [WARNING] - 29642 +2026-02-23 06:48:56 [WARNING] - 24878 +2026-02-23 06:48:56 [INFO] - 4092 +2026-02-23 06:48:56 [WARNING] - 18599 +2026-02-23 06:48:56 [DEBUG] - 4776 +2026-02-23 06:48:56 [CRITICAL] - 31327 +2026-02-23 06:48:56 [WARNING] - 7221 +2026-02-23 06:48:56 [WARNING] - 27286 +2026-02-23 06:48:56 [ERROR] Failed to connect - 22846 +2026-02-23 06:48:56 [INFO] - 6478 +2026-02-23 06:48:56 [CRITICAL] - 27274 +2026-02-23 06:48:56 [CRITICAL] - 21463 +2026-02-23 06:48:56 [ERROR] Out of memory - 15940 +2026-02-23 06:48:56 [CRITICAL] - 8024 +2026-02-23 06:48:56 [INFO] - 7524 +2026-02-23 06:48:56 [ERROR] Segmentation fault - 26181 +2026-02-23 06:48:56 [WARNING] - 4938 +2026-02-23 06:48:56 [DEBUG] - 29969 +2026-02-23 06:48:56 [CRITICAL] - 17818 +2026-02-23 06:48:56 [CRITICAL] - 23911 +2026-02-23 06:48:56 [ERROR] Failed to connect - 25698 +2026-02-23 06:48:56 [DEBUG] - 7154 +2026-02-23 06:48:56 [DEBUG] - 13955 +2026-02-23 06:48:56 [ERROR] Segmentation fault - 31882 +2026-02-23 06:48:56 [DEBUG] - 9206 +2026-02-23 06:48:56 [CRITICAL] - 18502 +2026-02-23 06:48:56 [DEBUG] - 21472 +2026-02-23 06:48:56 [ERROR] Segmentation fault - 12805 +2026-02-23 06:48:56 [WARNING] - 17070 +2026-02-23 06:48:56 [INFO] - 25828 +2026-02-23 06:48:56 [DEBUG] - 519 +2026-02-23 06:48:56 [WARNING] - 9981 +2026-02-23 06:48:56 [WARNING] - 31305 +2026-02-23 06:48:56 [DEBUG] - 24925 +2026-02-23 06:48:56 [INFO] - 6498 +2026-02-23 06:48:56 [ERROR] Segmentation fault - 9618 +2026-02-23 06:48:56 [ERROR] Invalid input - 10275 +2026-02-23 06:48:56 [WARNING] - 1246 +2026-02-23 06:48:56 [WARNING] - 6484 +2026-02-23 06:48:56 [INFO] - 24375 +2026-02-23 06:48:56 [ERROR] Segmentation fault - 15707 +2026-02-23 06:48:56 [INFO] - 23974 +2026-02-23 06:48:56 [ERROR] Out of memory - 26599 +2026-02-23 06:48:56 [ERROR] Out of memory - 20801 +2026-02-23 06:48:56 [WARNING] - 32307 +2026-02-23 06:48:56 [INFO] - 30872 +2026-02-23 06:48:56 [CRITICAL] - 5109 +2026-02-23 06:48:56 [WARNING] - 29559 +2026-02-23 06:48:56 [INFO] - 2894 +2026-02-23 06:48:56 [INFO] - 21474 +2026-02-23 06:48:56 [INFO] - 23640 +2026-02-23 06:48:56 [WARNING] - 32712 +2026-02-23 06:48:56 [WARNING] - 22928 +2026-02-23 06:48:56 [WARNING] - 25046 +2026-02-23 06:48:56 [DEBUG] - 22730 +2026-02-23 06:48:56 [ERROR] Disk full - 6751 +2026-02-23 06:48:56 [ERROR] Failed to connect - 17971 +2026-02-23 06:48:56 [INFO] - 7110 +2026-02-23 06:48:56 [DEBUG] - 4595 +2026-02-23 06:48:56 [WARNING] - 4092 +2026-02-23 06:48:56 [WARNING] - 22325 +2026-02-23 06:48:56 [WARNING] - 14227 +2026-02-23 06:48:56 [INFO] - 16763 +2026-02-23 06:48:56 [ERROR] Failed to connect - 21679 +2026-02-23 06:48:56 [INFO] - 19056 +2026-02-23 06:48:56 [INFO] - 4419 +2026-02-23 06:48:56 [INFO] - 19307 +2026-02-23 06:48:56 [ERROR] Disk full - 24742 +2026-02-23 06:48:56 [DEBUG] - 16121 +2026-02-23 06:48:56 [INFO] - 25079 +2026-02-23 06:48:56 [DEBUG] - 20962 +2026-02-23 06:48:56 [WARNING] - 28795 +2026-02-23 06:48:56 [DEBUG] - 10154 +2026-02-23 06:48:56 [INFO] - 27154 +2026-02-23 06:48:56 [CRITICAL] - 17920 +2026-02-23 06:48:56 [WARNING] - 4907 +2026-02-23 06:48:56 [DEBUG] - 10158 +2026-02-23 06:48:56 [INFO] - 9543 +2026-02-23 06:48:56 [CRITICAL] - 22122 +2026-02-23 06:48:56 [CRITICAL] - 21246 +2026-02-23 06:48:56 [CRITICAL] - 7591 +2026-02-23 06:48:56 [DEBUG] - 21844 +2026-02-23 06:48:56 [INFO] - 31953 +2026-02-23 06:48:56 [WARNING] - 19281 +2026-02-23 06:48:56 [WARNING] - 5403 +2026-02-23 06:48:56 [WARNING] - 5959 +2026-02-23 06:48:56 [INFO] - 16180 +2026-02-23 06:48:56 [CRITICAL] - 22657 +2026-02-23 06:48:56 [DEBUG] - 25675 +2026-02-23 06:48:56 [DEBUG] - 12848 +2026-02-23 06:48:56 [DEBUG] - 9049 +2026-02-23 06:48:56 [CRITICAL] - 28266 +2026-02-23 06:48:56 [WARNING] - 17786 +2026-02-23 06:48:56 [CRITICAL] - 10945 +2026-02-23 06:48:56 [INFO] - 5182 +2026-02-23 06:48:56 [INFO] - 20144 +2026-02-23 06:48:56 [INFO] - 14322 +2026-02-23 06:48:56 [DEBUG] - 22826 +2026-02-23 06:48:56 [DEBUG] - 5890 +2026-02-23 06:48:56 [INFO] - 23354 +2026-02-23 06:48:56 [CRITICAL] - 13395 +2026-02-23 06:48:56 [DEBUG] - 31280 +2026-02-23 06:48:56 [DEBUG] - 19017 +2026-02-23 06:48:56 [INFO] - 25494 +2026-02-23 06:48:56 [INFO] - 18814 +2026-02-23 06:48:56 [WARNING] - 18579 +2026-02-23 06:48:56 [DEBUG] - 23090 +2026-02-23 06:48:56 [ERROR] Failed to connect - 29660 +2026-02-23 06:48:56 [ERROR] Disk full - 7523 +2026-02-23 06:48:56 [INFO] - 29589 +2026-02-23 06:48:56 [INFO] - 7001 +2026-02-23 06:48:56 [DEBUG] - 10336 +2026-02-23 06:48:56 [DEBUG] - 32301 +2026-02-23 06:48:56 [WARNING] - 2033 +2026-02-23 06:48:56 [CRITICAL] - 24056 +2026-02-23 06:48:56 [INFO] - 27443 +2026-02-23 06:48:56 [WARNING] - 29333 +2026-02-23 06:48:56 [INFO] - 21056 +2026-02-23 06:48:56 [DEBUG] - 27555 +2026-02-23 06:48:56 [DEBUG] - 9273 +2026-02-23 06:48:56 [ERROR] Disk full - 22707 +2026-02-23 06:48:56 [WARNING] - 15811 +2026-02-23 06:48:56 [ERROR] Failed to connect - 11449 +2026-02-23 06:48:56 [ERROR] Out of memory - 26117 +2026-02-23 06:48:56 [CRITICAL] - 17810 +2026-02-23 06:48:56 [DEBUG] - 10330 +2026-02-23 06:48:56 [ERROR] Disk full - 27875 +2026-02-23 06:48:56 [ERROR] Invalid input - 27810 +2026-02-23 06:48:56 [INFO] - 18493 +2026-02-23 06:48:56 [ERROR] Disk full - 31128 +2026-02-23 06:48:56 [INFO] - 8244 +2026-02-23 06:48:56 [INFO] - 27275 +2026-02-23 06:48:56 [INFO] - 28179 +2026-02-23 06:48:56 [ERROR] Failed to connect - 9771 +2026-02-23 06:48:56 [CRITICAL] - 24251 +2026-02-23 06:48:56 [ERROR] Invalid input - 23253 +2026-02-23 06:48:56 [ERROR] Invalid input - 27484 +2026-02-23 06:48:56 [CRITICAL] - 28875 +2026-02-23 06:48:56 [DEBUG] - 26064 +2026-02-23 06:48:56 [WARNING] - 26740 +2026-02-23 06:48:56 [INFO] - 20567 +2026-02-23 06:48:56 [ERROR] Invalid input - 21467 +2026-02-23 06:48:56 [CRITICAL] - 26283 +2026-02-23 06:48:56 [CRITICAL] - 5290 +2026-02-23 06:48:56 [DEBUG] - 6183 +2026-02-23 06:48:56 [DEBUG] - 6478 +2026-02-23 06:48:56 [WARNING] - 5778 +2026-02-23 06:48:56 [INFO] - 20153 +2026-02-23 06:48:56 [ERROR] Out of memory - 25320 +2026-02-23 06:48:56 [ERROR] Out of memory - 16006 +2026-02-23 06:48:56 [ERROR] Disk full - 5215 +2026-02-23 06:48:56 [CRITICAL] - 30610 +2026-02-23 06:48:56 [INFO] - 2343 +2026-02-23 06:48:56 [CRITICAL] - 12186 +2026-02-23 06:48:56 [DEBUG] - 23396 +2026-02-23 06:48:56 [CRITICAL] - 20945 +2026-02-23 06:48:56 [ERROR] Segmentation fault - 27652 +2026-02-23 06:48:56 [CRITICAL] - 29478 +2026-02-23 06:48:56 [ERROR] Failed to connect - 2129 +2026-02-23 06:48:56 [INFO] - 18850 +2026-02-23 06:48:57 [DEBUG] - 25110 +2026-02-23 06:48:57 [INFO] - 15082 +2026-02-23 06:48:57 [ERROR] Failed to connect - 24049 +2026-02-23 06:48:57 [WARNING] - 25719 +2026-02-23 06:48:57 [INFO] - 6527 +2026-02-23 06:48:57 [WARNING] - 30746 +2026-02-23 06:48:57 [DEBUG] - 29867 +2026-02-23 06:48:57 [CRITICAL] - 18879 +2026-02-23 06:48:57 [WARNING] - 7205 +2026-02-23 06:48:57 [ERROR] Invalid input - 16098 +2026-02-23 06:48:57 [INFO] - 23671 +2026-02-23 06:48:57 [WARNING] - 2278 +2026-02-23 06:48:57 [WARNING] - 24964 +2026-02-23 06:48:57 [ERROR] Out of memory - 25067 +2026-02-23 06:48:57 [INFO] - 15009 +2026-02-23 06:48:57 [ERROR] Failed to connect - 1817 +2026-02-23 06:48:57 [WARNING] - 19641 +2026-02-23 06:48:57 [DEBUG] - 21423 +2026-02-23 06:48:57 [ERROR] Segmentation fault - 30643 +2026-02-23 06:48:57 [INFO] - 12756 +2026-02-23 06:48:57 [DEBUG] - 11024 +2026-02-23 06:48:57 [WARNING] - 20692 +2026-02-23 06:48:57 [WARNING] - 3300 +2026-02-23 06:48:57 [INFO] - 21940 +2026-02-23 06:48:57 [CRITICAL] - 23536 +2026-02-23 06:48:57 [DEBUG] - 32314 +2026-02-23 06:48:57 [WARNING] - 28733 +2026-02-23 06:48:57 [WARNING] - 11293 +2026-02-23 06:48:57 [INFO] - 10659 +2026-02-23 06:48:57 [WARNING] - 19696 +2026-02-23 06:48:57 [ERROR] Segmentation fault - 26846 +2026-02-23 06:48:57 [DEBUG] - 20638 +2026-02-23 06:48:57 [ERROR] Disk full - 16680 +2026-02-23 06:48:57 [DEBUG] - 30865 +2026-02-23 06:48:57 [ERROR] Out of memory - 16507 +2026-02-23 06:48:57 [ERROR] Segmentation fault - 5903 +2026-02-23 06:48:57 [INFO] - 9634 +2026-02-23 06:48:57 [INFO] - 23284 +2026-02-23 06:48:57 [CRITICAL] - 26809 +2026-02-23 06:48:57 [INFO] - 6507 +2026-02-23 06:48:57 [INFO] - 29523 +2026-02-23 06:48:57 [ERROR] Segmentation fault - 11828 +2026-02-23 06:48:57 [CRITICAL] - 23212 +2026-02-23 06:48:57 [DEBUG] - 20458 +2026-02-23 06:48:57 [CRITICAL] - 24737 +2026-02-23 06:48:57 [ERROR] Invalid input - 31754 +2026-02-23 06:48:57 [DEBUG] - 10558 +2026-02-23 06:48:57 [DEBUG] - 14213 +2026-02-23 06:48:57 [CRITICAL] - 5414 +2026-02-23 06:48:57 [DEBUG] - 1370 +2026-02-23 06:48:57 [DEBUG] - 28368 +2026-02-23 06:48:57 [WARNING] - 28711 +2026-02-23 06:48:57 [INFO] - 32406 +2026-02-23 06:48:57 [WARNING] - 321 +2026-02-23 06:48:57 [CRITICAL] - 30624 +2026-02-23 06:48:57 [ERROR] Invalid input - 27156 +2026-02-23 06:48:57 [INFO] - 24699 +2026-02-23 06:48:57 [INFO] - 13775 +2026-02-23 06:48:57 [INFO] - 21797 +2026-02-23 06:48:57 [INFO] - 14173 +2026-02-23 06:48:57 [ERROR] Failed to connect - 3382 +2026-02-23 06:48:57 [CRITICAL] - 9787 +2026-02-23 06:48:57 [ERROR] Invalid input - 245 +2026-02-23 06:48:57 [INFO] - 19819 +2026-02-23 06:48:57 [INFO] - 10145 +2026-02-23 06:48:57 [INFO] - 21615 +2026-02-23 06:48:57 [ERROR] Invalid input - 4982 +2026-02-23 06:48:57 [INFO] - 6483 +2026-02-23 06:48:57 [ERROR] Segmentation fault - 4440 +2026-02-23 06:48:57 [INFO] - 31770 +2026-02-23 06:48:57 [CRITICAL] - 15363 +2026-02-23 06:48:57 [CRITICAL] - 30613 +2026-02-23 06:48:57 [WARNING] - 7012 +2026-02-23 06:48:57 [INFO] - 2557 +2026-02-23 06:48:57 [CRITICAL] - 20835 +2026-02-23 06:48:57 [WARNING] - 32754 +2026-02-23 06:48:57 [WARNING] - 10416 +2026-02-23 06:48:57 [CRITICAL] - 15963 +2026-02-23 06:48:57 [WARNING] - 25172 +2026-02-23 06:48:57 [CRITICAL] - 26023 +2026-02-23 06:48:57 [INFO] - 6947 +2026-02-23 06:48:57 [CRITICAL] - 30026 +2026-02-23 06:48:57 [CRITICAL] - 5859 +2026-02-23 06:48:57 [CRITICAL] - 31847 +2026-02-23 06:48:57 [ERROR] Disk full - 29075 +2026-02-23 06:48:57 [WARNING] - 26483 +2026-02-23 06:48:57 [INFO] - 5074 +2026-02-23 06:48:57 [ERROR] Invalid input - 22519 +2026-02-23 06:48:57 [ERROR] Invalid input - 15064 +2026-02-23 06:48:57 [INFO] - 719 +2026-02-23 06:48:57 [DEBUG] - 27030 +2026-02-23 06:48:57 [WARNING] - 4881 +2026-02-23 06:48:57 [ERROR] Disk full - 13028 +2026-02-23 06:48:57 [INFO] - 7177 +2026-02-23 06:48:57 [WARNING] - 6897 +2026-02-23 06:48:57 [INFO] - 11270 +2026-02-23 06:48:57 [INFO] - 9383 +2026-02-23 06:48:57 [CRITICAL] - 14545 +2026-02-23 06:48:57 [CRITICAL] - 7178 +2026-02-23 06:48:57 [CRITICAL] - 124 +2026-02-23 06:48:57 [ERROR] Disk full - 3236 +2026-02-23 06:48:57 [ERROR] Disk full - 8755 +2026-02-23 06:48:57 [WARNING] - 27383 +2026-02-23 06:48:57 [WARNING] - 28736 +2026-02-23 06:48:57 [ERROR] Failed to connect - 32271 +2026-02-23 06:48:57 [DEBUG] - 9071 +2026-02-23 06:48:57 [ERROR] Invalid input - 31935 +2026-02-23 06:48:57 [DEBUG] - 18487 +2026-02-23 06:48:57 [DEBUG] - 17734 +2026-02-23 06:48:57 [DEBUG] - 9646 +2026-02-23 06:48:57 [INFO] - 26701 +2026-02-23 06:48:57 [CRITICAL] - 8741 +2026-02-23 06:48:57 [CRITICAL] - 4285 +2026-02-23 06:48:57 [WARNING] - 26727 +2026-02-23 06:48:57 [CRITICAL] - 7453 +2026-02-23 06:48:57 [INFO] - 4070 +2026-02-23 06:48:57 [DEBUG] - 15720 +2026-02-23 06:48:57 [CRITICAL] - 26214 +2026-02-23 06:48:57 [WARNING] - 26787 +2026-02-23 06:48:57 [ERROR] Out of memory - 4609 +2026-02-23 06:48:57 [WARNING] - 18266 +2026-02-23 06:48:57 [CRITICAL] - 19725 +2026-02-23 06:48:57 [DEBUG] - 25217 +2026-02-23 06:48:57 [WARNING] - 27322 +2026-02-23 06:48:57 [CRITICAL] - 32023 +2026-02-23 06:48:57 [DEBUG] - 21743 +2026-02-23 06:48:57 [WARNING] - 19002 +2026-02-23 06:48:57 [DEBUG] - 15281 +2026-02-23 06:48:57 [CRITICAL] - 7096 +2026-02-23 06:48:57 [INFO] - 29771 +2026-02-23 06:48:57 [CRITICAL] - 30082 +2026-02-23 06:48:57 [INFO] - 9877 +2026-02-23 06:48:57 [INFO] - 32378 +2026-02-23 06:48:57 [CRITICAL] - 21795 +2026-02-23 06:48:57 [CRITICAL] - 27898 +2026-02-23 06:48:57 [INFO] - 22750 +2026-02-23 06:48:57 [INFO] - 28085 +2026-02-23 06:48:57 [CRITICAL] - 22654 +2026-02-23 06:48:57 [ERROR] Invalid input - 31369 +2026-02-23 06:48:57 [WARNING] - 19497 +2026-02-23 06:48:57 [WARNING] - 7411 +2026-02-23 06:48:57 [ERROR] Out of memory - 3666 +2026-02-23 06:48:57 [CRITICAL] - 22570 +2026-02-23 06:48:57 [ERROR] Invalid input - 27726 +2026-02-23 06:48:57 [ERROR] Disk full - 85 +2026-02-23 06:48:57 [WARNING] - 17030 +2026-02-23 06:48:57 [CRITICAL] - 13287 +2026-02-23 06:48:57 [DEBUG] - 19068 +2026-02-23 06:48:57 [WARNING] - 32099 +2026-02-23 06:48:57 [DEBUG] - 24662 +2026-02-23 06:48:57 [INFO] - 7340 +2026-02-23 06:48:57 [ERROR] Disk full - 25445 +2026-02-23 06:48:57 [WARNING] - 14682 +2026-02-23 06:48:57 [WARNING] - 25038 +2026-02-23 06:48:57 [WARNING] - 9581 +2026-02-23 06:48:57 [WARNING] - 23584 +2026-02-23 06:48:57 [DEBUG] - 17122 +2026-02-23 06:48:57 [CRITICAL] - 8791 +2026-02-23 06:48:57 [ERROR] Failed to connect - 3271 +2026-02-23 06:48:57 [DEBUG] - 18381 +2026-02-23 06:48:57 [INFO] - 12910 +2026-02-23 06:48:57 [CRITICAL] - 29496 +2026-02-23 06:48:57 [CRITICAL] - 840 +2026-02-23 06:48:57 [CRITICAL] - 1698 +2026-02-23 06:48:57 [INFO] - 18560 +2026-02-23 06:48:57 [WARNING] - 4129 +2026-02-23 06:48:57 [DEBUG] - 23289 +2026-02-23 06:48:57 [CRITICAL] - 12395 +2026-02-23 06:48:57 [DEBUG] - 3259 +2026-02-23 06:48:57 [DEBUG] - 17585 +2026-02-23 06:48:57 [ERROR] Out of memory - 31393 +2026-02-23 06:48:57 [ERROR] Disk full - 27206 +2026-02-23 06:48:57 [CRITICAL] - 23924 +2026-02-23 06:48:57 [DEBUG] - 2074 +2026-02-23 06:48:57 [ERROR] Failed to connect - 2996 +2026-02-23 06:48:57 [ERROR] Out of memory - 24718 +2026-02-23 06:48:57 [CRITICAL] - 24455 +2026-02-23 06:48:57 [CRITICAL] - 19788 +2026-02-23 06:48:57 [DEBUG] - 23989 +2026-02-23 06:48:57 [WARNING] - 23778 +2026-02-23 06:48:57 [CRITICAL] - 5902 +2026-02-23 06:48:57 [DEBUG] - 3649 +2026-02-23 06:48:57 [CRITICAL] - 29999 +2026-02-23 06:48:57 [DEBUG] - 11174 +2026-02-23 06:48:57 [WARNING] - 465 +2026-02-23 06:48:57 [INFO] - 9346 +2026-02-23 06:48:57 [INFO] - 5274 +2026-02-23 06:48:57 [CRITICAL] - 5231 +2026-02-23 06:48:57 [INFO] - 32311 +2026-02-23 06:48:57 [WARNING] - 31794 +2026-02-23 06:48:57 [ERROR] Out of memory - 31391 +2026-02-23 06:48:57 [INFO] - 26988 +2026-02-23 06:48:57 [DEBUG] - 14156 +2026-02-23 06:48:57 [WARNING] - 23147 +2026-02-23 06:48:57 [CRITICAL] - 12960 +2026-02-23 06:48:57 [INFO] - 6042 +2026-02-23 06:48:57 [INFO] - 14419 +2026-02-23 06:48:57 [DEBUG] - 22769 +2026-02-23 06:48:57 [DEBUG] - 24954 +2026-02-23 06:48:57 [DEBUG] - 6513 +2026-02-23 06:48:57 [DEBUG] - 30105 +2026-02-23 06:48:57 [CRITICAL] - 22717 +2026-02-23 06:48:57 [ERROR] Failed to connect - 19788 +2026-02-23 06:48:57 [WARNING] - 18278 +2026-02-23 06:48:57 [DEBUG] - 7920 +2026-02-23 06:48:57 [WARNING] - 6110 +2026-02-23 06:48:57 [WARNING] - 20554 +2026-02-23 06:48:57 [ERROR] Invalid input - 23736 +2026-02-23 06:48:57 [ERROR] Failed to connect - 22118 +2026-02-23 06:48:57 [CRITICAL] - 16495 +2026-02-23 06:48:57 [CRITICAL] - 26240 +2026-02-23 06:48:57 [ERROR] Failed to connect - 5996 +2026-02-23 06:48:57 [ERROR] Failed to connect - 875 +2026-02-23 06:48:57 [DEBUG] - 21508 +2026-02-23 06:48:57 [DEBUG] - 21092 +2026-02-23 06:48:57 [WARNING] - 1755 +2026-02-23 06:48:57 [WARNING] - 2754 +2026-02-23 06:48:57 [INFO] - 26005 +2026-02-23 06:48:57 [DEBUG] - 17876 +2026-02-23 06:48:57 [INFO] - 6950 +2026-02-23 06:48:57 [ERROR] Out of memory - 31894 +2026-02-23 06:48:57 [CRITICAL] - 15667 +2026-02-23 06:48:57 [WARNING] - 9105 +2026-02-23 06:48:57 [CRITICAL] - 27165 +2026-02-23 06:48:57 [WARNING] - 28640 +2026-02-23 06:48:57 [INFO] - 22988 +2026-02-23 06:48:57 [DEBUG] - 3662 +2026-02-23 06:48:57 [ERROR] Disk full - 19002 +2026-02-23 06:48:57 [ERROR] Failed to connect - 5155 +2026-02-23 06:48:57 [INFO] - 32511 +2026-02-23 06:48:57 [ERROR] Disk full - 1934 +2026-02-23 06:48:57 [ERROR] Failed to connect - 5581 +2026-02-23 06:48:57 [WARNING] - 28527 +2026-02-23 06:48:57 [WARNING] - 13630 +2026-02-23 06:48:57 [CRITICAL] - 21933 +2026-02-23 06:48:57 [ERROR] Disk full - 9816 +2026-02-23 06:48:57 [DEBUG] - 27797 +2026-02-23 06:48:57 [INFO] - 19391 +2026-02-23 06:48:57 [WARNING] - 26333 +2026-02-23 06:48:57 [INFO] - 20015 +2026-02-23 06:48:57 [CRITICAL] - 5931 +2026-02-23 06:48:57 [CRITICAL] - 25437 +2026-02-23 06:48:57 [ERROR] Out of memory - 3065 +2026-02-23 06:48:57 [WARNING] - 28448 +2026-02-23 06:48:57 [INFO] - 23789 +2026-02-23 06:48:57 [INFO] - 1573 +2026-02-23 06:48:57 [DEBUG] - 13300 +2026-02-23 06:48:57 [DEBUG] - 11549 +2026-02-23 06:48:57 [INFO] - 20745 +2026-02-23 06:48:57 [DEBUG] - 17424 +2026-02-23 06:48:57 [INFO] - 21986 +2026-02-23 06:48:57 [INFO] - 25069 +2026-02-23 06:48:57 [INFO] - 17021 +2026-02-23 06:48:57 [WARNING] - 9415 +2026-02-23 06:48:57 [CRITICAL] - 31546 +2026-02-23 06:48:57 [WARNING] - 31705 +2026-02-23 06:48:57 [DEBUG] - 19678 +2026-02-23 06:48:57 [DEBUG] - 2728 +2026-02-23 06:48:57 [ERROR] Out of memory - 32072 +2026-02-23 06:48:57 [INFO] - 18240 +2026-02-23 06:48:57 [INFO] - 2741 +2026-02-23 06:48:57 [ERROR] Out of memory - 9288 +2026-02-23 06:48:57 [CRITICAL] - 21966 +2026-02-23 06:48:57 [CRITICAL] - 31806 +2026-02-23 06:48:57 [CRITICAL] - 30181 +2026-02-23 06:48:57 [DEBUG] - 10867 +2026-02-23 06:48:57 [DEBUG] - 15069 +2026-02-23 06:48:57 [INFO] - 32418 +2026-02-23 06:48:57 [DEBUG] - 12028 +2026-02-23 06:48:57 [WARNING] - 31921 +2026-02-23 06:48:57 [WARNING] - 28246 +2026-02-23 06:48:57 [CRITICAL] - 17140 +2026-02-23 06:48:57 [ERROR] Segmentation fault - 27104 +2026-02-23 06:48:57 [WARNING] - 14689 +2026-02-23 06:48:57 [WARNING] - 3015 +2026-02-23 06:48:57 [CRITICAL] - 20739 +2026-02-23 06:48:57 [DEBUG] - 7207 +2026-02-23 06:48:57 [ERROR] Invalid input - 8158 +2026-02-23 06:48:57 [WARNING] - 4003 +2026-02-23 06:48:57 [ERROR] Out of memory - 6795 +2026-02-23 06:48:57 [WARNING] - 18697 +2026-02-23 06:48:57 [DEBUG] - 28780 +2026-02-23 06:48:57 [CRITICAL] - 18543 +2026-02-23 06:48:57 [ERROR] Failed to connect - 5015 +2026-02-23 06:48:57 [WARNING] - 13622 +2026-02-23 06:48:57 [ERROR] Invalid input - 22801 +2026-02-23 06:48:57 [WARNING] - 19588 +2026-02-23 06:48:57 [WARNING] - 31535 +2026-02-23 06:48:57 [CRITICAL] - 24277 +2026-02-23 06:48:57 [INFO] - 17959 +2026-02-23 06:48:57 [DEBUG] - 19453 +2026-02-23 06:48:57 [DEBUG] - 2957 +2026-02-23 06:48:57 [CRITICAL] - 6292 +2026-02-23 06:48:57 [CRITICAL] - 14075 +2026-02-23 06:48:57 [WARNING] - 2261 +2026-02-23 06:48:57 [ERROR] Out of memory - 27283 +2026-02-23 06:48:57 [ERROR] Failed to connect - 1235 +2026-02-23 06:48:57 [DEBUG] - 22690 +2026-02-23 06:48:57 [INFO] - 27293 +2026-02-23 06:48:57 [DEBUG] - 11319 +2026-02-23 06:48:57 [WARNING] - 1045 +2026-02-23 06:48:57 [ERROR] Failed to connect - 25622 +2026-02-23 06:48:57 [INFO] - 2620 +2026-02-23 06:48:57 [INFO] - 18686 +2026-02-23 06:48:57 [DEBUG] - 22500 +2026-02-23 06:48:57 [INFO] - 6090 +2026-02-23 06:48:57 [INFO] - 29408 +2026-02-23 06:48:57 [DEBUG] - 25984 +2026-02-23 06:48:57 [INFO] - 5479 +2026-02-23 06:48:57 [CRITICAL] - 7367 +2026-02-23 06:48:57 [DEBUG] - 21399 +2026-02-23 06:48:57 [ERROR] Disk full - 12211 +2026-02-23 06:48:57 [CRITICAL] - 12529 +2026-02-23 06:48:57 [INFO] - 1232 +2026-02-23 06:48:57 [CRITICAL] - 22922 +2026-02-23 06:48:57 [WARNING] - 20807 +2026-02-23 06:48:57 [INFO] - 1947 +2026-02-23 06:48:57 [DEBUG] - 4811 +2026-02-23 06:48:57 [ERROR] Invalid input - 7628 +2026-02-23 06:48:57 [WARNING] - 32394 +2026-02-23 06:48:57 [CRITICAL] - 9281 +2026-02-23 06:48:57 [WARNING] - 2959 +2026-02-23 06:48:57 [DEBUG] - 13427 +2026-02-23 06:48:57 [WARNING] - 2551 +2026-02-23 06:48:57 [WARNING] - 11243 +2026-02-23 06:48:57 [CRITICAL] - 31067 +2026-02-23 06:48:57 [DEBUG] - 1179 +2026-02-23 06:48:57 [CRITICAL] - 25102 +2026-02-23 06:48:57 [CRITICAL] - 21156 +2026-02-23 06:48:57 [CRITICAL] - 10853 +2026-02-23 06:48:57 [DEBUG] - 28845 +2026-02-23 06:48:57 [INFO] - 3921 +2026-02-23 06:48:57 [DEBUG] - 4270 +2026-02-23 06:48:57 [INFO] - 32559 +2026-02-23 06:48:57 [CRITICAL] - 11247 +2026-02-23 06:48:57 [INFO] - 7977 +2026-02-23 06:48:57 [DEBUG] - 6767 +2026-02-23 06:48:57 [WARNING] - 22460 +2026-02-23 06:48:57 [ERROR] Failed to connect - 8975 +2026-02-23 06:48:57 [WARNING] - 18133 +2026-02-23 06:48:57 [ERROR] Out of memory - 28142 +2026-02-23 06:48:57 [ERROR] Out of memory - 15648 +2026-02-23 06:48:57 [ERROR] Failed to connect - 1164 +2026-02-23 06:48:57 [INFO] - 3848 +2026-02-23 06:48:57 [INFO] - 9981 +2026-02-23 06:48:57 [WARNING] - 24400 +2026-02-23 06:48:57 [WARNING] - 9336 +2026-02-23 06:48:57 [CRITICAL] - 24105 +2026-02-23 06:48:57 [WARNING] - 16771 +2026-02-23 06:48:57 [ERROR] Invalid input - 7972 +2026-02-23 06:48:57 [INFO] - 13544 +2026-02-23 06:48:57 [CRITICAL] - 29773 +2026-02-23 06:48:57 [DEBUG] - 19352 +2026-02-23 06:48:57 [ERROR] Invalid input - 5105 +2026-02-23 06:48:57 [DEBUG] - 10020 +2026-02-23 06:48:57 [ERROR] Disk full - 22097 +2026-02-23 06:48:57 [DEBUG] - 30080 +2026-02-23 06:48:57 [CRITICAL] - 30983 +2026-02-23 06:48:57 [CRITICAL] - 4324 +2026-02-23 06:48:57 [CRITICAL] - 26988 +2026-02-23 06:48:57 [INFO] - 9896 +2026-02-23 06:48:57 [DEBUG] - 17634 +2026-02-23 06:48:57 [INFO] - 12510 +2026-02-23 06:48:57 [WARNING] - 30113 +2026-02-23 06:48:57 [ERROR] Failed to connect - 12999 +2026-02-23 06:48:57 [DEBUG] - 19854 +2026-02-23 06:48:57 [INFO] - 12521 +2026-02-23 06:48:57 [ERROR] Invalid input - 22597 +2026-02-23 06:48:57 [DEBUG] - 18323 +2026-02-23 06:48:57 [DEBUG] - 24489 +2026-02-23 06:48:57 [WARNING] - 25662 +2026-02-23 06:48:57 [CRITICAL] - 23261 +2026-02-23 06:48:57 [CRITICAL] - 24760 +2026-02-23 06:48:57 [DEBUG] - 23415 +2026-02-23 06:48:57 [CRITICAL] - 19972 +2026-02-23 06:48:57 [INFO] - 10554 +2026-02-23 06:48:57 [CRITICAL] - 30242 +2026-02-23 06:48:57 [INFO] - 17836 +2026-02-23 06:48:57 [DEBUG] - 30725 +2026-02-23 06:48:57 [INFO] - 24690 +2026-02-23 06:48:57 [CRITICAL] - 442 +2026-02-23 06:48:57 [WARNING] - 17166 +2026-02-23 06:48:57 [INFO] - 25035 +2026-02-23 06:48:57 [DEBUG] - 24399 +2026-02-23 06:48:57 [DEBUG] - 22456 +2026-02-23 06:48:57 [DEBUG] - 25577 +2026-02-23 06:48:57 [WARNING] - 19298 +2026-02-23 06:48:57 [DEBUG] - 9440 +2026-02-23 06:48:57 [INFO] - 11741 +2026-02-23 06:48:57 [INFO] - 24971 +2026-02-23 06:48:57 [INFO] - 31091 +2026-02-23 06:48:57 [WARNING] - 15876 +2026-02-23 06:48:57 [INFO] - 26664 +2026-02-23 06:48:57 [ERROR] Failed to connect - 28362 +2026-02-23 06:48:57 [CRITICAL] - 16208 +2026-02-23 06:48:57 [CRITICAL] - 22786 +2026-02-23 06:48:57 [WARNING] - 5316 +2026-02-23 06:48:57 [DEBUG] - 29131 +2026-02-23 06:48:57 [WARNING] - 1265 +2026-02-23 06:48:57 [WARNING] - 29408 +2026-02-23 06:48:57 [ERROR] Segmentation fault - 17835 +2026-02-23 06:48:57 [DEBUG] - 10162 +2026-02-23 06:48:57 [CRITICAL] - 14079 +2026-02-23 06:48:57 [ERROR] Out of memory - 28050 +2026-02-23 06:48:57 [ERROR] Disk full - 16545 +2026-02-23 06:48:57 [WARNING] - 29313 +2026-02-23 06:48:57 [WARNING] - 19572 +2026-02-23 06:48:57 [CRITICAL] - 7287 +2026-02-23 06:48:57 [ERROR] Failed to connect - 4303 +2026-02-23 06:48:57 [WARNING] - 25313 +2026-02-23 06:48:57 [INFO] - 6910 +2026-02-23 06:48:57 [DEBUG] - 19716 +2026-02-23 06:48:57 [DEBUG] - 16335 +2026-02-23 06:48:57 [CRITICAL] - 24446 +2026-02-23 06:48:57 [ERROR] Disk full - 12114 +2026-02-23 06:48:57 [WARNING] - 19933 +2026-02-23 06:48:57 [CRITICAL] - 11213 +2026-02-23 06:48:57 [CRITICAL] - 27562 +2026-02-23 06:48:57 [ERROR] Disk full - 9881 +2026-02-23 06:48:57 [ERROR] Out of memory - 31397 +2026-02-23 06:48:57 [ERROR] Out of memory - 21768 +2026-02-23 06:48:57 [WARNING] - 9872 +2026-02-23 06:48:57 [WARNING] - 10290 +2026-02-23 06:48:57 [WARNING] - 22888 +2026-02-23 06:48:57 [CRITICAL] - 16200 +2026-02-23 06:48:57 [ERROR] Disk full - 22899 +2026-02-23 06:48:57 [CRITICAL] - 20545 +2026-02-23 06:48:57 [INFO] - 30007 +2026-02-23 06:48:57 [WARNING] - 29308 +2026-02-23 06:48:57 [DEBUG] - 14984 +2026-02-23 06:48:57 [INFO] - 13702 +2026-02-23 06:48:57 [ERROR] Segmentation fault - 31900 +2026-02-23 06:48:57 [ERROR] Disk full - 2802 +2026-02-23 06:48:57 [WARNING] - 13963 +2026-02-23 06:48:57 [INFO] - 21545 +2026-02-23 06:48:57 [CRITICAL] - 5682 +2026-02-23 06:48:57 [DEBUG] - 29481 +2026-02-23 06:48:57 [DEBUG] - 19837 +2026-02-23 06:48:57 [INFO] - 21976 +2026-02-23 06:48:57 [ERROR] Failed to connect - 29086 +2026-02-23 06:48:57 [INFO] - 157 +2026-02-23 06:48:57 [ERROR] Invalid input - 31416 +2026-02-23 06:48:57 [CRITICAL] - 15409 +2026-02-23 06:48:57 [WARNING] - 29542 +2026-02-23 06:48:57 [DEBUG] - 24559 +2026-02-23 06:48:57 [WARNING] - 2592 +2026-02-23 06:48:57 [CRITICAL] - 17408 +2026-02-23 06:48:57 [WARNING] - 6408 +2026-02-23 06:48:57 [ERROR] Invalid input - 782 +2026-02-23 06:48:57 [WARNING] - 1268 +2026-02-23 06:48:57 [CRITICAL] - 11000 +2026-02-23 06:48:57 [DEBUG] - 9625 +2026-02-23 06:48:57 [INFO] - 5657 +2026-02-23 06:48:57 [ERROR] Disk full - 27654 +2026-02-23 06:48:57 [WARNING] - 11686 +2026-02-23 06:48:57 [CRITICAL] - 6899 +2026-02-23 06:48:57 [INFO] - 9515 +2026-02-23 06:48:57 [ERROR] Out of memory - 12433 +2026-02-23 06:48:57 [CRITICAL] - 9611 +2026-02-23 06:48:57 [CRITICAL] - 17044 +2026-02-23 06:48:57 [CRITICAL] - 15987 +2026-02-23 06:48:57 [WARNING] - 27916 +2026-02-23 06:48:57 [DEBUG] - 26732 +2026-02-23 06:48:57 [WARNING] - 9011 +2026-02-23 06:48:57 [DEBUG] - 16925 +2026-02-23 06:48:57 [CRITICAL] - 18887 +2026-02-23 06:48:57 [INFO] - 4689 +2026-02-23 06:48:57 [WARNING] - 32359 +2026-02-23 06:48:57 [WARNING] - 29643 +2026-02-23 06:48:57 [INFO] - 11663 +2026-02-23 06:48:57 [CRITICAL] - 29947 +2026-02-23 06:48:57 [CRITICAL] - 22105 +2026-02-23 06:48:57 [WARNING] - 9356 +2026-02-23 06:48:57 [CRITICAL] - 32627 +2026-02-23 06:48:57 [ERROR] Failed to connect - 8344 +2026-02-23 06:48:57 [WARNING] - 24395 +2026-02-23 06:48:57 [DEBUG] - 4602 +2026-02-23 06:48:57 [ERROR] Disk full - 23002 +2026-02-23 06:48:57 [WARNING] - 31380 +2026-02-23 06:48:57 [WARNING] - 6887 +2026-02-23 06:48:57 [WARNING] - 11369 +2026-02-23 06:48:57 [CRITICAL] - 29271 +2026-02-23 06:48:57 [ERROR] Segmentation fault - 26787 +2026-02-23 06:48:57 [CRITICAL] - 19377 +2026-02-23 06:48:57 [INFO] - 31140 +2026-02-23 06:48:57 [CRITICAL] - 11497 +2026-02-23 06:48:57 [CRITICAL] - 31802 +2026-02-23 06:48:57 [INFO] - 22777 +2026-02-23 06:48:57 [WARNING] - 2689 +2026-02-23 06:48:57 [WARNING] - 3194 +2026-02-23 06:48:57 [WARNING] - 3188 +2026-02-23 06:48:57 [CRITICAL] - 10006 +2026-02-23 06:48:57 [CRITICAL] - 3341 +2026-02-23 06:48:57 [WARNING] - 7822 +2026-02-23 06:48:57 [INFO] - 22536 +2026-02-23 06:48:57 [CRITICAL] - 18855 +2026-02-23 06:48:57 [INFO] - 6006 +2026-02-23 06:48:57 [CRITICAL] - 12882 +2026-02-23 06:48:57 [WARNING] - 14276 +2026-02-23 06:48:57 [DEBUG] - 14679 +2026-02-23 06:48:57 [CRITICAL] - 28718 +2026-02-23 06:48:57 [CRITICAL] - 20800 +2026-02-23 06:48:57 [DEBUG] - 28852 +2026-02-23 06:48:57 [DEBUG] - 23405 +2026-02-23 06:48:57 [WARNING] - 20395 +2026-02-23 06:48:57 [CRITICAL] - 8602 +2026-02-23 06:48:57 [CRITICAL] - 15996 +2026-02-23 06:48:57 [ERROR] Failed to connect - 11876 +2026-02-23 06:48:57 [DEBUG] - 11578 +2026-02-23 06:48:57 [INFO] - 30951 +2026-02-23 06:48:57 [ERROR] Invalid input - 32506 +2026-02-23 06:48:57 [DEBUG] - 22804 +2026-02-23 06:48:57 [ERROR] Segmentation fault - 16263 +2026-02-23 06:48:57 [ERROR] Disk full - 23934 +2026-02-23 06:48:57 [INFO] - 26797 +2026-02-23 06:48:57 [INFO] - 2906 +2026-02-23 06:48:57 [ERROR] Invalid input - 31341 +2026-02-23 06:48:57 [CRITICAL] - 5875 +2026-02-23 06:48:57 [ERROR] Segmentation fault - 2368 +2026-02-23 06:48:57 [INFO] - 19307 +2026-02-23 06:48:57 [CRITICAL] - 15107 +2026-02-23 06:48:57 [ERROR] Segmentation fault - 1978 +2026-02-23 06:48:57 [INFO] - 14564 +2026-02-23 06:48:57 [INFO] - 8194 +2026-02-23 06:48:57 [CRITICAL] - 22705 +2026-02-23 06:48:57 [DEBUG] - 20934 +2026-02-23 06:48:57 [CRITICAL] - 10076 +2026-02-23 06:48:57 [ERROR] Out of memory - 6218 +2026-02-23 06:48:57 [INFO] - 7543 +2026-02-23 06:48:57 [INFO] - 3513 +2026-02-23 06:48:57 [INFO] - 20049 +2026-02-23 06:48:57 [DEBUG] - 21996 +2026-02-23 06:48:57 [WARNING] - 28186 +2026-02-23 06:48:57 [DEBUG] - 20678 +2026-02-23 06:48:57 [DEBUG] - 13256 +2026-02-23 06:48:57 [CRITICAL] - 6419 +2026-02-23 06:48:57 [DEBUG] - 12447 +2026-02-23 06:48:57 [DEBUG] - 13483 +2026-02-23 06:48:57 [INFO] - 23481 +2026-02-23 06:48:57 [ERROR] Disk full - 26257 +2026-02-23 06:48:57 [INFO] - 10299 +2026-02-23 06:48:57 [CRITICAL] - 31314 +2026-02-23 06:48:57 [DEBUG] - 8808 +2026-02-23 06:48:57 [DEBUG] - 13366 +2026-02-23 06:48:57 [DEBUG] - 19824 +2026-02-23 06:48:57 [CRITICAL] - 19405 +2026-02-23 06:48:57 [DEBUG] - 1969 +2026-02-23 06:48:57 [CRITICAL] - 20700 +2026-02-23 06:48:57 [WARNING] - 8411 +2026-02-23 06:48:57 [DEBUG] - 1267 +2026-02-23 06:48:57 [ERROR] Segmentation fault - 20154 +2026-02-23 06:48:57 [DEBUG] - 22997 +2026-02-23 06:48:57 [DEBUG] - 23895 +2026-02-23 06:48:57 [CRITICAL] - 26041 +2026-02-23 06:48:57 [WARNING] - 996 +2026-02-23 06:48:57 [CRITICAL] - 27895 +2026-02-23 06:48:57 [CRITICAL] - 30989 +2026-02-23 06:48:57 [ERROR] Failed to connect - 17357 +2026-02-23 06:48:57 [WARNING] - 10378 +2026-02-23 06:48:57 [ERROR] Segmentation fault - 7919 +2026-02-23 06:48:57 [CRITICAL] - 16761 +2026-02-23 06:48:57 [WARNING] - 28921 +2026-02-23 06:48:57 [WARNING] - 23060 +2026-02-23 06:48:57 [DEBUG] - 637 +2026-02-23 06:48:57 [DEBUG] - 18726 +2026-02-23 06:48:57 [WARNING] - 7015 +2026-02-23 06:48:57 [DEBUG] - 31783 +2026-02-23 06:48:57 [DEBUG] - 2376 +2026-02-23 06:48:57 [WARNING] - 27592 +2026-02-23 06:48:57 [CRITICAL] - 13233 +2026-02-23 06:48:57 [ERROR] Failed to connect - 3841 +2026-02-23 06:48:57 [ERROR] Failed to connect - 3773 +2026-02-23 06:48:57 [WARNING] - 19955 +2026-02-23 06:48:57 [CRITICAL] - 3151 +2026-02-23 06:48:57 [WARNING] - 28303 +2026-02-23 06:48:57 [WARNING] - 18679 +2026-02-23 06:48:57 [WARNING] - 16439 +2026-02-23 06:48:57 [DEBUG] - 13777 +2026-02-23 06:48:57 [DEBUG] - 5747 +2026-02-23 06:48:57 [INFO] - 20068 +2026-02-23 06:48:57 [CRITICAL] - 14633 +2026-02-23 06:48:57 [WARNING] - 23516 +2026-02-23 06:48:57 [ERROR] Failed to connect - 7698 +2026-02-23 06:48:57 [CRITICAL] - 12972 +2026-02-23 06:48:57 [WARNING] - 17181 +2026-02-23 06:48:57 [CRITICAL] - 27973 +2026-02-23 06:48:57 [DEBUG] - 5636 +2026-02-23 06:48:57 [CRITICAL] - 23527 +2026-02-23 06:48:57 [WARNING] - 21067 +2026-02-23 06:48:57 [DEBUG] - 19062 +2026-02-23 06:48:57 [ERROR] Invalid input - 19278 +2026-02-23 06:48:57 [DEBUG] - 18365 +2026-02-23 06:48:57 [DEBUG] - 32402 +2026-02-23 06:48:57 [WARNING] - 14721 +2026-02-23 06:48:57 [DEBUG] - 28214 +2026-02-23 06:48:57 [CRITICAL] - 4051 +2026-02-23 06:48:57 [ERROR] Disk full - 28060 +2026-02-23 06:48:57 [INFO] - 10828 +2026-02-23 06:48:57 [CRITICAL] - 21448 +2026-02-23 06:48:57 [CRITICAL] - 23436 +2026-02-23 06:48:57 [DEBUG] - 710 +2026-02-23 06:48:57 [WARNING] - 21742 +2026-02-23 06:48:57 [INFO] - 6857 +2026-02-23 06:48:57 [ERROR] Failed to connect - 17016 +2026-02-23 06:48:57 [WARNING] - 17117 +2026-02-23 06:48:57 [DEBUG] - 25577 +2026-02-23 06:48:57 [CRITICAL] - 22558 +2026-02-23 06:48:57 [CRITICAL] - 25494 +2026-02-23 06:48:57 [INFO] - 32547 +2026-02-23 06:48:57 [INFO] - 28375 +2026-02-23 06:48:57 [CRITICAL] - 24062 +2026-02-23 06:48:57 [ERROR] Segmentation fault - 24213 +2026-02-23 06:48:57 [ERROR] Failed to connect - 23954 +2026-02-23 06:48:57 [WARNING] - 28622 +2026-02-23 06:48:57 [DEBUG] - 18435 +2026-02-23 06:48:57 [ERROR] Segmentation fault - 281 +2026-02-23 06:48:57 [INFO] - 18239 +2026-02-23 06:48:57 [INFO] - 23390 +2026-02-23 06:48:57 [INFO] - 14276 +2026-02-23 06:48:57 [CRITICAL] - 10161 +2026-02-23 06:48:57 [DEBUG] - 15238 +2026-02-23 06:48:57 [CRITICAL] - 18048 +2026-02-23 06:48:57 [WARNING] - 30341 +2026-02-23 06:48:57 [DEBUG] - 15713 +2026-02-23 06:48:57 [ERROR] Segmentation fault - 31775 +2026-02-23 06:48:57 [INFO] - 6841 +2026-02-23 06:48:57 [ERROR] Out of memory - 22092 +2026-02-23 06:48:57 [INFO] - 8743 +2026-02-23 06:48:57 [DEBUG] - 20534 +2026-02-23 06:48:57 [CRITICAL] - 32669 +2026-02-23 06:48:57 [DEBUG] - 15874 +2026-02-23 06:48:57 [ERROR] Invalid input - 13654 +2026-02-23 06:48:57 [CRITICAL] - 29364 +2026-02-23 06:48:57 [INFO] - 1994 +2026-02-23 06:48:57 [CRITICAL] - 21227 +2026-02-23 06:48:57 [DEBUG] - 11524 +2026-02-23 06:48:57 [ERROR] Segmentation fault - 11820 +2026-02-23 06:48:57 [ERROR] Invalid input - 2623 +2026-02-23 06:48:57 [INFO] - 17574 +2026-02-23 06:48:57 [CRITICAL] - 1518 +2026-02-23 06:48:57 [WARNING] - 26304 +2026-02-23 06:48:57 [DEBUG] - 28572 +2026-02-23 06:48:57 [WARNING] - 1191 +2026-02-23 06:48:57 [CRITICAL] - 29345 +2026-02-23 06:48:57 [DEBUG] - 3100 +2026-02-23 06:48:57 [ERROR] Segmentation fault - 4245 +2026-02-23 06:48:57 [CRITICAL] - 22290 +2026-02-23 06:48:57 [DEBUG] - 2019 +2026-02-23 06:48:57 [CRITICAL] - 13703 +2026-02-23 06:48:57 [INFO] - 4162 +2026-02-23 06:48:57 [WARNING] - 24757 +2026-02-23 06:48:57 [CRITICAL] - 21914 +2026-02-23 06:48:57 [DEBUG] - 4882 +2026-02-23 06:48:57 [INFO] - 6201 +2026-02-23 06:48:57 [DEBUG] - 20837 +2026-02-23 06:48:57 [ERROR] Out of memory - 6144 +2026-02-23 06:48:57 [DEBUG] - 8261 +2026-02-23 06:48:57 [DEBUG] - 30246 +2026-02-23 06:48:57 [DEBUG] - 20094 +2026-02-23 06:48:57 [ERROR] Failed to connect - 12586 +2026-02-23 06:48:57 [ERROR] Failed to connect - 13030 +2026-02-23 06:48:57 [DEBUG] - 13407 +2026-02-23 06:48:57 [CRITICAL] - 8429 +2026-02-23 06:48:57 [INFO] - 22212 +2026-02-23 06:48:57 [ERROR] Out of memory - 31866 +2026-02-23 06:48:57 [INFO] - 199 +2026-02-23 06:48:57 [INFO] - 28029 +2026-02-23 06:48:57 [DEBUG] - 22356 +2026-02-23 06:48:57 [WARNING] - 17842 +2026-02-23 06:48:57 [INFO] - 8688 +2026-02-23 06:48:57 [CRITICAL] - 376 +2026-02-23 06:48:57 [CRITICAL] - 4635 +2026-02-23 06:48:57 [WARNING] - 11794 +2026-02-23 06:48:57 [INFO] - 14458 +2026-02-23 06:48:57 [WARNING] - 2631 +2026-02-23 06:48:57 [WARNING] - 19647 +2026-02-23 06:48:57 [WARNING] - 18933 +2026-02-23 06:48:57 [DEBUG] - 19309 +2026-02-23 06:48:57 [DEBUG] - 16838 +2026-02-23 06:48:57 [ERROR] Disk full - 23662 +2026-02-23 06:48:57 [DEBUG] - 15962 +2026-02-23 06:48:57 [WARNING] - 1081 +2026-02-23 06:48:57 [WARNING] - 22608 +2026-02-23 06:48:57 [WARNING] - 1337 +2026-02-23 06:48:57 [DEBUG] - 1611 +2026-02-23 06:48:57 [CRITICAL] - 7914 +2026-02-23 06:48:57 [DEBUG] - 217 +2026-02-23 06:48:57 [CRITICAL] - 2977 +2026-02-23 06:48:57 [INFO] - 5901 +2026-02-23 06:48:57 [CRITICAL] - 29974 +2026-02-23 06:48:57 [CRITICAL] - 31152 +2026-02-23 06:48:57 [WARNING] - 22622 +2026-02-23 06:48:57 [WARNING] - 14913 +2026-02-23 06:48:57 [DEBUG] - 4297 +2026-02-23 06:48:57 [WARNING] - 5277 +2026-02-23 06:48:57 [DEBUG] - 31704 +2026-02-23 06:48:57 [INFO] - 19657 +2026-02-23 06:48:57 [WARNING] - 18513 +2026-02-23 06:48:57 [ERROR] Invalid input - 16739 +2026-02-23 06:48:57 [CRITICAL] - 9499 +2026-02-23 06:48:57 [DEBUG] - 5343 +2026-02-23 06:48:57 [WARNING] - 28643 +2026-02-23 06:48:57 [DEBUG] - 30620 +2026-02-23 06:48:57 [DEBUG] - 23061 +2026-02-23 06:48:57 [CRITICAL] - 1983 +2026-02-23 06:48:57 [INFO] - 2770 +2026-02-23 06:48:57 [INFO] - 27112 +2026-02-23 06:48:57 [INFO] - 23234 +2026-02-23 06:48:57 [DEBUG] - 290 +2026-02-23 06:48:57 [WARNING] - 29806 +2026-02-23 06:48:57 [CRITICAL] - 12260 +2026-02-23 06:48:57 [DEBUG] - 20786 +2026-02-23 06:48:57 [CRITICAL] - 27362 +2026-02-23 06:48:57 [CRITICAL] - 22803 +2026-02-23 06:48:57 [INFO] - 9326 +2026-02-23 06:48:57 [CRITICAL] - 26508 +2026-02-23 06:48:57 [INFO] - 29150 +2026-02-23 06:48:57 [INFO] - 4021 +2026-02-23 06:48:57 [CRITICAL] - 17960 +2026-02-23 06:48:57 [CRITICAL] - 27442 +2026-02-23 06:48:57 [DEBUG] - 9641 +2026-02-23 06:48:57 [DEBUG] - 26354 +2026-02-23 06:48:57 [CRITICAL] - 5803 +2026-02-23 06:48:57 [CRITICAL] - 18191 +2026-02-23 06:48:57 [INFO] - 29860 +2026-02-23 06:48:57 [ERROR] Segmentation fault - 25657 +2026-02-23 06:48:57 [INFO] - 1671 +2026-02-23 06:48:57 [CRITICAL] - 16048 +2026-02-23 06:48:57 [CRITICAL] - 24312 +2026-02-23 06:48:57 [CRITICAL] - 21452 +2026-02-23 06:48:57 [ERROR] Out of memory - 29127 +2026-02-23 06:48:57 [DEBUG] - 24768 +2026-02-23 06:48:57 [CRITICAL] - 32393 +2026-02-23 06:48:57 [DEBUG] - 2305 +2026-02-23 06:48:57 [INFO] - 2646 +2026-02-23 06:48:57 [ERROR] Out of memory - 16494 +2026-02-23 06:48:57 [WARNING] - 32026 +2026-02-23 06:48:57 [WARNING] - 2826 +2026-02-23 06:48:57 [CRITICAL] - 1419 +2026-02-23 06:48:57 [WARNING] - 6502 +2026-02-23 06:48:57 [ERROR] Segmentation fault - 3484 +2026-02-23 06:48:57 [INFO] - 15694 +2026-02-23 06:48:57 [DEBUG] - 1134 +2026-02-23 06:48:57 [CRITICAL] - 32035 +2026-02-23 06:48:57 [DEBUG] - 29531 +2026-02-23 06:48:57 [WARNING] - 7894 +2026-02-23 06:48:57 [CRITICAL] - 13653 +2026-02-23 06:48:57 [INFO] - 16775 +2026-02-23 06:48:57 [DEBUG] - 11781 +2026-02-23 06:48:57 [ERROR] Out of memory - 22108 +2026-02-23 06:48:57 [DEBUG] - 18346 +2026-02-23 06:48:57 [CRITICAL] - 15474 +2026-02-23 06:48:57 [DEBUG] - 7437 +2026-02-23 06:48:57 [CRITICAL] - 11778 +2026-02-23 06:48:57 [INFO] - 23489 +2026-02-23 06:48:57 [INFO] - 10779 +2026-02-23 06:48:57 [WARNING] - 14741 +2026-02-23 06:48:58 [CRITICAL] - 28105 +2026-02-23 06:48:58 [INFO] - 28700 +2026-02-23 06:48:58 [CRITICAL] - 24067 +2026-02-23 06:48:58 [CRITICAL] - 32487 +2026-02-23 06:48:58 [DEBUG] - 17822 +2026-02-23 06:48:58 [INFO] - 10124 +2026-02-23 06:48:58 [CRITICAL] - 22871 +2026-02-23 06:48:58 [DEBUG] - 2787 +2026-02-23 06:48:58 [CRITICAL] - 7515 +2026-02-23 06:48:58 [DEBUG] - 7531 +2026-02-23 06:48:58 [DEBUG] - 4574 +2026-02-23 06:48:58 [WARNING] - 19367 +2026-02-23 06:48:58 [ERROR] Out of memory - 28300 +2026-02-23 06:48:58 [DEBUG] - 17838 +2026-02-23 06:48:58 [WARNING] - 26087 +2026-02-23 06:48:58 [INFO] - 13945 +2026-02-23 06:48:58 [ERROR] Failed to connect - 2653 +2026-02-23 06:48:58 [WARNING] - 7093 +2026-02-23 06:48:58 [ERROR] Segmentation fault - 344 +2026-02-23 06:48:58 [WARNING] - 5338 +2026-02-23 06:48:58 [WARNING] - 18446 +2026-02-23 06:48:58 [INFO] - 9251 +2026-02-23 06:48:58 [WARNING] - 9891 +2026-02-23 06:48:58 [WARNING] - 11515 +2026-02-23 06:48:58 [DEBUG] - 29572 +2026-02-23 06:48:58 [DEBUG] - 9741 +2026-02-23 06:48:58 [ERROR] Out of memory - 16203 +2026-02-23 06:48:58 [CRITICAL] - 31828 +2026-02-23 06:48:58 [CRITICAL] - 18140 +2026-02-23 06:48:58 [ERROR] Disk full - 18529 +2026-02-23 06:48:58 [DEBUG] - 11860 +2026-02-23 06:48:58 [WARNING] - 29826 +2026-02-23 06:48:58 [WARNING] - 5613 +2026-02-23 06:48:58 [WARNING] - 26511 +2026-02-23 06:48:58 [ERROR] Segmentation fault - 1770 +2026-02-23 06:48:58 [DEBUG] - 10845 +2026-02-23 06:48:58 [ERROR] Failed to connect - 10462 +2026-02-23 06:48:58 [DEBUG] - 7841 +2026-02-23 06:48:58 [DEBUG] - 30732 +2026-02-23 06:48:58 [INFO] - 24375 +2026-02-23 06:48:58 [ERROR] Failed to connect - 10014 +2026-02-23 06:48:58 [INFO] - 19626 +2026-02-23 06:48:58 [DEBUG] - 26878 +2026-02-23 06:48:58 [INFO] - 4425 +2026-02-23 06:48:58 [INFO] - 9901 +2026-02-23 06:48:58 [CRITICAL] - 847 +2026-02-23 06:48:58 [CRITICAL] - 15806 +2026-02-23 06:48:58 [DEBUG] - 4025 +2026-02-23 06:48:58 [INFO] - 27324 +2026-02-23 06:48:58 [ERROR] Disk full - 17429 +2026-02-23 06:48:58 [ERROR] Segmentation fault - 18872 +2026-02-23 06:48:58 [WARNING] - 27197 +2026-02-23 06:48:58 [INFO] - 1956 +2026-02-23 06:48:58 [CRITICAL] - 20457 +2026-02-23 06:48:58 [INFO] - 20317 +2026-02-23 06:48:58 [WARNING] - 24683 +2026-02-23 06:48:58 [INFO] - 30054 +2026-02-23 06:48:58 [CRITICAL] - 23728 +2026-02-23 06:48:58 [WARNING] - 1667 +2026-02-23 06:48:58 [DEBUG] - 5618 +2026-02-23 06:48:58 [ERROR] Invalid input - 30550 +2026-02-23 06:48:58 [INFO] - 26532 +2026-02-23 06:48:58 [DEBUG] - 3309 +2026-02-23 06:48:58 [WARNING] - 30404 +2026-02-23 06:48:58 [CRITICAL] - 2879 +2026-02-23 06:48:58 [ERROR] Out of memory - 5942 +2026-02-23 06:48:58 [INFO] - 12531 +2026-02-23 06:48:58 [INFO] - 12580 +2026-02-23 06:48:58 [ERROR] Disk full - 23652 +2026-02-23 06:48:58 [INFO] - 13913 +2026-02-23 06:48:58 [WARNING] - 10118 +2026-02-23 06:48:58 [INFO] - 25228 +2026-02-23 06:48:58 [WARNING] - 14663 +2026-02-23 06:48:58 [WARNING] - 22474 +2026-02-23 06:48:58 [INFO] - 25514 +2026-02-23 06:48:58 [WARNING] - 17535 +2026-02-23 06:48:58 [INFO] - 6139 +2026-02-23 06:48:58 [WARNING] - 6438 +2026-02-23 06:48:58 [INFO] - 28444 +2026-02-23 06:48:58 [CRITICAL] - 21644 +2026-02-23 06:48:58 [WARNING] - 20348 +2026-02-23 06:48:58 [DEBUG] - 25405 +2026-02-23 06:48:58 [CRITICAL] - 15092 +2026-02-23 06:48:58 [CRITICAL] - 8650 +2026-02-23 06:48:58 [DEBUG] - 4946 +2026-02-23 06:48:58 [ERROR] Failed to connect - 21081 +2026-02-23 06:48:58 [INFO] - 31790 +2026-02-23 06:48:58 [INFO] - 17837 +2026-02-23 06:48:58 [WARNING] - 32617 +2026-02-23 06:48:58 [ERROR] Segmentation fault - 22982 +2026-02-23 06:48:58 [ERROR] Failed to connect - 8787 +2026-02-23 06:48:58 [ERROR] Invalid input - 18110 +2026-02-23 06:48:58 [ERROR] Out of memory - 19164 +2026-02-23 06:48:58 [WARNING] - 24149 +2026-02-23 06:48:58 [CRITICAL] - 8517 +2026-02-23 06:48:58 [DEBUG] - 9284 +2026-02-23 06:48:58 [CRITICAL] - 29958 +2026-02-23 06:48:58 [ERROR] Segmentation fault - 1839 +2026-02-23 06:48:58 [ERROR] Disk full - 18561 +2026-02-23 06:48:58 [DEBUG] - 31347 +2026-02-23 06:48:58 [ERROR] Invalid input - 16192 +2026-02-23 06:48:58 [ERROR] Out of memory - 12272 +2026-02-23 06:48:58 [INFO] - 2103 +2026-02-23 06:48:58 [INFO] - 15394 +2026-02-23 06:48:58 [ERROR] Disk full - 20115 +2026-02-23 06:48:58 [INFO] - 27405 +2026-02-23 06:48:58 [INFO] - 11137 +2026-02-23 06:48:58 [CRITICAL] - 16187 +2026-02-23 06:48:58 [ERROR] Failed to connect - 251 +2026-02-23 06:48:58 [CRITICAL] - 24428 +2026-02-23 06:48:58 [INFO] - 32687 +2026-02-23 06:48:58 [WARNING] - 7461 +2026-02-23 06:48:58 [INFO] - 29832 +2026-02-23 06:48:58 [CRITICAL] - 3700 +2026-02-23 06:48:58 [INFO] - 25646 +2026-02-23 06:48:58 [DEBUG] - 8612 +2026-02-23 06:48:58 [ERROR] Disk full - 31123 +2026-02-23 06:48:58 [ERROR] Disk full - 22484 +2026-02-23 06:48:58 [INFO] - 18399 +2026-02-23 06:48:58 [WARNING] - 15863 +2026-02-23 06:48:58 [CRITICAL] - 30886 +2026-02-23 06:48:58 [INFO] - 6309 +2026-02-23 06:48:58 [INFO] - 2112 +2026-02-23 06:48:58 [WARNING] - 12934 +2026-02-23 06:48:58 [INFO] - 24808 +2026-02-23 06:48:58 [DEBUG] - 27865 +2026-02-23 06:48:58 [INFO] - 24702 +2026-02-23 06:48:58 [CRITICAL] - 24637 +2026-02-23 06:48:58 [ERROR] Segmentation fault - 13038 +2026-02-23 06:48:58 [WARNING] - 29393 +2026-02-23 06:48:58 [INFO] - 21871 +2026-02-23 06:48:58 [ERROR] Failed to connect - 23665 +2026-02-23 06:48:58 [CRITICAL] - 28197 +2026-02-23 06:48:58 [WARNING] - 32415 +2026-02-23 06:48:58 [INFO] - 18659 +2026-02-23 06:48:58 [DEBUG] - 2958 +2026-02-23 06:48:58 [WARNING] - 15996 +2026-02-23 06:48:58 [ERROR] Failed to connect - 6649 +2026-02-23 06:48:58 [INFO] - 16584 +2026-02-23 06:48:58 [INFO] - 18196 +2026-02-23 06:48:58 [CRITICAL] - 11535 +2026-02-23 06:48:58 [WARNING] - 27771 +2026-02-23 06:48:58 [INFO] - 18826 +2026-02-23 06:48:58 [DEBUG] - 17960 +2026-02-23 06:48:58 [DEBUG] - 20659 +2026-02-23 06:48:58 [DEBUG] - 6731 +2026-02-23 06:48:58 [INFO] - 7645 +2026-02-23 06:48:58 [CRITICAL] - 28933 +2026-02-23 06:48:58 [ERROR] Failed to connect - 30799 +2026-02-23 06:48:58 [WARNING] - 19266 +2026-02-23 06:48:58 [DEBUG] - 19330 +2026-02-23 06:48:58 [CRITICAL] - 32258 +2026-02-23 06:48:58 [INFO] - 8889 +2026-02-23 06:48:58 [ERROR] Out of memory - 7833 +2026-02-23 06:48:58 [WARNING] - 3277 +2026-02-23 06:48:58 [WARNING] - 23929 +2026-02-23 06:48:58 [WARNING] - 287 +2026-02-23 06:48:58 [CRITICAL] - 1653 +2026-02-23 06:48:58 [DEBUG] - 16623 +2026-02-23 06:48:58 [WARNING] - 279 +2026-02-23 06:48:58 [INFO] - 24303 +2026-02-23 06:48:58 [DEBUG] - 26543 +2026-02-23 06:48:58 [WARNING] - 18015 +2026-02-23 06:48:58 [CRITICAL] - 4375 +2026-02-23 06:48:58 [CRITICAL] - 11747 +2026-02-23 06:48:58 [DEBUG] - 30236 +2026-02-23 06:48:58 [ERROR] Out of memory - 7525 +2026-02-23 06:48:58 [ERROR] Out of memory - 21969 +2026-02-23 06:48:58 [WARNING] - 15249 +2026-02-23 06:48:58 [CRITICAL] - 32409 +2026-02-23 06:48:58 [CRITICAL] - 32316 +2026-02-23 06:48:58 [ERROR] Invalid input - 9114 +2026-02-23 06:48:58 [DEBUG] - 1185 +2026-02-23 06:48:58 [WARNING] - 19834 +2026-02-23 06:48:58 [CRITICAL] - 7166 +2026-02-23 06:48:58 [CRITICAL] - 7261 +2026-02-23 06:48:58 [CRITICAL] - 4689 +2026-02-23 06:48:58 [INFO] - 13950 +2026-02-23 06:48:58 [DEBUG] - 11993 +2026-02-23 06:48:58 [DEBUG] - 24878 +2026-02-23 06:48:58 [DEBUG] - 5646 +2026-02-23 06:48:58 [DEBUG] - 16961 +2026-02-23 06:48:58 [CRITICAL] - 22298 +2026-02-23 06:48:58 [CRITICAL] - 18786 +2026-02-23 06:48:58 [WARNING] - 6331 +2026-02-23 06:48:58 [INFO] - 31583 +2026-02-23 06:48:58 [CRITICAL] - 5533 +2026-02-23 06:48:58 [INFO] - 25765 +2026-02-23 06:48:58 [ERROR] Segmentation fault - 17726 +2026-02-23 06:48:58 [ERROR] Failed to connect - 4879 +2026-02-23 06:48:58 [DEBUG] - 11078 +2026-02-23 06:48:58 [WARNING] - 5964 +2026-02-23 06:48:58 [CRITICAL] - 15243 +2026-02-23 06:48:58 [DEBUG] - 3281 +2026-02-23 06:48:58 [WARNING] - 10450 +2026-02-23 06:48:58 [WARNING] - 17834 +2026-02-23 06:48:58 [INFO] - 22353 +2026-02-23 06:48:58 [INFO] - 31701 +2026-02-23 06:48:58 [INFO] - 18585 +2026-02-23 06:48:58 [ERROR] Invalid input - 26726 +2026-02-23 06:48:58 [WARNING] - 12371 +2026-02-23 06:48:58 [INFO] - 26554 +2026-02-23 06:48:58 [CRITICAL] - 13725 +2026-02-23 06:48:58 [ERROR] Invalid input - 30607 +2026-02-23 06:48:58 [ERROR] Invalid input - 17103 +2026-02-23 06:48:58 [ERROR] Out of memory - 16645 +2026-02-23 06:48:58 [CRITICAL] - 16690 +2026-02-23 06:48:58 [CRITICAL] - 24990 +2026-02-23 06:48:58 [WARNING] - 264 +2026-02-23 06:48:58 [DEBUG] - 943 +2026-02-23 06:48:58 [CRITICAL] - 5500 +2026-02-23 06:48:58 [WARNING] - 19557 +2026-02-23 06:48:58 [ERROR] Out of memory - 21468 +2026-02-23 06:48:58 [WARNING] - 4022 +2026-02-23 06:48:58 [WARNING] - 30559 +2026-02-23 06:48:58 [ERROR] Disk full - 12122 +2026-02-23 06:48:58 [DEBUG] - 12559 +2026-02-23 06:48:58 [DEBUG] - 20550 +2026-02-23 06:48:58 [INFO] - 16444 +2026-02-23 06:48:58 [CRITICAL] - 4594 +2026-02-23 06:48:58 [DEBUG] - 23595 +2026-02-23 06:48:58 [CRITICAL] - 10654 +2026-02-23 06:48:58 [ERROR] Disk full - 21985 +2026-02-23 06:48:58 [ERROR] Disk full - 25627 +2026-02-23 06:48:58 [DEBUG] - 16215 +2026-02-23 06:48:58 [CRITICAL] - 5068 +2026-02-23 06:48:58 [INFO] - 28086 +2026-02-23 06:48:58 [CRITICAL] - 14215 +2026-02-23 06:48:58 [CRITICAL] - 12040 +2026-02-23 06:48:58 [CRITICAL] - 27604 +2026-02-23 06:48:58 [WARNING] - 9190 +2026-02-23 06:48:58 [DEBUG] - 27840 +2026-02-23 06:48:58 [CRITICAL] - 19056 +2026-02-23 06:48:58 [DEBUG] - 10376 +2026-02-23 06:48:58 [INFO] - 11168 +2026-02-23 06:48:58 [ERROR] Failed to connect - 12341 +2026-02-23 06:48:58 [WARNING] - 10878 +2026-02-23 06:48:58 [DEBUG] - 9822 +2026-02-23 06:48:58 [CRITICAL] - 18705 +2026-02-23 06:48:58 [INFO] - 16797 +2026-02-23 06:48:58 [INFO] - 5022 +2026-02-23 06:48:58 [ERROR] Invalid input - 15184 +2026-02-23 06:48:58 [DEBUG] - 21789 +2026-02-23 06:48:58 [ERROR] Disk full - 29184 +2026-02-23 06:48:58 [DEBUG] - 21182 +2026-02-23 06:48:58 [INFO] - 27127 +2026-02-23 06:48:58 [ERROR] Invalid input - 5515 +2026-02-23 06:48:58 [DEBUG] - 32447 +2026-02-23 06:48:58 [CRITICAL] - 21475 +2026-02-23 06:48:58 [CRITICAL] - 13952 +2026-02-23 06:48:58 [ERROR] Segmentation fault - 15107 +2026-02-23 06:48:58 [INFO] - 596 +2026-02-23 06:48:58 [DEBUG] - 4284 +2026-02-23 06:48:58 [ERROR] Segmentation fault - 13379 +2026-02-23 06:48:58 [CRITICAL] - 16252 +2026-02-23 06:48:58 [ERROR] Failed to connect - 23557 +2026-02-23 06:48:58 [WARNING] - 7080 +2026-02-23 06:48:58 [CRITICAL] - 1573 +2026-02-23 06:48:58 [WARNING] - 20794 +2026-02-23 06:48:58 [CRITICAL] - 9592 +2026-02-23 06:48:58 [INFO] - 28753 +2026-02-23 06:48:58 [INFO] - 27188 +2026-02-23 06:48:58 [CRITICAL] - 22005 +2026-02-23 06:48:58 [WARNING] - 25007 +2026-02-23 06:48:58 [CRITICAL] - 18774 +2026-02-23 06:48:58 [WARNING] - 7953 +2026-02-23 06:48:58 [WARNING] - 29594 +2026-02-23 06:48:58 [WARNING] - 27879 +2026-02-23 06:48:58 [ERROR] Failed to connect - 22682 +2026-02-23 06:48:58 [CRITICAL] - 959 +2026-02-23 06:48:58 [ERROR] Out of memory - 25790 +2026-02-23 06:48:58 [CRITICAL] - 12181 +2026-02-23 06:48:58 [ERROR] Segmentation fault - 8264 +2026-02-23 06:48:58 [WARNING] - 26106 +2026-02-23 06:48:58 [INFO] - 5309 +2026-02-23 06:48:58 [DEBUG] - 1714 +2026-02-23 06:48:58 [WARNING] - 21075 +2026-02-23 06:48:58 [DEBUG] - 17566 +2026-02-23 06:48:58 [WARNING] - 21348 +2026-02-23 06:48:58 [INFO] - 29432 +2026-02-23 06:48:58 [ERROR] Segmentation fault - 31235 +2026-02-23 06:48:58 [INFO] - 20080 +2026-02-23 06:48:58 [DEBUG] - 10564 +2026-02-23 06:48:58 [CRITICAL] - 8349 +2026-02-23 06:48:58 [WARNING] - 9274 +2026-02-23 06:48:58 [CRITICAL] - 25750 +2026-02-23 06:48:58 [ERROR] Segmentation fault - 8302 +2026-02-23 06:48:58 [DEBUG] - 4283 +2026-02-23 06:48:58 [WARNING] - 2794 +2026-02-23 06:48:58 [ERROR] Disk full - 7661 +2026-02-23 06:48:58 [ERROR] Invalid input - 16460 +2026-02-23 06:48:58 [WARNING] - 30242 +2026-02-23 06:48:58 [WARNING] - 6774 +2026-02-23 06:48:58 [DEBUG] - 21441 +2026-02-23 06:48:58 [ERROR] Invalid input - 17834 +2026-02-23 06:48:58 [CRITICAL] - 3557 +2026-02-23 06:48:58 [WARNING] - 15982 +2026-02-23 06:48:58 [INFO] - 17534 +2026-02-23 06:48:58 [ERROR] Failed to connect - 23539 +2026-02-23 06:48:58 [WARNING] - 21941 +2026-02-23 06:48:58 [CRITICAL] - 30405 +2026-02-23 06:48:58 [DEBUG] - 12733 +2026-02-23 06:48:58 [DEBUG] - 6643 +2026-02-23 06:48:58 [ERROR] Out of memory - 15788 +2026-02-23 06:48:58 [WARNING] - 13737 +2026-02-23 06:48:58 [ERROR] Invalid input - 20799 +2026-02-23 06:48:58 [CRITICAL] - 13716 +2026-02-23 06:48:58 [INFO] - 16591 +2026-02-23 06:48:58 [ERROR] Disk full - 12728 +2026-02-23 06:48:58 [DEBUG] - 8994 +2026-02-23 06:48:58 [ERROR] Segmentation fault - 22048 +2026-02-23 06:48:58 [DEBUG] - 31803 +2026-02-23 06:48:58 [DEBUG] - 12886 +2026-02-23 06:48:58 [INFO] - 19313 +2026-02-23 06:48:58 [ERROR] Invalid input - 3444 +2026-02-23 06:48:58 [WARNING] - 15643 +2026-02-23 06:48:58 [ERROR] Disk full - 20423 +2026-02-23 06:48:58 [ERROR] Segmentation fault - 16021 +2026-02-23 06:48:58 [CRITICAL] - 299 +2026-02-23 06:48:58 [INFO] - 29381 +2026-02-23 06:48:58 [WARNING] - 13888 +2026-02-23 06:48:58 [ERROR] Failed to connect - 3271 +2026-02-23 06:48:58 [DEBUG] - 30009 +2026-02-23 06:48:58 [CRITICAL] - 5923 +2026-02-23 06:48:58 [INFO] - 7291 +2026-02-23 06:48:58 [INFO] - 9078 +2026-02-23 06:48:58 [DEBUG] - 12245 +2026-02-23 06:48:58 [CRITICAL] - 21577 +2026-02-23 06:48:58 [CRITICAL] - 19305 +2026-02-23 06:48:58 [WARNING] - 26245 +2026-02-23 06:48:58 [ERROR] Out of memory - 6248 +2026-02-23 06:48:58 [DEBUG] - 28650 +2026-02-23 06:48:58 [WARNING] - 19047 +2026-02-23 06:48:58 [CRITICAL] - 12944 +2026-02-23 06:48:58 [CRITICAL] - 16120 +2026-02-23 06:48:58 [DEBUG] - 5030 +2026-02-23 06:48:58 [INFO] - 19138 +2026-02-23 06:48:58 [WARNING] - 30328 +2026-02-23 06:48:58 [INFO] - 18839 +2026-02-23 06:48:58 [WARNING] - 19620 +2026-02-23 06:48:58 [WARNING] - 17229 +2026-02-23 06:48:58 [CRITICAL] - 1932 +2026-02-23 06:48:58 [ERROR] Invalid input - 30018 +2026-02-23 06:48:58 [INFO] - 26774 +2026-02-23 06:48:58 [CRITICAL] - 23678 +2026-02-23 06:48:58 [ERROR] Out of memory - 86 +2026-02-23 06:48:58 [CRITICAL] - 2664 +2026-02-23 06:48:58 [DEBUG] - 129 +2026-02-23 06:48:58 [CRITICAL] - 27015 +2026-02-23 06:48:58 [ERROR] Failed to connect - 16413 +2026-02-23 06:48:58 [CRITICAL] - 29336 +2026-02-23 06:48:58 [WARNING] - 14745 +2026-02-23 06:48:58 [WARNING] - 645 +2026-02-23 06:48:58 [INFO] - 19245 +2026-02-23 06:48:58 [WARNING] - 18474 +2026-02-23 06:48:58 [WARNING] - 21774 +2026-02-23 06:48:58 [ERROR] Invalid input - 25499 +2026-02-23 06:48:58 [ERROR] Invalid input - 8322 +2026-02-23 06:48:58 [WARNING] - 32546 +2026-02-23 06:48:58 [INFO] - 22155 +2026-02-23 06:48:58 [ERROR] Disk full - 24962 +2026-02-23 06:48:58 [INFO] - 18631 +2026-02-23 06:48:58 [WARNING] - 24488 +2026-02-23 06:48:58 [WARNING] - 32718 +2026-02-23 06:48:58 [DEBUG] - 2032 +2026-02-23 06:48:58 [WARNING] - 14628 +2026-02-23 06:48:58 [DEBUG] - 14764 +2026-02-23 06:48:58 [DEBUG] - 23789 +2026-02-23 06:48:58 [DEBUG] - 270 +2026-02-23 06:48:58 [INFO] - 20897 +2026-02-23 06:48:58 [CRITICAL] - 29153 +2026-02-23 06:48:58 [ERROR] Failed to connect - 27008 +2026-02-23 06:48:58 [CRITICAL] - 19922 +2026-02-23 06:48:58 [ERROR] Segmentation fault - 4530 +2026-02-23 06:48:58 [CRITICAL] - 29647 +2026-02-23 06:48:58 [ERROR] Disk full - 32144 +2026-02-23 06:48:58 [WARNING] - 30123 +2026-02-23 06:48:58 [DEBUG] - 24663 +2026-02-23 06:48:58 [CRITICAL] - 7028 +2026-02-23 06:48:58 [CRITICAL] - 30257 +2026-02-23 06:48:58 [INFO] - 5991 +2026-02-23 06:48:58 [ERROR] Out of memory - 9228 +2026-02-23 06:48:58 [WARNING] - 18090 +2026-02-23 06:48:58 [ERROR] Invalid input - 14510 +2026-02-23 06:48:58 [INFO] - 9904 +2026-02-23 06:48:58 [DEBUG] - 22537 +2026-02-23 06:48:58 [ERROR] Segmentation fault - 9378 +2026-02-23 06:48:58 [CRITICAL] - 27850 +2026-02-23 06:48:58 [INFO] - 30071 +2026-02-23 06:48:58 [WARNING] - 14090 +2026-02-23 06:48:58 [CRITICAL] - 28089 +2026-02-23 06:48:58 [DEBUG] - 31575 +2026-02-23 06:48:58 [DEBUG] - 8583 +2026-02-23 06:48:58 [CRITICAL] - 5071 +2026-02-23 06:48:58 [ERROR] Disk full - 235 +2026-02-23 06:48:58 [DEBUG] - 9411 +2026-02-23 06:48:58 [CRITICAL] - 17830 +2026-02-23 06:48:58 [CRITICAL] - 16624 +2026-02-23 06:48:58 [ERROR] Segmentation fault - 25707 +2026-02-23 06:48:58 [DEBUG] - 14868 +2026-02-23 06:48:58 [CRITICAL] - 17811 +2026-02-23 06:48:58 [WARNING] - 9137 +2026-02-23 06:48:58 [DEBUG] - 31155 +2026-02-23 06:48:58 [DEBUG] - 16086 +2026-02-23 06:48:58 [CRITICAL] - 19861 +2026-02-23 06:48:58 [DEBUG] - 30798 +2026-02-23 06:48:58 [CRITICAL] - 27196 +2026-02-23 06:48:58 [INFO] - 4635 +2026-02-23 06:48:58 [WARNING] - 26800 +2026-02-23 06:48:58 [INFO] - 28458 +2026-02-23 06:48:58 [DEBUG] - 14289 +2026-02-23 06:48:58 [CRITICAL] - 14531 +2026-02-23 06:48:58 [CRITICAL] - 2053 +2026-02-23 06:48:58 [ERROR] Failed to connect - 27424 +2026-02-23 06:48:58 [ERROR] Invalid input - 20345 +2026-02-23 06:48:58 [CRITICAL] - 15834 +2026-02-23 06:48:58 [WARNING] - 13828 +2026-02-23 06:48:58 [WARNING] - 1012 +2026-02-23 06:48:58 [ERROR] Failed to connect - 32614 +2026-02-23 06:48:58 [WARNING] - 4944 +2026-02-23 06:48:58 [ERROR] Failed to connect - 20955 +2026-02-23 06:48:58 [INFO] - 9584 +2026-02-23 06:48:58 [CRITICAL] - 11285 +2026-02-23 06:48:58 [DEBUG] - 6772 +2026-02-23 06:48:58 [WARNING] - 19303 +2026-02-23 06:48:58 [CRITICAL] - 30251 +2026-02-23 06:48:58 [DEBUG] - 32477 +2026-02-23 06:48:58 [ERROR] Failed to connect - 35 +2026-02-23 06:48:58 [WARNING] - 24517 +2026-02-23 06:48:58 [WARNING] - 9680 +2026-02-23 06:48:58 [INFO] - 14102 +2026-02-23 06:48:58 [CRITICAL] - 27479 +2026-02-23 06:48:58 [ERROR] Failed to connect - 32186 +2026-02-23 06:48:58 [WARNING] - 4842 +2026-02-23 06:48:58 [WARNING] - 22653 +2026-02-23 06:48:58 [CRITICAL] - 12476 +2026-02-23 06:48:58 [ERROR] Failed to connect - 3425 +2026-02-23 06:48:58 [WARNING] - 9928 +2026-02-23 06:48:58 [ERROR] Failed to connect - 6374 +2026-02-23 06:48:58 [CRITICAL] - 11002 +2026-02-23 06:48:58 [DEBUG] - 4428 +2026-02-23 06:48:58 [INFO] - 17478 +2026-02-23 06:48:58 [ERROR] Segmentation fault - 16802 +2026-02-23 06:48:58 [ERROR] Disk full - 23560 +2026-02-23 06:48:58 [DEBUG] - 25194 +2026-02-23 06:48:58 [WARNING] - 22444 +2026-02-23 06:48:58 [CRITICAL] - 12743 +2026-02-23 06:48:58 [ERROR] Invalid input - 12982 +2026-02-23 06:48:58 [INFO] - 24029 +2026-02-23 06:48:58 [CRITICAL] - 25734 +2026-02-23 06:48:58 [ERROR] Out of memory - 27796 +2026-02-23 06:48:58 [WARNING] - 10972 +2026-02-23 06:48:58 [DEBUG] - 24005 +2026-02-23 06:48:58 [ERROR] Invalid input - 15806 +2026-02-23 06:48:58 [DEBUG] - 14166 +2026-02-23 06:48:58 [INFO] - 12022 +2026-02-23 06:48:58 [CRITICAL] - 19528 +2026-02-23 06:48:58 [CRITICAL] - 31845 +2026-02-23 06:48:58 [ERROR] Out of memory - 17383 +2026-02-23 06:48:58 [CRITICAL] - 7529 +2026-02-23 06:48:58 [ERROR] Out of memory - 3248 +2026-02-23 06:48:58 [DEBUG] - 24968 +2026-02-23 06:48:58 [DEBUG] - 25642 +2026-02-23 06:48:58 [DEBUG] - 15897 +2026-02-23 06:48:58 [ERROR] Disk full - 22532 +2026-02-23 06:48:58 [INFO] - 6794 +2026-02-23 06:48:58 [INFO] - 7680 +2026-02-23 06:48:58 [DEBUG] - 14703 +2026-02-23 06:48:58 [INFO] - 26617 +2026-02-23 06:48:58 [INFO] - 18495 +2026-02-23 06:48:58 [INFO] - 5004 +2026-02-23 06:48:58 [DEBUG] - 3950 +2026-02-23 06:48:58 [ERROR] Segmentation fault - 28955 +2026-02-23 06:48:58 [WARNING] - 6938 +2026-02-23 06:48:58 [INFO] - 24787 +2026-02-23 06:48:58 [ERROR] Segmentation fault - 10234 +2026-02-23 06:48:58 [CRITICAL] - 15376 +2026-02-23 06:48:58 [CRITICAL] - 8393 +2026-02-23 06:48:58 [WARNING] - 17393 +2026-02-23 06:48:58 [INFO] - 641 +2026-02-23 06:48:58 [ERROR] Disk full - 12512 +2026-02-23 06:48:58 [ERROR] Invalid input - 11858 +2026-02-23 06:48:58 [ERROR] Disk full - 6719 +2026-02-23 06:48:58 [DEBUG] - 3794 +2026-02-23 06:48:58 [CRITICAL] - 6585 +2026-02-23 06:48:58 [WARNING] - 26837 +2026-02-23 06:48:58 [INFO] - 2956 +2026-02-23 06:48:58 [WARNING] - 6134 +2026-02-23 06:48:58 [DEBUG] - 16669 +2026-02-23 06:48:58 [DEBUG] - 3298 +2026-02-23 06:48:58 [ERROR] Failed to connect - 19204 +2026-02-23 06:48:58 [DEBUG] - 6641 +2026-02-23 06:48:58 [INFO] - 9407 +2026-02-23 06:48:58 [INFO] - 3638 +2026-02-23 06:48:58 [INFO] - 3070 +2026-02-23 06:48:58 [WARNING] - 12667 +2026-02-23 06:48:58 [DEBUG] - 19758 +2026-02-23 06:48:58 [WARNING] - 16509 +2026-02-23 06:48:58 [WARNING] - 32535 +2026-02-23 06:48:58 [CRITICAL] - 27953 +2026-02-23 06:48:58 [DEBUG] - 8991 +2026-02-23 06:48:58 [WARNING] - 28284 +2026-02-23 06:48:58 [DEBUG] - 21067 +2026-02-23 06:48:58 [CRITICAL] - 16145 +2026-02-23 06:48:58 [WARNING] - 18704 +2026-02-23 06:48:58 [DEBUG] - 29965 +2026-02-23 06:48:58 [DEBUG] - 15207 +2026-02-23 06:48:58 [CRITICAL] - 9506 +2026-02-23 06:48:58 [INFO] - 4609 +2026-02-23 06:48:58 [INFO] - 1171 +2026-02-23 06:48:58 [ERROR] Failed to connect - 5992 +2026-02-23 06:48:58 [CRITICAL] - 6523 +2026-02-23 06:48:58 [ERROR] Out of memory - 28339 +2026-02-23 06:48:58 [WARNING] - 20607 +2026-02-23 06:48:58 [CRITICAL] - 24133 +2026-02-23 06:48:58 [WARNING] - 11084 +2026-02-23 06:48:58 [ERROR] Disk full - 20792 +2026-02-23 06:48:58 [INFO] - 200 +2026-02-23 06:48:58 [ERROR] Disk full - 23552 +2026-02-23 06:48:58 [CRITICAL] - 15956 +2026-02-23 06:48:58 [ERROR] Disk full - 12768 +2026-02-23 06:48:58 [INFO] - 19323 +2026-02-23 06:48:58 [DEBUG] - 4024 +2026-02-23 06:48:58 [CRITICAL] - 16453 +2026-02-23 06:48:58 [INFO] - 9040 +2026-02-23 06:48:58 [DEBUG] - 30047 +2026-02-23 06:48:58 [WARNING] - 32666 +2026-02-23 06:48:58 [ERROR] Segmentation fault - 19911 +2026-02-23 06:48:58 [INFO] - 14495 +2026-02-23 06:48:58 [ERROR] Segmentation fault - 31161 +2026-02-23 06:48:58 [DEBUG] - 992 +2026-02-23 06:48:58 [WARNING] - 30460 +2026-02-23 06:48:58 [WARNING] - 26359 +2026-02-23 06:48:58 [WARNING] - 31574 +2026-02-23 06:48:58 [ERROR] Invalid input - 27593 +2026-02-23 06:48:58 [ERROR] Failed to connect - 32239 +2026-02-23 06:48:58 [ERROR] Disk full - 945 +2026-02-23 06:48:58 [CRITICAL] - 11260 +2026-02-23 06:48:58 [WARNING] - 8867 +2026-02-23 06:48:58 [DEBUG] - 13370 +2026-02-23 06:48:58 [DEBUG] - 26816 +2026-02-23 06:48:58 [WARNING] - 15627 +2026-02-23 06:48:58 [CRITICAL] - 8394 +2026-02-23 06:48:58 [ERROR] Segmentation fault - 18155 +2026-02-23 06:48:58 [CRITICAL] - 9333 +2026-02-23 06:48:58 [DEBUG] - 26261 +2026-02-23 06:48:58 [DEBUG] - 2861 +2026-02-23 06:48:58 [CRITICAL] - 11525 +2026-02-23 06:48:58 [ERROR] Segmentation fault - 11160 +2026-02-23 06:48:58 [ERROR] Invalid input - 23374 +2026-02-23 06:48:58 [ERROR] Segmentation fault - 17727 +2026-02-23 06:48:58 [INFO] - 29727 +2026-02-23 06:48:58 [DEBUG] - 9929 +2026-02-23 06:48:58 [WARNING] - 8156 +2026-02-23 06:48:58 [WARNING] - 15019 +2026-02-23 06:48:58 [WARNING] - 3518 +2026-02-23 06:48:58 [DEBUG] - 11455 +2026-02-23 06:48:58 [CRITICAL] - 5881 +2026-02-23 06:48:58 [DEBUG] - 19776 +2026-02-23 06:48:58 [ERROR] Invalid input - 10697 +2026-02-23 06:48:58 [ERROR] Disk full - 9038 +2026-02-23 06:48:58 [ERROR] Failed to connect - 5769 +2026-02-23 06:48:58 [DEBUG] - 5220 +2026-02-23 06:48:58 [INFO] - 27698 +2026-02-23 06:48:58 [ERROR] Out of memory - 29814 +2026-02-23 06:48:58 [DEBUG] - 13042 +2026-02-23 06:48:58 [DEBUG] - 22435 +2026-02-23 06:48:58 [WARNING] - 1812 +2026-02-23 06:48:58 [DEBUG] - 21571 +2026-02-23 06:48:58 [WARNING] - 11099 +2026-02-23 06:48:58 [INFO] - 18959 +2026-02-23 06:48:58 [INFO] - 30632 +2026-02-23 06:48:58 [INFO] - 16676 +2026-02-23 06:48:58 [DEBUG] - 31478 +2026-02-23 06:48:58 [DEBUG] - 8533 +2026-02-23 06:48:58 [INFO] - 8838 +2026-02-23 06:48:58 [INFO] - 14028 +2026-02-23 06:48:58 [DEBUG] - 19593 +2026-02-23 06:48:58 [CRITICAL] - 31434 +2026-02-23 06:48:58 [DEBUG] - 15587 +2026-02-23 06:48:58 [ERROR] Segmentation fault - 22065 +2026-02-23 06:48:58 [DEBUG] - 27977 +2026-02-23 06:48:58 [INFO] - 28198 +2026-02-23 06:48:58 [WARNING] - 30279 +2026-02-23 06:48:58 [ERROR] Out of memory - 25745 +2026-02-23 06:48:58 [WARNING] - 16496 +2026-02-23 06:48:58 [INFO] - 6340 +2026-02-23 06:48:58 [CRITICAL] - 9982 +2026-02-23 06:48:58 [WARNING] - 28001 +2026-02-23 06:48:58 [ERROR] Disk full - 17893 +2026-02-23 06:48:58 [DEBUG] - 22330 +2026-02-23 06:48:58 [ERROR] Invalid input - 14135 +2026-02-23 06:48:58 [ERROR] Invalid input - 24204 +2026-02-23 06:48:58 [CRITICAL] - 19283 +2026-02-23 06:48:58 [CRITICAL] - 18380 +2026-02-23 06:48:58 [ERROR] Out of memory - 13992 +2026-02-23 06:48:58 [INFO] - 12468 +2026-02-23 06:48:58 [ERROR] Disk full - 7864 +2026-02-23 06:48:58 [DEBUG] - 23930 +2026-02-23 06:48:58 [DEBUG] - 4827 +2026-02-23 06:48:58 [WARNING] - 6549 +2026-02-23 06:48:58 [ERROR] Out of memory - 11384 +2026-02-23 06:48:58 [DEBUG] - 464 +2026-02-23 06:48:58 [WARNING] - 21327 +2026-02-23 06:48:58 [DEBUG] - 31384 +2026-02-23 06:48:58 [ERROR] Disk full - 10254 +2026-02-23 06:48:58 [ERROR] Segmentation fault - 31349 +2026-02-23 06:48:58 [CRITICAL] - 10725 +2026-02-23 06:48:58 [ERROR] Segmentation fault - 26546 +2026-02-23 06:48:58 [INFO] - 15632 +2026-02-23 06:48:58 [WARNING] - 4057 +2026-02-23 06:48:58 [DEBUG] - 2432 +2026-02-23 06:48:58 [ERROR] Out of memory - 9308 +2026-02-23 06:48:58 [INFO] - 2500 +2026-02-23 06:48:58 [DEBUG] - 32030 +2026-02-23 06:48:58 [ERROR] Segmentation fault - 10779 +2026-02-23 06:48:58 [CRITICAL] - 2126 +2026-02-23 06:48:58 [ERROR] Disk full - 27854 +2026-02-23 06:48:58 [ERROR] Segmentation fault - 12037 +2026-02-23 06:48:58 [WARNING] - 22954 +2026-02-23 06:48:58 [CRITICAL] - 21823 +2026-02-23 06:48:58 [CRITICAL] - 6547 +2026-02-23 06:48:58 [WARNING] - 7044 +2026-02-23 06:48:58 [WARNING] - 11497 +2026-02-23 06:48:58 [CRITICAL] - 9597 +2026-02-23 06:48:58 [WARNING] - 29622 +2026-02-23 06:48:58 [WARNING] - 377 +2026-02-23 06:48:58 [ERROR] Invalid input - 16238 +2026-02-23 06:48:58 [CRITICAL] - 6241 +2026-02-23 06:48:58 [CRITICAL] - 10563 +2026-02-23 06:48:58 [ERROR] Invalid input - 17348 +2026-02-23 06:48:58 [CRITICAL] - 5050 +2026-02-23 06:48:58 [WARNING] - 13598 +2026-02-23 06:48:58 [DEBUG] - 12525 +2026-02-23 06:48:58 [ERROR] Invalid input - 28738 +2026-02-23 06:48:58 [WARNING] - 1113 +2026-02-23 06:48:58 [ERROR] Disk full - 31835 +2026-02-23 06:48:58 [ERROR] Disk full - 31692 +2026-02-23 06:48:58 [CRITICAL] - 6482 +2026-02-23 06:48:58 [WARNING] - 16568 +2026-02-23 06:48:58 [INFO] - 17460 +2026-02-23 06:48:58 [ERROR] Segmentation fault - 13804 +2026-02-23 06:48:58 [WARNING] - 26596 +2026-02-23 06:48:58 [WARNING] - 32576 +2026-02-23 06:48:58 [DEBUG] - 15205 +2026-02-23 06:48:58 [ERROR] Disk full - 18617 +2026-02-23 06:48:58 [CRITICAL] - 3968 +2026-02-23 06:48:58 [WARNING] - 1363 +2026-02-23 06:48:58 [DEBUG] - 2164 +2026-02-23 06:48:58 [ERROR] Failed to connect - 29677 +2026-02-23 06:48:58 [INFO] - 2961 +2026-02-23 06:48:58 [WARNING] - 5442 +2026-02-23 06:48:58 [INFO] - 23405 +2026-02-23 06:48:58 [WARNING] - 16099 +2026-02-23 06:48:58 [CRITICAL] - 13711 +2026-02-23 06:48:58 [INFO] - 16759 +2026-02-23 06:48:58 [ERROR] Disk full - 8967 +2026-02-23 06:48:58 [WARNING] - 8380 +2026-02-23 06:48:58 [WARNING] - 6289 +2026-02-23 06:48:58 [CRITICAL] - 10508 +2026-02-23 06:48:58 [INFO] - 3996 +2026-02-23 06:48:58 [DEBUG] - 29191 +2026-02-23 06:48:58 [WARNING] - 20493 +2026-02-23 06:48:58 [INFO] - 1458 +2026-02-23 06:48:58 [WARNING] - 6575 +2026-02-23 06:48:58 [WARNING] - 22697 +2026-02-23 06:48:58 [INFO] - 17197 +2026-02-23 06:48:58 [CRITICAL] - 21594 +2026-02-23 06:48:58 [WARNING] - 31186 +2026-02-23 06:48:58 [DEBUG] - 14316 +2026-02-23 06:48:58 [DEBUG] - 14796 +2026-02-23 06:48:58 [INFO] - 28663 +2026-02-23 06:48:58 [DEBUG] - 9605 +2026-02-23 06:48:58 [ERROR] Out of memory - 28955 +2026-02-23 06:48:58 [ERROR] Segmentation fault - 10071 +2026-02-23 06:48:58 [CRITICAL] - 21346 +2026-02-23 06:48:58 [DEBUG] - 26397 +2026-02-23 06:48:58 [INFO] - 3072 +2026-02-23 06:48:58 [CRITICAL] - 16576 +2026-02-23 06:48:58 [INFO] - 17007 +2026-02-23 06:48:58 [INFO] - 3087 +2026-02-23 06:48:58 [INFO] - 19273 +2026-02-23 06:48:58 [CRITICAL] - 21483 +2026-02-23 06:48:58 [ERROR] Failed to connect - 10482 +2026-02-23 06:48:58 [CRITICAL] - 14108 +2026-02-23 06:48:58 [WARNING] - 9055 +2026-02-23 06:48:58 [INFO] - 30087 +2026-02-23 06:48:58 [DEBUG] - 24550 +2026-02-23 06:48:58 [WARNING] - 10936 +2026-02-23 06:48:58 [CRITICAL] - 31747 +2026-02-23 06:48:58 [CRITICAL] - 13887 +2026-02-23 06:48:58 [ERROR] Segmentation fault - 5670 +2026-02-23 06:48:58 [DEBUG] - 13943 +2026-02-23 06:48:58 [DEBUG] - 23968 +2026-02-23 06:48:58 [WARNING] - 27669 +2026-02-23 06:48:58 [WARNING] - 6591 +2026-02-23 06:48:58 [CRITICAL] - 26183 +2026-02-23 06:48:58 [ERROR] Disk full - 14058 +2026-02-23 06:48:58 [ERROR] Segmentation fault - 27244 +2026-02-23 06:48:58 [INFO] - 9476 +2026-02-23 06:48:58 [CRITICAL] - 31126 +2026-02-23 06:48:58 [DEBUG] - 4605 +2026-02-23 06:48:58 [ERROR] Failed to connect - 22042 +2026-02-23 06:48:58 [WARNING] - 16568 +2026-02-23 06:48:58 [ERROR] Disk full - 6710 +2026-02-23 06:48:58 [CRITICAL] - 24171 +2026-02-23 06:48:58 [WARNING] - 2495 +2026-02-23 06:48:58 [DEBUG] - 6390 +2026-02-23 06:48:58 [ERROR] Invalid input - 462 +2026-02-23 06:48:58 [DEBUG] - 23079 +2026-02-23 06:48:58 [ERROR] Failed to connect - 12183 +2026-02-23 06:48:58 [CRITICAL] - 30790 +2026-02-23 06:48:58 [ERROR] Segmentation fault - 25469 +2026-02-23 06:48:58 [DEBUG] - 14686 +2026-02-23 06:48:58 [DEBUG] - 16288 +2026-02-23 06:48:58 [ERROR] Invalid input - 23676 +2026-02-23 06:48:58 [CRITICAL] - 19843 +2026-02-23 06:48:58 [ERROR] Disk full - 26785 +2026-02-23 06:48:58 [CRITICAL] - 18790 +2026-02-23 06:48:58 [WARNING] - 1001 +2026-02-23 06:48:58 [INFO] - 24170 +2026-02-23 06:48:58 [WARNING] - 30581 +2026-02-23 06:48:58 [DEBUG] - 8070 +2026-02-23 06:48:58 [CRITICAL] - 26687 +2026-02-23 06:48:58 [INFO] - 26982 +2026-02-23 06:48:58 [ERROR] Segmentation fault - 29996 +2026-02-23 06:48:58 [INFO] - 12442 +2026-02-23 06:48:58 [WARNING] - 24932 +2026-02-23 06:48:58 [INFO] - 18009 +2026-02-23 06:48:58 [WARNING] - 26123 +2026-02-23 06:48:58 [CRITICAL] - 24376 +2026-02-23 06:48:58 [WARNING] - 6724 +2026-02-23 06:48:58 [DEBUG] - 26286 +2026-02-23 06:48:58 [INFO] - 12353 +2026-02-23 06:48:58 [INFO] - 29176 +2026-02-23 06:48:58 [DEBUG] - 1516 +2026-02-23 06:48:58 [ERROR] Failed to connect - 6391 +2026-02-23 06:48:58 [WARNING] - 17346 +2026-02-23 06:48:58 [ERROR] Disk full - 29544 +2026-02-23 06:48:58 [ERROR] Failed to connect - 2346 +2026-02-23 06:48:58 [INFO] - 2076 +2026-02-23 06:48:58 [INFO] - 14940 +2026-02-23 06:48:58 [DEBUG] - 20082 +2026-02-23 06:48:58 [ERROR] Out of memory - 12071 +2026-02-23 06:48:58 [ERROR] Failed to connect - 19652 +2026-02-23 06:48:59 [INFO] - 23673 +2026-02-23 06:48:59 [INFO] - 20266 +2026-02-23 06:48:59 [ERROR] Disk full - 808 +2026-02-23 06:48:59 [WARNING] - 25203 +2026-02-23 06:48:59 [DEBUG] - 28682 +2026-02-23 06:48:59 [CRITICAL] - 18813 +2026-02-23 06:48:59 [DEBUG] - 577 +2026-02-23 06:48:59 [WARNING] - 7608 +2026-02-23 06:48:59 [CRITICAL] - 27176 +2026-02-23 06:48:59 [ERROR] Segmentation fault - 14207 +2026-02-23 06:48:59 [DEBUG] - 7208 +2026-02-23 06:48:59 [DEBUG] - 13018 +2026-02-23 06:48:59 [WARNING] - 32354 +2026-02-23 06:48:59 [INFO] - 23657 +2026-02-23 06:48:59 [CRITICAL] - 12925 +2026-02-23 06:48:59 [ERROR] Out of memory - 26107 +2026-02-23 06:48:59 [INFO] - 17148 +2026-02-23 06:48:59 [INFO] - 6168 +2026-02-23 06:48:59 [INFO] - 20049 +2026-02-23 06:48:59 [CRITICAL] - 18517 +2026-02-23 06:48:59 [WARNING] - 6090 +2026-02-23 06:48:59 [WARNING] - 17020 +2026-02-23 06:48:59 [DEBUG] - 17172 +2026-02-23 06:48:59 [INFO] - 410 +2026-02-23 06:48:59 [ERROR] Segmentation fault - 18808 +2026-02-23 06:48:59 [DEBUG] - 20298 +2026-02-23 06:48:59 [INFO] - 6322 +2026-02-23 06:48:59 [ERROR] Out of memory - 19507 +2026-02-23 06:48:59 [ERROR] Out of memory - 6620 +2026-02-23 06:48:59 [ERROR] Segmentation fault - 28272 +2026-02-23 06:48:59 [CRITICAL] - 17022 +2026-02-23 06:48:59 [DEBUG] - 20815 +2026-02-23 06:48:59 [DEBUG] - 5751 +2026-02-23 06:48:59 [INFO] - 6478 +2026-02-23 06:48:59 [DEBUG] - 4534 +2026-02-23 06:48:59 [ERROR] Failed to connect - 14981 +2026-02-23 06:48:59 [WARNING] - 10263 +2026-02-23 06:48:59 [ERROR] Out of memory - 10347 +2026-02-23 06:48:59 [ERROR] Failed to connect - 8066 +2026-02-23 06:48:59 [ERROR] Failed to connect - 22373 +2026-02-23 06:48:59 [ERROR] Out of memory - 19882 +2026-02-23 06:48:59 [WARNING] - 30170 +2026-02-23 06:48:59 [WARNING] - 22159 +2026-02-23 06:48:59 [CRITICAL] - 14896 +2026-02-23 06:48:59 [ERROR] Disk full - 12860 +2026-02-23 06:48:59 [CRITICAL] - 437 +2026-02-23 06:48:59 [DEBUG] - 16610 +2026-02-23 06:48:59 [WARNING] - 32087 +2026-02-23 06:48:59 [CRITICAL] - 161 +2026-02-23 06:48:59 [CRITICAL] - 19598 +2026-02-23 06:48:59 [INFO] - 3280 +2026-02-23 06:48:59 [DEBUG] - 4502 +2026-02-23 06:48:59 [INFO] - 18925 +2026-02-23 06:48:59 [WARNING] - 32195 +2026-02-23 06:48:59 [CRITICAL] - 17790 +2026-02-23 06:48:59 [DEBUG] - 19058 +2026-02-23 06:48:59 [DEBUG] - 13614 +2026-02-23 06:48:59 [WARNING] - 25376 +2026-02-23 06:48:59 [CRITICAL] - 29459 +2026-02-23 06:48:59 [WARNING] - 7935 +2026-02-23 06:48:59 [WARNING] - 16776 +2026-02-23 06:48:59 [WARNING] - 12935 +2026-02-23 06:48:59 [DEBUG] - 10164 +2026-02-23 06:48:59 [CRITICAL] - 18145 +2026-02-23 06:48:59 [CRITICAL] - 11736 +2026-02-23 06:48:59 [INFO] - 8671 +2026-02-23 06:48:59 [ERROR] Segmentation fault - 17361 +2026-02-23 06:48:59 [DEBUG] - 6003 +2026-02-23 06:48:59 [ERROR] Out of memory - 17666 +2026-02-23 06:48:59 [WARNING] - 7442 +2026-02-23 06:48:59 [CRITICAL] - 3904 +2026-02-23 06:48:59 [CRITICAL] - 21863 +2026-02-23 06:48:59 [INFO] - 7109 +2026-02-23 06:48:59 [WARNING] - 16954 +2026-02-23 06:48:59 [ERROR] Invalid input - 16604 +2026-02-23 06:48:59 [CRITICAL] - 10841 +2026-02-23 06:48:59 [CRITICAL] - 4936 +2026-02-23 06:48:59 [INFO] - 14935 +2026-02-23 06:48:59 [CRITICAL] - 23861 +2026-02-23 06:48:59 [INFO] - 22525 +2026-02-23 06:48:59 [DEBUG] - 19965 +2026-02-23 06:48:59 [DEBUG] - 22655 +2026-02-23 06:48:59 [ERROR] Disk full - 1472 +2026-02-23 06:48:59 [ERROR] Out of memory - 25611 +2026-02-23 06:48:59 [DEBUG] - 141 +2026-02-23 06:48:59 [INFO] - 30776 +2026-02-23 06:48:59 [DEBUG] - 31822 +2026-02-23 06:48:59 [ERROR] Invalid input - 1 +2026-02-23 06:48:59 [ERROR] Segmentation fault - 23588 +2026-02-23 06:48:59 [INFO] - 24848 +2026-02-23 06:48:59 [DEBUG] - 3941 +2026-02-23 06:48:59 [ERROR] Segmentation fault - 302 +2026-02-23 06:48:59 [INFO] - 25414 +2026-02-23 06:48:59 [INFO] - 26220 +2026-02-23 06:48:59 [WARNING] - 17519 +2026-02-23 06:48:59 [ERROR] Disk full - 25682 +2026-02-23 06:48:59 [WARNING] - 3758 +2026-02-23 06:48:59 [WARNING] - 32617 +2026-02-23 06:48:59 [INFO] - 5930 +2026-02-23 06:48:59 [WARNING] - 14840 +2026-02-23 06:48:59 [CRITICAL] - 21058 +2026-02-23 06:48:59 [DEBUG] - 29911 +2026-02-23 06:48:59 [DEBUG] - 11359 +2026-02-23 06:48:59 [INFO] - 22211 +2026-02-23 06:48:59 [ERROR] Failed to connect - 26309 +2026-02-23 06:48:59 [WARNING] - 2303 +2026-02-23 06:48:59 [INFO] - 22139 +2026-02-23 06:48:59 [WARNING] - 29656 +2026-02-23 06:48:59 [CRITICAL] - 5453 +2026-02-23 06:48:59 [WARNING] - 18764 +2026-02-23 06:48:59 [ERROR] Invalid input - 3176 +2026-02-23 06:48:59 [DEBUG] - 8426 +2026-02-23 06:48:59 [INFO] - 10086 +2026-02-23 06:48:59 [WARNING] - 11575 +2026-02-23 06:48:59 [CRITICAL] - 9866 +2026-02-23 06:48:59 [DEBUG] - 4790 +2026-02-23 06:48:59 [CRITICAL] - 11216 +2026-02-23 06:48:59 [ERROR] Failed to connect - 17656 +2026-02-23 06:48:59 [DEBUG] - 1066 +2026-02-23 06:48:59 [WARNING] - 30138 +2026-02-23 06:48:59 [WARNING] - 19068 +2026-02-23 06:48:59 [CRITICAL] - 30963 +2026-02-23 06:48:59 [WARNING] - 11913 +2026-02-23 06:48:59 [INFO] - 30877 +2026-02-23 06:48:59 [WARNING] - 16862 +2026-02-23 06:48:59 [DEBUG] - 3618 +2026-02-23 06:48:59 [WARNING] - 22448 +2026-02-23 06:48:59 [ERROR] Segmentation fault - 9127 +2026-02-23 06:48:59 [DEBUG] - 25595 +2026-02-23 06:48:59 [ERROR] Invalid input - 3778 +2026-02-23 06:48:59 [WARNING] - 24668 +2026-02-23 06:48:59 [WARNING] - 31065 +2026-02-23 06:48:59 [CRITICAL] - 22246 +2026-02-23 06:48:59 [INFO] - 15672 +2026-02-23 06:48:59 [CRITICAL] - 11133 +2026-02-23 06:48:59 [CRITICAL] - 8909 +2026-02-23 06:48:59 [DEBUG] - 26240 +2026-02-23 06:48:59 [CRITICAL] - 17688 +2026-02-23 06:48:59 [CRITICAL] - 29313 +2026-02-23 06:48:59 [INFO] - 14860 +2026-02-23 06:48:59 [CRITICAL] - 18969 +2026-02-23 06:48:59 [DEBUG] - 31963 +2026-02-23 06:48:59 [DEBUG] - 19754 +2026-02-23 06:48:59 [CRITICAL] - 26557 +2026-02-23 06:48:59 [ERROR] Invalid input - 24330 +2026-02-23 06:48:59 [ERROR] Failed to connect - 19821 +2026-02-23 06:48:59 [CRITICAL] - 15565 +2026-02-23 06:48:59 [CRITICAL] - 17068 +2026-02-23 06:48:59 [WARNING] - 18156 +2026-02-23 06:48:59 [INFO] - 12427 +2026-02-23 06:48:59 [CRITICAL] - 13530 +2026-02-23 06:48:59 [CRITICAL] - 8319 +2026-02-23 06:48:59 [DEBUG] - 23332 +2026-02-23 06:48:59 [DEBUG] - 19431 +2026-02-23 06:48:59 [DEBUG] - 26634 +2026-02-23 06:48:59 [INFO] - 19159 +2026-02-23 06:48:59 [CRITICAL] - 13084 +2026-02-23 06:48:59 [DEBUG] - 4770 +2026-02-23 06:48:59 [DEBUG] - 17684 +2026-02-23 06:48:59 [ERROR] Out of memory - 22580 +2026-02-23 06:48:59 [DEBUG] - 2127 +2026-02-23 06:48:59 [DEBUG] - 11875 +2026-02-23 06:48:59 [INFO] - 30140 +2026-02-23 06:48:59 [CRITICAL] - 15287 +2026-02-23 06:48:59 [WARNING] - 26078 +2026-02-23 06:48:59 [DEBUG] - 12210 +2026-02-23 06:48:59 [CRITICAL] - 5403 +2026-02-23 06:48:59 [WARNING] - 17544 +2026-02-23 06:48:59 [WARNING] - 1588 +2026-02-23 06:48:59 [DEBUG] - 11188 +2026-02-23 06:48:59 [ERROR] Segmentation fault - 22024 +2026-02-23 06:48:59 [WARNING] - 726 +2026-02-23 06:48:59 [WARNING] - 147 +2026-02-23 06:48:59 [CRITICAL] - 28976 +2026-02-23 06:48:59 [DEBUG] - 20380 +2026-02-23 06:48:59 [ERROR] Failed to connect - 3585 +2026-02-23 06:48:59 [WARNING] - 23827 +2026-02-23 06:48:59 [DEBUG] - 124 +2026-02-23 06:48:59 [ERROR] Out of memory - 29295 +2026-02-23 06:48:59 [DEBUG] - 23111 +2026-02-23 06:48:59 [ERROR] Invalid input - 8283 +2026-02-23 06:48:59 [INFO] - 24601 +2026-02-23 06:48:59 [ERROR] Segmentation fault - 6823 +2026-02-23 06:48:59 [WARNING] - 2895 +2026-02-23 06:48:59 [WARNING] - 26605 +2026-02-23 06:48:59 [INFO] - 30120 +2026-02-23 06:48:59 [CRITICAL] - 28747 +2026-02-23 06:48:59 [DEBUG] - 229 +2026-02-23 06:48:59 [DEBUG] - 21089 +2026-02-23 06:48:59 [ERROR] Out of memory - 27449 +2026-02-23 06:48:59 [WARNING] - 8843 +2026-02-23 06:48:59 [INFO] - 11822 +2026-02-23 06:48:59 [WARNING] - 15979 +2026-02-23 06:48:59 [CRITICAL] - 29630 +2026-02-23 06:48:59 [WARNING] - 28092 +2026-02-23 06:48:59 [WARNING] - 26875 +2026-02-23 06:48:59 [ERROR] Invalid input - 21303 +2026-02-23 06:48:59 [DEBUG] - 20877 +2026-02-23 06:48:59 [CRITICAL] - 25955 +2026-02-23 06:48:59 [DEBUG] - 4984 +2026-02-23 06:48:59 [CRITICAL] - 1731 +2026-02-23 06:48:59 [DEBUG] - 12138 +2026-02-23 06:48:59 [ERROR] Segmentation fault - 29281 +2026-02-23 06:48:59 [WARNING] - 21189 +2026-02-23 06:48:59 [WARNING] - 14449 +2026-02-23 06:48:59 [WARNING] - 15898 +2026-02-23 06:48:59 [DEBUG] - 12283 +2026-02-23 06:48:59 [INFO] - 16016 +2026-02-23 06:48:59 [INFO] - 9310 +2026-02-23 06:48:59 [ERROR] Failed to connect - 31278 +2026-02-23 06:48:59 [ERROR] Invalid input - 7343 +2026-02-23 06:48:59 [CRITICAL] - 10519 +2026-02-23 06:48:59 [DEBUG] - 31521 +2026-02-23 06:48:59 [WARNING] - 31709 +2026-02-23 06:48:59 [ERROR] Out of memory - 23126 +2026-02-23 06:48:59 [DEBUG] - 1664 +2026-02-23 06:48:59 [DEBUG] - 7854 +2026-02-23 06:48:59 [WARNING] - 4802 +2026-02-23 06:48:59 [CRITICAL] - 24795 +2026-02-23 06:48:59 [DEBUG] - 18984 +2026-02-23 06:48:59 [DEBUG] - 12126 +2026-02-23 06:48:59 [DEBUG] - 22443 +2026-02-23 06:48:59 [WARNING] - 25176 +2026-02-23 06:48:59 [WARNING] - 10940 +2026-02-23 06:48:59 [INFO] - 25194 +2026-02-23 06:48:59 [INFO] - 4773 +2026-02-23 06:48:59 [ERROR] Failed to connect - 30423 +2026-02-23 06:48:59 [WARNING] - 22098 +2026-02-23 06:48:59 [DEBUG] - 18497 +2026-02-23 06:48:59 [WARNING] - 19100 +2026-02-23 06:48:59 [INFO] - 23502 +2026-02-23 06:48:59 [ERROR] Out of memory - 9957 +2026-02-23 06:48:59 [CRITICAL] - 20029 +2026-02-23 06:48:59 [INFO] - 30966 +2026-02-23 06:48:59 [ERROR] Out of memory - 4562 +2026-02-23 06:48:59 [DEBUG] - 330 +2026-02-23 06:48:59 [DEBUG] - 14805 +2026-02-23 06:48:59 [CRITICAL] - 30511 +2026-02-23 06:48:59 [INFO] - 12378 +2026-02-23 06:48:59 [ERROR] Invalid input - 1218 +2026-02-23 06:48:59 [ERROR] Failed to connect - 16971 +2026-02-23 06:48:59 [INFO] - 22788 +2026-02-23 06:48:59 [ERROR] Disk full - 31413 +2026-02-23 06:48:59 [INFO] - 26485 +2026-02-23 06:48:59 [CRITICAL] - 6146 +2026-02-23 06:48:59 [CRITICAL] - 20804 +2026-02-23 06:48:59 [ERROR] Invalid input - 10673 +2026-02-23 06:48:59 [DEBUG] - 32592 +2026-02-23 06:48:59 [CRITICAL] - 31999 +2026-02-23 06:48:59 [INFO] - 5500 +2026-02-23 06:48:59 [CRITICAL] - 18012 +2026-02-23 06:48:59 [DEBUG] - 9303 +2026-02-23 06:48:59 [INFO] - 20096 +2026-02-23 06:48:59 [WARNING] - 13603 +2026-02-23 06:48:59 [CRITICAL] - 10012 +2026-02-23 06:48:59 [INFO] - 25223 +2026-02-23 06:48:59 [ERROR] Invalid input - 32045 +2026-02-23 06:48:59 [ERROR] Failed to connect - 7995 +2026-02-23 06:48:59 [WARNING] - 19278 +2026-02-23 06:48:59 [CRITICAL] - 31243 +2026-02-23 06:48:59 [ERROR] Out of memory - 25203 +2026-02-23 06:48:59 [ERROR] Invalid input - 19698 +2026-02-23 06:48:59 [CRITICAL] - 4406 +2026-02-23 06:48:59 [WARNING] - 22601 +2026-02-23 06:48:59 [CRITICAL] - 19697 +2026-02-23 06:48:59 [ERROR] Invalid input - 9386 +2026-02-23 06:48:59 [ERROR] Out of memory - 1931 +2026-02-23 06:48:59 [ERROR] Out of memory - 8124 +2026-02-23 06:48:59 [WARNING] - 8627 +2026-02-23 06:48:59 [WARNING] - 7983 +2026-02-23 06:48:59 [ERROR] Disk full - 24548 +2026-02-23 06:48:59 [ERROR] Segmentation fault - 25280 +2026-02-23 06:48:59 [ERROR] Segmentation fault - 25695 +2026-02-23 06:48:59 [WARNING] - 11327 +2026-02-23 06:48:59 [ERROR] Disk full - 32007 +2026-02-23 06:48:59 [ERROR] Segmentation fault - 22561 +2026-02-23 06:48:59 [INFO] - 19102 +2026-02-23 06:48:59 [ERROR] Invalid input - 25054 +2026-02-23 06:48:59 [WARNING] - 22276 +2026-02-23 06:48:59 [INFO] - 30866 +2026-02-23 06:48:59 [WARNING] - 11917 +2026-02-23 06:48:59 [ERROR] Segmentation fault - 23584 +2026-02-23 06:48:59 [WARNING] - 23521 +2026-02-23 06:48:59 [CRITICAL] - 13018 +2026-02-23 06:48:59 [ERROR] Failed to connect - 22673 +2026-02-23 06:48:59 [ERROR] Segmentation fault - 11431 +2026-02-23 06:48:59 [INFO] - 5925 +2026-02-23 06:48:59 [ERROR] Failed to connect - 7410 +2026-02-23 06:48:59 [WARNING] - 18459 +2026-02-23 06:48:59 [DEBUG] - 20857 +2026-02-23 06:48:59 [ERROR] Failed to connect - 8958 +2026-02-23 06:48:59 [WARNING] - 14215 +2026-02-23 06:48:59 [INFO] - 29034 +2026-02-23 06:48:59 [WARNING] - 27061 +2026-02-23 06:48:59 [CRITICAL] - 30900 +2026-02-23 06:48:59 [DEBUG] - 32077 +2026-02-23 06:48:59 [ERROR] Invalid input - 30571 +2026-02-23 06:48:59 [DEBUG] - 14278 +2026-02-23 06:48:59 [DEBUG] - 20114 +2026-02-23 06:48:59 [ERROR] Disk full - 17681 +2026-02-23 06:48:59 [CRITICAL] - 8300 +2026-02-23 06:48:59 [ERROR] Out of memory - 30851 +2026-02-23 06:48:59 [DEBUG] - 12930 +2026-02-23 06:48:59 [WARNING] - 24389 +2026-02-23 06:48:59 [DEBUG] - 17192 +2026-02-23 06:48:59 [ERROR] Failed to connect - 24351 +2026-02-23 06:48:59 [CRITICAL] - 8752 +2026-02-23 06:48:59 [ERROR] Segmentation fault - 6297 +2026-02-23 06:48:59 [DEBUG] - 2904 +2026-02-23 06:48:59 [INFO] - 8975 +2026-02-23 06:48:59 [WARNING] - 31009 +2026-02-23 06:48:59 [ERROR] Failed to connect - 25994 +2026-02-23 06:48:59 [CRITICAL] - 16757 +2026-02-23 06:48:59 [CRITICAL] - 30215 +2026-02-23 06:48:59 [WARNING] - 19386 +2026-02-23 06:48:59 [DEBUG] - 13704 +2026-02-23 06:48:59 [WARNING] - 830 +2026-02-23 06:48:59 [CRITICAL] - 6635 +2026-02-23 06:48:59 [WARNING] - 30862 +2026-02-23 06:48:59 [CRITICAL] - 27935 +2026-02-23 06:48:59 [ERROR] Failed to connect - 3635 +2026-02-23 06:48:59 [INFO] - 1728 +2026-02-23 06:48:59 [ERROR] Invalid input - 24615 +2026-02-23 06:48:59 [DEBUG] - 5570 +2026-02-23 06:48:59 [WARNING] - 16524 +2026-02-23 06:48:59 [CRITICAL] - 14276 +2026-02-23 06:48:59 [DEBUG] - 31145 +2026-02-23 06:48:59 [ERROR] Out of memory - 681 +2026-02-23 06:48:59 [CRITICAL] - 29865 +2026-02-23 06:48:59 [ERROR] Disk full - 17073 +2026-02-23 06:48:59 [DEBUG] - 10065 +2026-02-23 06:48:59 [CRITICAL] - 23271 +2026-02-23 06:48:59 [ERROR] Disk full - 28310 +2026-02-23 06:48:59 [ERROR] Out of memory - 3393 +2026-02-23 06:48:59 [ERROR] Out of memory - 5169 +2026-02-23 06:48:59 [CRITICAL] - 21420 +2026-02-23 06:48:59 [ERROR] Disk full - 18425 +2026-02-23 06:48:59 [ERROR] Disk full - 20324 +2026-02-23 06:48:59 [WARNING] - 10152 +2026-02-23 06:48:59 [WARNING] - 30829 +2026-02-23 06:48:59 [DEBUG] - 19351 +2026-02-23 06:48:59 [WARNING] - 14032 +2026-02-23 06:48:59 [CRITICAL] - 25311 +2026-02-23 06:48:59 [WARNING] - 29051 +2026-02-23 06:48:59 [CRITICAL] - 19131 +2026-02-23 06:48:59 [CRITICAL] - 9197 +2026-02-23 06:48:59 [WARNING] - 12953 +2026-02-23 06:48:59 [ERROR] Segmentation fault - 22627 +2026-02-23 06:48:59 [WARNING] - 4127 +2026-02-23 06:48:59 [DEBUG] - 11188 +2026-02-23 06:48:59 [ERROR] Out of memory - 31781 +2026-02-23 06:48:59 [CRITICAL] - 7245 +2026-02-23 06:48:59 [ERROR] Invalid input - 14614 +2026-02-23 06:48:59 [INFO] - 20461 +2026-02-23 06:48:59 [INFO] - 20339 +2026-02-23 06:48:59 [DEBUG] - 19162 +2026-02-23 06:48:59 [INFO] - 20408 +2026-02-23 06:48:59 [INFO] - 6903 +2026-02-23 06:48:59 [CRITICAL] - 4129 +2026-02-23 06:48:59 [DEBUG] - 15891 +2026-02-23 06:48:59 [WARNING] - 15784 +2026-02-23 06:48:59 [CRITICAL] - 24366 +2026-02-23 06:48:59 [CRITICAL] - 13000 +2026-02-23 06:48:59 [ERROR] Invalid input - 15479 +2026-02-23 06:48:59 [DEBUG] - 30822 +2026-02-23 06:48:59 [CRITICAL] - 32282 +2026-02-23 06:48:59 [INFO] - 9567 +2026-02-23 06:48:59 [INFO] - 16373 +2026-02-23 06:48:59 [ERROR] Segmentation fault - 5125 +2026-02-23 06:48:59 [INFO] - 26052 +2026-02-23 06:48:59 [DEBUG] - 23459 +2026-02-23 06:48:59 [WARNING] - 19798 +2026-02-23 06:48:59 [WARNING] - 17085 +2026-02-23 06:48:59 [INFO] - 5371 +2026-02-23 06:48:59 [INFO] - 24606 +2026-02-23 06:48:59 [ERROR] Disk full - 20324 +2026-02-23 06:48:59 [ERROR] Failed to connect - 8544 +2026-02-23 06:48:59 [WARNING] - 25137 +2026-02-23 06:48:59 [DEBUG] - 27824 +2026-02-23 06:48:59 [INFO] - 15605 +2026-02-23 06:48:59 [CRITICAL] - 3729 +2026-02-23 06:48:59 [INFO] - 1306 +2026-02-23 06:48:59 [DEBUG] - 8468 +2026-02-23 06:48:59 [WARNING] - 29659 +2026-02-23 06:48:59 [WARNING] - 21127 +2026-02-23 06:48:59 [WARNING] - 4154 +2026-02-23 06:48:59 [INFO] - 24699 +2026-02-23 06:48:59 [DEBUG] - 3764 +2026-02-23 06:48:59 [ERROR] Invalid input - 3937 +2026-02-23 06:48:59 [DEBUG] - 13917 +2026-02-23 06:48:59 [INFO] - 13283 +2026-02-23 06:48:59 [DEBUG] - 32284 +2026-02-23 06:48:59 [CRITICAL] - 27362 +2026-02-23 06:48:59 [DEBUG] - 11214 +2026-02-23 06:48:59 [ERROR] Failed to connect - 17005 +2026-02-23 06:48:59 [WARNING] - 3325 +2026-02-23 06:48:59 [ERROR] Disk full - 29116 +2026-02-23 06:48:59 [INFO] - 4822 +2026-02-23 06:48:59 [CRITICAL] - 27631 +2026-02-23 06:48:59 [WARNING] - 10013 +2026-02-23 06:48:59 [WARNING] - 260 +2026-02-23 06:48:59 [CRITICAL] - 28948 +2026-02-23 06:48:59 [DEBUG] - 9025 +2026-02-23 06:48:59 [INFO] - 30902 +2026-02-23 06:48:59 [WARNING] - 8025 +2026-02-23 06:48:59 [DEBUG] - 27522 +2026-02-23 06:48:59 [ERROR] Out of memory - 13102 +2026-02-23 06:48:59 [DEBUG] - 9277 +2026-02-23 06:48:59 [CRITICAL] - 16749 +2026-02-23 06:48:59 [CRITICAL] - 10337 +2026-02-23 06:48:59 [WARNING] - 15177 +2026-02-23 06:48:59 [INFO] - 15951 +2026-02-23 06:48:59 [CRITICAL] - 12676 +2026-02-23 06:48:59 [WARNING] - 21031 +2026-02-23 06:48:59 [DEBUG] - 14284 +2026-02-23 06:48:59 [ERROR] Segmentation fault - 4885 +2026-02-23 06:48:59 [INFO] - 1405 +2026-02-23 06:48:59 [ERROR] Disk full - 28109 +2026-02-23 06:48:59 [ERROR] Out of memory - 28993 +2026-02-23 06:48:59 [ERROR] Disk full - 15920 +2026-02-23 06:48:59 [CRITICAL] - 23154 +2026-02-23 06:48:59 [DEBUG] - 690 +2026-02-23 06:48:59 [INFO] - 3413 +2026-02-23 06:48:59 [ERROR] Disk full - 22858 +2026-02-23 06:48:59 [CRITICAL] - 6208 +2026-02-23 06:48:59 [INFO] - 15034 +2026-02-23 06:48:59 [CRITICAL] - 6696 +2026-02-23 06:48:59 [DEBUG] - 24081 +2026-02-23 06:48:59 [INFO] - 24294 +2026-02-23 06:48:59 [INFO] - 32181 +2026-02-23 06:48:59 [CRITICAL] - 3437 +2026-02-23 06:48:59 [ERROR] Out of memory - 4509 +2026-02-23 06:48:59 [DEBUG] - 8006 +2026-02-23 06:48:59 [ERROR] Out of memory - 4827 +2026-02-23 06:48:59 [WARNING] - 1092 +2026-02-23 06:48:59 [WARNING] - 12734 +2026-02-23 06:48:59 [WARNING] - 13795 +2026-02-23 06:48:59 [ERROR] Disk full - 5949 +2026-02-23 06:48:59 [DEBUG] - 29941 +2026-02-23 06:48:59 [ERROR] Out of memory - 26961 +2026-02-23 06:48:59 [ERROR] Segmentation fault - 22504 +2026-02-23 06:48:59 [CRITICAL] - 13868 +2026-02-23 06:48:59 [WARNING] - 30053 +2026-02-23 06:48:59 [WARNING] - 337 +2026-02-23 06:48:59 [INFO] - 11886 +2026-02-23 06:48:59 [ERROR] Invalid input - 2088 +2026-02-23 06:48:59 [WARNING] - 9396 +2026-02-23 06:48:59 [CRITICAL] - 15019 +2026-02-23 06:48:59 [WARNING] - 19519 +2026-02-23 06:48:59 [WARNING] - 28165 +2026-02-23 06:48:59 [ERROR] Disk full - 1024 +2026-02-23 06:48:59 [WARNING] - 3073 +2026-02-23 06:48:59 [ERROR] Out of memory - 20138 +2026-02-23 06:48:59 [WARNING] - 10761 +2026-02-23 06:48:59 [ERROR] Out of memory - 10755 +2026-02-23 06:48:59 [INFO] - 260 +2026-02-23 06:48:59 [CRITICAL] - 14859 +2026-02-23 06:48:59 [CRITICAL] - 17821 +2026-02-23 06:48:59 [ERROR] Disk full - 249 +2026-02-23 06:48:59 [DEBUG] - 27189 +2026-02-23 06:48:59 [DEBUG] - 4636 +2026-02-23 06:48:59 [INFO] - 28097 +2026-02-23 06:48:59 [CRITICAL] - 10277 +2026-02-23 06:48:59 [DEBUG] - 25843 +2026-02-23 06:48:59 [ERROR] Out of memory - 4194 +2026-02-23 06:48:59 [ERROR] Segmentation fault - 10158 +2026-02-23 06:48:59 [CRITICAL] - 27973 +2026-02-23 06:48:59 [DEBUG] - 12016 +2026-02-23 06:48:59 [INFO] - 11481 +2026-02-23 06:48:59 [CRITICAL] - 28361 +2026-02-23 06:48:59 [INFO] - 5557 +2026-02-23 06:48:59 [WARNING] - 11904 +2026-02-23 06:48:59 [INFO] - 11187 +2026-02-23 06:48:59 [DEBUG] - 17682 +2026-02-23 06:48:59 [CRITICAL] - 12374 +2026-02-23 06:48:59 [WARNING] - 9531 +2026-02-23 06:48:59 [CRITICAL] - 25074 +2026-02-23 06:48:59 [WARNING] - 5987 +2026-02-23 06:48:59 [WARNING] - 19966 +2026-02-23 06:48:59 [CRITICAL] - 25844 +2026-02-23 06:48:59 [ERROR] Invalid input - 16174 +2026-02-23 06:48:59 [DEBUG] - 12396 +2026-02-23 06:48:59 [INFO] - 22762 +2026-02-23 06:48:59 [WARNING] - 23676 +2026-02-23 06:48:59 [DEBUG] - 32450 +2026-02-23 06:48:59 [WARNING] - 23659 +2026-02-23 06:48:59 [INFO] - 6829 +2026-02-23 06:48:59 [INFO] - 4588 +2026-02-23 06:48:59 [ERROR] Failed to connect - 19358 +2026-02-23 06:48:59 [INFO] - 14367 +2026-02-23 06:48:59 [ERROR] Out of memory - 11839 +2026-02-23 06:48:59 [INFO] - 18744 +2026-02-23 06:48:59 [WARNING] - 1996 +2026-02-23 06:48:59 [CRITICAL] - 8409 +2026-02-23 06:48:59 [ERROR] Disk full - 12835 +2026-02-23 06:48:59 [ERROR] Segmentation fault - 15463 +2026-02-23 06:48:59 [WARNING] - 19110 +2026-02-23 06:48:59 [DEBUG] - 31483 +2026-02-23 06:48:59 [DEBUG] - 20455 +2026-02-23 06:48:59 [ERROR] Disk full - 8910 +2026-02-23 06:48:59 [CRITICAL] - 9718 +2026-02-23 06:48:59 [DEBUG] - 10446 +2026-02-23 06:48:59 [INFO] - 3573 +2026-02-23 06:48:59 [ERROR] Disk full - 294 +2026-02-23 06:48:59 [CRITICAL] - 24097 +2026-02-23 06:48:59 [DEBUG] - 17079 +2026-02-23 06:48:59 [ERROR] Failed to connect - 27297 +2026-02-23 06:48:59 [WARNING] - 761 +2026-02-23 06:48:59 [CRITICAL] - 9417 +2026-02-23 06:48:59 [WARNING] - 31330 +2026-02-23 06:48:59 [WARNING] - 6780 +2026-02-23 06:48:59 [WARNING] - 17847 +2026-02-23 06:48:59 [ERROR] Out of memory - 3469 +2026-02-23 06:48:59 [INFO] - 15258 +2026-02-23 06:48:59 [WARNING] - 9691 +2026-02-23 06:48:59 [WARNING] - 3025 +2026-02-23 06:48:59 [CRITICAL] - 25057 +2026-02-23 06:48:59 [CRITICAL] - 14264 +2026-02-23 06:48:59 [WARNING] - 19329 +2026-02-23 06:48:59 [DEBUG] - 17849 +2026-02-23 06:48:59 [WARNING] - 28691 +2026-02-23 06:48:59 [DEBUG] - 8984 +2026-02-23 06:48:59 [DEBUG] - 10483 +2026-02-23 06:48:59 [DEBUG] - 32036 +2026-02-23 06:48:59 [DEBUG] - 7343 +2026-02-23 06:48:59 [DEBUG] - 2710 +2026-02-23 06:48:59 [INFO] - 20094 +2026-02-23 06:48:59 [WARNING] - 14414 +2026-02-23 06:48:59 [WARNING] - 18440 +2026-02-23 06:48:59 [WARNING] - 28597 +2026-02-23 06:48:59 [ERROR] Segmentation fault - 31435 +2026-02-23 06:48:59 [CRITICAL] - 6035 +2026-02-23 06:48:59 [DEBUG] - 29156 +2026-02-23 06:48:59 [ERROR] Disk full - 31383 +2026-02-23 06:48:59 [CRITICAL] - 31645 +2026-02-23 06:48:59 [WARNING] - 21023 +2026-02-23 06:48:59 [WARNING] - 15222 +2026-02-23 06:48:59 [WARNING] - 18833 +2026-02-23 06:48:59 [CRITICAL] - 31487 +2026-02-23 06:48:59 [DEBUG] - 10710 +2026-02-23 06:48:59 [CRITICAL] - 19476 +2026-02-23 06:48:59 [CRITICAL] - 21130 +2026-02-23 06:48:59 [WARNING] - 12253 +2026-02-23 06:48:59 [INFO] - 14961 +2026-02-23 06:48:59 [CRITICAL] - 20556 +2026-02-23 06:48:59 [CRITICAL] - 9860 +2026-02-23 06:48:59 [ERROR] Out of memory - 23896 +2026-02-23 06:48:59 [WARNING] - 22441 +2026-02-23 06:48:59 [ERROR] Out of memory - 21156 +2026-02-23 06:48:59 [INFO] - 10013 +2026-02-23 06:48:59 [INFO] - 17043 +2026-02-23 06:48:59 [CRITICAL] - 3692 +2026-02-23 06:48:59 [CRITICAL] - 30768 +2026-02-23 06:48:59 [DEBUG] - 32511 +2026-02-23 06:48:59 [INFO] - 11676 +2026-02-23 06:48:59 [CRITICAL] - 22035 +2026-02-23 06:48:59 [INFO] - 462 +2026-02-23 06:48:59 [DEBUG] - 1230 +2026-02-23 06:48:59 [INFO] - 5932 +2026-02-23 06:48:59 [INFO] - 11735 +2026-02-23 06:48:59 [ERROR] Disk full - 17191 +2026-02-23 06:48:59 [INFO] - 26618 +2026-02-23 06:48:59 [ERROR] Invalid input - 17982 +2026-02-23 06:48:59 [CRITICAL] - 11401 +2026-02-23 06:48:59 [WARNING] - 21558 +2026-02-23 06:48:59 [CRITICAL] - 18211 +2026-02-23 06:48:59 [DEBUG] - 26958 +2026-02-23 06:48:59 [CRITICAL] - 12317 +2026-02-23 06:48:59 [WARNING] - 29242 +2026-02-23 06:48:59 [WARNING] - 23997 +2026-02-23 06:48:59 [CRITICAL] - 18374 +2026-02-23 06:48:59 [INFO] - 7446 +2026-02-23 06:48:59 [WARNING] - 7364 +2026-02-23 06:48:59 [WARNING] - 6580 +2026-02-23 06:48:59 [DEBUG] - 32417 +2026-02-23 06:48:59 [ERROR] Segmentation fault - 18969 +2026-02-23 06:48:59 [ERROR] Out of memory - 6925 +2026-02-23 06:48:59 [DEBUG] - 20226 +2026-02-23 06:48:59 [WARNING] - 26230 +2026-02-23 06:48:59 [CRITICAL] - 25127 +2026-02-23 06:48:59 [DEBUG] - 3390 +2026-02-23 06:48:59 [CRITICAL] - 4083 +2026-02-23 06:48:59 [ERROR] Failed to connect - 12856 +2026-02-23 06:48:59 [INFO] - 61 +2026-02-23 06:48:59 [CRITICAL] - 10914 +2026-02-23 06:48:59 [INFO] - 22805 +2026-02-23 06:48:59 [ERROR] Out of memory - 23082 +2026-02-23 06:48:59 [DEBUG] - 21256 +2026-02-23 06:48:59 [DEBUG] - 17830 +2026-02-23 06:48:59 [WARNING] - 6411 +2026-02-23 06:48:59 [CRITICAL] - 30620 +2026-02-23 06:48:59 [CRITICAL] - 24606 +2026-02-23 06:48:59 [WARNING] - 2403 +2026-02-23 06:48:59 [CRITICAL] - 4094 +2026-02-23 06:48:59 [WARNING] - 11944 +2026-02-23 06:48:59 [CRITICAL] - 29656 +2026-02-23 06:48:59 [DEBUG] - 20205 +2026-02-23 06:48:59 [DEBUG] - 20174 +2026-02-23 06:48:59 [INFO] - 23185 +2026-02-23 06:48:59 [INFO] - 31615 +2026-02-23 06:48:59 [DEBUG] - 13767 +2026-02-23 06:48:59 [INFO] - 366 +2026-02-23 06:48:59 [INFO] - 31519 +2026-02-23 06:48:59 [INFO] - 23507 +2026-02-23 06:48:59 [ERROR] Failed to connect - 15271 +2026-02-23 06:48:59 [ERROR] Disk full - 11933 +2026-02-23 06:48:59 [CRITICAL] - 1341 +2026-02-23 06:48:59 [WARNING] - 10704 +2026-02-23 06:48:59 [DEBUG] - 14408 +2026-02-23 06:48:59 [CRITICAL] - 29988 +2026-02-23 06:48:59 [CRITICAL] - 26422 +2026-02-23 06:48:59 [ERROR] Failed to connect - 25357 +2026-02-23 06:48:59 [ERROR] Segmentation fault - 7448 +2026-02-23 06:48:59 [ERROR] Failed to connect - 14068 +2026-02-23 06:48:59 [INFO] - 31977 +2026-02-23 06:48:59 [CRITICAL] - 24548 +2026-02-23 06:48:59 [CRITICAL] - 22135 +2026-02-23 06:48:59 [WARNING] - 22376 +2026-02-23 06:48:59 [INFO] - 2148 +2026-02-23 06:48:59 [CRITICAL] - 20690 +2026-02-23 06:48:59 [INFO] - 21524 +2026-02-23 06:48:59 [CRITICAL] - 795 +2026-02-23 06:48:59 [WARNING] - 18517 +2026-02-23 06:48:59 [WARNING] - 31707 +2026-02-23 06:48:59 [WARNING] - 11289 +2026-02-23 06:48:59 [INFO] - 8470 +2026-02-23 06:48:59 [INFO] - 1578 +2026-02-23 06:48:59 [CRITICAL] - 30426 +2026-02-23 06:48:59 [CRITICAL] - 12521 +2026-02-23 06:48:59 [INFO] - 27034 +2026-02-23 06:48:59 [CRITICAL] - 25111 +2026-02-23 06:48:59 [WARNING] - 15673 +2026-02-23 06:48:59 [WARNING] - 31004 +2026-02-23 06:48:59 [CRITICAL] - 15294 +2026-02-23 06:48:59 [WARNING] - 24474 +2026-02-23 06:48:59 [INFO] - 10297 +2026-02-23 06:48:59 [CRITICAL] - 9246 +2026-02-23 06:48:59 [ERROR] Out of memory - 20695 +2026-02-23 06:48:59 [ERROR] Failed to connect - 20133 +2026-02-23 06:48:59 [CRITICAL] - 9922 +2026-02-23 06:48:59 [DEBUG] - 2589 +2026-02-23 06:48:59 [ERROR] Failed to connect - 13269 +2026-02-23 06:48:59 [CRITICAL] - 27468 +2026-02-23 06:48:59 [WARNING] - 20539 +2026-02-23 06:48:59 [DEBUG] - 208 +2026-02-23 06:48:59 [ERROR] Out of memory - 19274 +2026-02-23 06:48:59 [CRITICAL] - 32405 +2026-02-23 06:48:59 [CRITICAL] - 17283 +2026-02-23 06:48:59 [ERROR] Disk full - 15355 +2026-02-23 06:48:59 [INFO] - 6762 +2026-02-23 06:48:59 [DEBUG] - 15069 +2026-02-23 06:48:59 [ERROR] Out of memory - 26037 +2026-02-23 06:48:59 [WARNING] - 19564 +2026-02-23 06:48:59 [WARNING] - 22839 +2026-02-23 06:48:59 [DEBUG] - 6730 +2026-02-23 06:48:59 [WARNING] - 2579 +2026-02-23 06:48:59 [ERROR] Segmentation fault - 10753 +2026-02-23 06:48:59 [WARNING] - 14480 +2026-02-23 06:48:59 [DEBUG] - 5487 +2026-02-23 06:48:59 [ERROR] Failed to connect - 6143 +2026-02-23 06:48:59 [INFO] - 13561 +2026-02-23 06:48:59 [WARNING] - 31031 +2026-02-23 06:48:59 [WARNING] - 11803 +2026-02-23 06:48:59 [CRITICAL] - 23684 +2026-02-23 06:48:59 [DEBUG] - 32230 +2026-02-23 06:48:59 [INFO] - 23451 +2026-02-23 06:48:59 [CRITICAL] - 21205 +2026-02-23 06:48:59 [ERROR] Invalid input - 2719 +2026-02-23 06:48:59 [ERROR] Segmentation fault - 20105 +2026-02-23 06:48:59 [DEBUG] - 4362 +2026-02-23 06:48:59 [WARNING] - 12410 +2026-02-23 06:48:59 [CRITICAL] - 24252 +2026-02-23 06:48:59 [INFO] - 5722 +2026-02-23 06:48:59 [CRITICAL] - 24088 +2026-02-23 06:48:59 [CRITICAL] - 19671 +2026-02-23 06:48:59 [CRITICAL] - 3677 +2026-02-23 06:48:59 [DEBUG] - 23799 +2026-02-23 06:48:59 [ERROR] Disk full - 6097 +2026-02-23 06:48:59 [WARNING] - 26595 +2026-02-23 06:48:59 [DEBUG] - 22635 +2026-02-23 06:48:59 [CRITICAL] - 419 +2026-02-23 06:48:59 [WARNING] - 1699 +2026-02-23 06:48:59 [INFO] - 6482 +2026-02-23 06:48:59 [INFO] - 22663 +2026-02-23 06:48:59 [DEBUG] - 6122 +2026-02-23 06:48:59 [DEBUG] - 1793 +2026-02-23 06:48:59 [WARNING] - 4624 +2026-02-23 06:48:59 [ERROR] Disk full - 6417 +2026-02-23 06:48:59 [CRITICAL] - 975 +2026-02-23 06:48:59 [ERROR] Invalid input - 1202 +2026-02-23 06:48:59 [ERROR] Segmentation fault - 16255 +2026-02-23 06:48:59 [DEBUG] - 12600 +2026-02-23 06:48:59 [WARNING] - 13596 +2026-02-23 06:48:59 [DEBUG] - 3169 +2026-02-23 06:48:59 [INFO] - 27100 +2026-02-23 06:48:59 [ERROR] Invalid input - 10781 +2026-02-23 06:48:59 [INFO] - 12783 +2026-02-23 06:48:59 [DEBUG] - 28320 +2026-02-23 06:48:59 [CRITICAL] - 13196 +2026-02-23 06:48:59 [ERROR] Segmentation fault - 31601 +2026-02-23 06:48:59 [WARNING] - 28112 +2026-02-23 06:48:59 [DEBUG] - 27327 +2026-02-23 06:48:59 [DEBUG] - 22639 +2026-02-23 06:48:59 [DEBUG] - 23321 +2026-02-23 06:48:59 [ERROR] Invalid input - 27909 +2026-02-23 06:48:59 [INFO] - 12673 +2026-02-23 06:48:59 [WARNING] - 22496 +2026-02-23 06:48:59 [ERROR] Disk full - 6657 +2026-02-23 06:48:59 [CRITICAL] - 24551 +2026-02-23 06:48:59 [CRITICAL] - 21936 +2026-02-23 06:48:59 [INFO] - 8877 +2026-02-23 06:48:59 [CRITICAL] - 4053 +2026-02-23 06:48:59 [WARNING] - 7801 +2026-02-23 06:48:59 [CRITICAL] - 29353 +2026-02-23 06:48:59 [ERROR] Failed to connect - 25096 +2026-02-23 06:48:59 [INFO] - 26520 +2026-02-23 06:48:59 [CRITICAL] - 24972 +2026-02-23 06:48:59 [WARNING] - 22404 +2026-02-23 06:48:59 [INFO] - 8219 +2026-02-23 06:48:59 [ERROR] Invalid input - 26551 +2026-02-23 06:48:59 [INFO] - 26906 +2026-02-23 06:48:59 [CRITICAL] - 18867 +2026-02-23 06:48:59 [CRITICAL] - 27331 +2026-02-23 06:48:59 [DEBUG] - 8684 +2026-02-23 06:48:59 [INFO] - 10822 +2026-02-23 06:48:59 [ERROR] Out of memory - 13095 +2026-02-23 06:48:59 [DEBUG] - 2773 +2026-02-23 06:48:59 [INFO] - 18948 +2026-02-23 06:48:59 [ERROR] Invalid input - 26004 +2026-02-23 06:48:59 [INFO] - 16711 +2026-02-23 06:48:59 [WARNING] - 12376 +2026-02-23 06:48:59 [DEBUG] - 28644 +2026-02-23 06:48:59 [INFO] - 11687 +2026-02-23 06:48:59 [WARNING] - 22902 +2026-02-23 06:48:59 [WARNING] - 11830 +2026-02-23 06:48:59 [ERROR] Failed to connect - 20362 +2026-02-23 06:48:59 [INFO] - 13174 +2026-02-23 06:48:59 [INFO] - 4557 +2026-02-23 06:48:59 [ERROR] Disk full - 15702 +2026-02-23 06:48:59 [ERROR] Out of memory - 17909 +2026-02-23 06:48:59 [DEBUG] - 31118 +2026-02-23 06:48:59 [DEBUG] - 4974 +2026-02-23 06:48:59 [ERROR] Disk full - 27282 +2026-02-23 06:48:59 [INFO] - 20637 +2026-02-23 06:48:59 [DEBUG] - 21337 +2026-02-23 06:48:59 [ERROR] Segmentation fault - 28392 +2026-02-23 06:48:59 [DEBUG] - 10017 +2026-02-23 06:48:59 [ERROR] Segmentation fault - 28395 +2026-02-23 06:48:59 [DEBUG] - 27753 +2026-02-23 06:48:59 [CRITICAL] - 22503 +2026-02-23 06:48:59 [ERROR] Failed to connect - 27037 +2026-02-23 06:48:59 [ERROR] Segmentation fault - 17493 +2026-02-23 06:48:59 [CRITICAL] - 20212 +2026-02-23 06:48:59 [ERROR] Out of memory - 4183 +2026-02-23 06:48:59 [WARNING] - 21671 +2026-02-23 06:48:59 [CRITICAL] - 2497 +2026-02-23 06:48:59 [DEBUG] - 20831 +2026-02-23 06:48:59 [INFO] - 5523 +2026-02-23 06:48:59 [CRITICAL] - 22314 +2026-02-23 06:49:00 [DEBUG] - 25707 +2026-02-23 06:49:00 [DEBUG] - 20161 +2026-02-23 06:49:00 [DEBUG] - 23666 +2026-02-23 06:49:00 [ERROR] Segmentation fault - 19797 +2026-02-23 06:49:00 [DEBUG] - 2262 +2026-02-23 06:49:00 [INFO] - 22650 +2026-02-23 06:49:00 [WARNING] - 1867 +2026-02-23 06:49:00 [INFO] - 8874 +2026-02-23 06:49:00 [DEBUG] - 23080 +2026-02-23 06:49:00 [INFO] - 22594 +2026-02-23 06:49:00 [DEBUG] - 22803 +2026-02-23 06:49:00 [INFO] - 4529 +2026-02-23 06:49:00 [WARNING] - 5742 +2026-02-23 06:49:00 [WARNING] - 29516 +2026-02-23 06:49:00 [WARNING] - 11199 +2026-02-23 06:49:00 [INFO] - 10250 +2026-02-23 06:49:00 [INFO] - 28850 +2026-02-23 06:49:00 [CRITICAL] - 31846 +2026-02-23 06:49:00 [WARNING] - 30153 +2026-02-23 06:49:00 [INFO] - 17215 +2026-02-23 06:49:00 [ERROR] Segmentation fault - 13610 +2026-02-23 06:49:00 [CRITICAL] - 18180 +2026-02-23 06:49:00 [ERROR] Invalid input - 24059 +2026-02-23 06:49:00 [CRITICAL] - 14154 +2026-02-23 06:49:00 [ERROR] Failed to connect - 14349 +2026-02-23 06:49:00 [CRITICAL] - 7982 +2026-02-23 06:49:00 [DEBUG] - 6043 +2026-02-23 06:49:00 [ERROR] Failed to connect - 30764 +2026-02-23 06:49:00 [WARNING] - 27231 +2026-02-23 06:49:00 [CRITICAL] - 30164 +2026-02-23 06:49:00 [WARNING] - 561 +2026-02-23 06:49:00 [CRITICAL] - 30867 +2026-02-23 06:49:00 [ERROR] Failed to connect - 26720 +2026-02-23 06:49:00 [DEBUG] - 25879 +2026-02-23 06:49:00 [ERROR] Segmentation fault - 18193 +2026-02-23 06:49:00 [INFO] - 15060 +2026-02-23 06:49:00 [INFO] - 14812 +2026-02-23 06:49:00 [INFO] - 24387 +2026-02-23 06:49:00 [CRITICAL] - 30857 +2026-02-23 06:49:00 [WARNING] - 26202 +2026-02-23 06:49:00 [INFO] - 32608 +2026-02-23 06:49:00 [WARNING] - 7302 +2026-02-23 06:49:00 [CRITICAL] - 2771 +2026-02-23 06:49:00 [DEBUG] - 15583 +2026-02-23 06:49:00 [ERROR] Disk full - 6675 +2026-02-23 06:49:00 [DEBUG] - 19673 +2026-02-23 06:49:00 [ERROR] Out of memory - 7572 +2026-02-23 06:49:00 [DEBUG] - 23316 +2026-02-23 06:49:00 [INFO] - 12452 +2026-02-23 06:49:00 [WARNING] - 3482 +2026-02-23 06:49:00 [INFO] - 11605 +2026-02-23 06:49:00 [INFO] - 3839 +2026-02-23 06:49:00 [DEBUG] - 4027 +2026-02-23 06:49:00 [CRITICAL] - 28895 +2026-02-23 06:49:00 [CRITICAL] - 19711 +2026-02-23 06:49:00 [CRITICAL] - 16879 +2026-02-23 06:49:00 [INFO] - 12994 +2026-02-23 06:49:00 [ERROR] Out of memory - 23518 +2026-02-23 06:49:00 [ERROR] Failed to connect - 1413 +2026-02-23 06:49:00 [INFO] - 1988 +2026-02-23 06:49:00 [ERROR] Out of memory - 1316 +2026-02-23 06:49:00 [ERROR] Out of memory - 4417 +2026-02-23 06:49:00 [DEBUG] - 24365 +2026-02-23 06:49:00 [DEBUG] - 2568 +2026-02-23 06:49:00 [DEBUG] - 5992 +2026-02-23 06:49:00 [CRITICAL] - 32131 +2026-02-23 06:49:00 [INFO] - 14923 +2026-02-23 06:49:00 [WARNING] - 17821 +2026-02-23 06:49:00 [CRITICAL] - 8641 +2026-02-23 06:49:00 [CRITICAL] - 105 +2026-02-23 06:49:00 [DEBUG] - 15205 +2026-02-23 06:49:00 [WARNING] - 2186 +2026-02-23 06:49:00 [INFO] - 10905 +2026-02-23 06:49:00 [INFO] - 17849 +2026-02-23 06:49:00 [INFO] - 1353 +2026-02-23 06:49:00 [WARNING] - 5904 +2026-02-23 06:49:00 [INFO] - 6515 +2026-02-23 06:49:00 [WARNING] - 13828 +2026-02-23 06:49:00 [DEBUG] - 16332 +2026-02-23 06:49:00 [DEBUG] - 19282 +2026-02-23 06:49:00 [DEBUG] - 29638 +2026-02-23 06:49:00 [ERROR] Disk full - 9109 +2026-02-23 06:49:00 [INFO] - 20298 +2026-02-23 06:49:00 [WARNING] - 2884 +2026-02-23 06:49:00 [INFO] - 21972 +2026-02-23 06:49:00 [CRITICAL] - 26218 +2026-02-23 06:49:00 [ERROR] Out of memory - 21849 +2026-02-23 06:49:00 [DEBUG] - 5571 +2026-02-23 06:49:00 [ERROR] Invalid input - 9769 +2026-02-23 06:49:00 [DEBUG] - 25054 +2026-02-23 06:49:00 [WARNING] - 20850 +2026-02-23 06:49:00 [DEBUG] - 13351 +2026-02-23 06:49:00 [ERROR] Failed to connect - 31375 +2026-02-23 06:49:00 [WARNING] - 23030 +2026-02-23 06:49:00 [WARNING] - 15471 +2026-02-23 06:49:00 [CRITICAL] - 1575 +2026-02-23 06:49:00 [CRITICAL] - 1679 +2026-02-23 06:49:00 [WARNING] - 24377 +2026-02-23 06:49:00 [WARNING] - 17477 +2026-02-23 06:49:00 [WARNING] - 8654 +2026-02-23 06:49:00 [CRITICAL] - 9797 +2026-02-23 06:49:00 [INFO] - 3698 +2026-02-23 06:49:00 [WARNING] - 5 +2026-02-23 06:49:00 [ERROR] Failed to connect - 15213 +2026-02-23 06:49:00 [WARNING] - 21109 +2026-02-23 06:49:00 [CRITICAL] - 18296 +2026-02-23 06:49:00 [ERROR] Invalid input - 20109 +2026-02-23 06:49:00 [CRITICAL] - 11519 +2026-02-23 06:49:00 [DEBUG] - 13958 +2026-02-23 06:49:00 [DEBUG] - 26556 +2026-02-23 06:49:00 [CRITICAL] - 4656 +2026-02-23 06:49:00 [ERROR] Failed to connect - 8537 +2026-02-23 06:49:00 [ERROR] Invalid input - 11124 +2026-02-23 06:49:00 [INFO] - 32721 +2026-02-23 06:49:00 [WARNING] - 13227 +2026-02-23 06:49:00 [WARNING] - 28186 +2026-02-23 06:49:00 [ERROR] Invalid input - 23758 +2026-02-23 06:49:00 [INFO] - 13455 +2026-02-23 06:49:00 [ERROR] Invalid input - 20238 +2026-02-23 06:49:00 [INFO] - 13479 +2026-02-23 06:49:00 [WARNING] - 15323 +2026-02-23 06:49:00 [DEBUG] - 32673 +2026-02-23 06:49:00 [DEBUG] - 30320 +2026-02-23 06:49:00 [DEBUG] - 23391 +2026-02-23 06:49:00 [DEBUG] - 27006 +2026-02-23 06:49:00 [CRITICAL] - 24174 +2026-02-23 06:49:00 [WARNING] - 16901 +2026-02-23 06:49:00 [CRITICAL] - 17090 +2026-02-23 06:49:00 [WARNING] - 5428 +2026-02-23 06:49:00 [INFO] - 3515 +2026-02-23 06:49:00 [DEBUG] - 21700 +2026-02-23 06:49:00 [INFO] - 16581 +2026-02-23 06:49:00 [INFO] - 5231 +2026-02-23 06:49:00 [CRITICAL] - 30938 +2026-02-23 06:49:00 [DEBUG] - 24717 +2026-02-23 06:49:00 [ERROR] Disk full - 20739 +2026-02-23 06:49:00 [CRITICAL] - 29582 +2026-02-23 06:49:00 [ERROR] Out of memory - 14182 +2026-02-23 06:49:00 [DEBUG] - 26986 +2026-02-23 06:49:00 [DEBUG] - 2246 +2026-02-23 06:49:00 [CRITICAL] - 21118 +2026-02-23 06:49:00 [ERROR] Invalid input - 12086 +2026-02-23 06:49:00 [CRITICAL] - 30808 +2026-02-23 06:49:00 [ERROR] Failed to connect - 31777 +2026-02-23 06:49:00 [INFO] - 31421 +2026-02-23 06:49:00 [ERROR] Segmentation fault - 27214 +2026-02-23 06:49:00 [WARNING] - 15135 +2026-02-23 06:49:00 [INFO] - 2925 +2026-02-23 06:49:00 [ERROR] Failed to connect - 7454 +2026-02-23 06:49:00 [DEBUG] - 6985 +2026-02-23 06:49:00 [ERROR] Failed to connect - 9428 +2026-02-23 06:49:00 [ERROR] Disk full - 22221 +2026-02-23 06:49:00 [CRITICAL] - 6575 +2026-02-23 06:49:00 [WARNING] - 24718 +2026-02-23 06:49:00 [ERROR] Invalid input - 11526 +2026-02-23 06:49:00 [DEBUG] - 4363 +2026-02-23 06:49:00 [WARNING] - 4442 +2026-02-23 06:49:00 [DEBUG] - 15213 +2026-02-23 06:49:00 [CRITICAL] - 23809 +2026-02-23 06:49:00 [WARNING] - 8300 +2026-02-23 06:49:00 [WARNING] - 14423 +2026-02-23 06:49:00 [DEBUG] - 20336 +2026-02-23 06:49:00 [ERROR] Segmentation fault - 17832 +2026-02-23 06:49:00 [INFO] - 32630 +2026-02-23 06:49:00 [DEBUG] - 13771 +2026-02-23 06:49:00 [DEBUG] - 22665 +2026-02-23 06:49:00 [DEBUG] - 18997 +2026-02-23 06:49:00 [DEBUG] - 14422 +2026-02-23 06:49:00 [INFO] - 1788 +2026-02-23 06:49:00 [INFO] - 16136 +2026-02-23 06:49:00 [ERROR] Disk full - 24268 +2026-02-23 06:49:00 [ERROR] Failed to connect - 31366 +2026-02-23 06:49:00 [INFO] - 13155 +2026-02-23 06:49:00 [INFO] - 249 +2026-02-23 06:49:00 [DEBUG] - 3491 +2026-02-23 06:49:00 [CRITICAL] - 11847 +2026-02-23 06:49:00 [DEBUG] - 5756 +2026-02-23 06:49:00 [ERROR] Invalid input - 18402 +2026-02-23 06:49:00 [DEBUG] - 6187 +2026-02-23 06:49:00 [WARNING] - 17432 +2026-02-23 06:49:00 [INFO] - 8129 +2026-02-23 06:49:00 [DEBUG] - 24768 +2026-02-23 06:49:00 [CRITICAL] - 26897 +2026-02-23 06:49:00 [INFO] - 11179 +2026-02-23 06:49:00 [WARNING] - 20840 +2026-02-23 06:49:00 [CRITICAL] - 15736 +2026-02-23 06:49:00 [ERROR] Failed to connect - 12090 +2026-02-23 06:49:00 [INFO] - 24880 +2026-02-23 06:49:00 [CRITICAL] - 17998 +2026-02-23 06:49:00 [WARNING] - 7722 +2026-02-23 06:49:00 [ERROR] Disk full - 27321 +2026-02-23 06:49:00 [INFO] - 22180 +2026-02-23 06:49:00 [ERROR] Invalid input - 17263 +2026-02-23 06:49:00 [ERROR] Segmentation fault - 24022 +2026-02-23 06:49:00 [ERROR] Segmentation fault - 24180 +2026-02-23 06:49:00 [ERROR] Failed to connect - 8483 +2026-02-23 06:49:00 [INFO] - 26298 +2026-02-23 06:49:00 [ERROR] Failed to connect - 3497 +2026-02-23 06:49:00 [CRITICAL] - 10120 +2026-02-23 06:49:00 [WARNING] - 5213 +2026-02-23 06:49:00 [DEBUG] - 8217 +2026-02-23 06:49:00 [INFO] - 9288 +2026-02-23 06:49:00 [INFO] - 26889 +2026-02-23 06:49:00 [CRITICAL] - 29861 +2026-02-23 06:49:00 [WARNING] - 5869 +2026-02-23 06:49:00 [CRITICAL] - 7438 +2026-02-23 06:49:00 [INFO] - 16204 +2026-02-23 06:49:00 [CRITICAL] - 7014 +2026-02-23 06:49:00 [CRITICAL] - 13660 +2026-02-23 06:49:00 [CRITICAL] - 11760 +2026-02-23 06:49:00 [WARNING] - 29692 +2026-02-23 06:49:00 [DEBUG] - 23721 +2026-02-23 06:49:00 [INFO] - 26934 +2026-02-23 06:49:00 [CRITICAL] - 6729 +2026-02-23 06:49:00 [INFO] - 7900 +2026-02-23 06:49:00 [INFO] - 21353 +2026-02-23 06:49:00 [DEBUG] - 1670 +2026-02-23 06:49:00 [WARNING] - 23310 +2026-02-23 06:49:00 [WARNING] - 15244 +2026-02-23 06:49:00 [WARNING] - 5388 +2026-02-23 06:49:00 [CRITICAL] - 7189 +2026-02-23 06:49:00 [INFO] - 13758 +2026-02-23 06:49:00 [DEBUG] - 23259 +2026-02-23 06:49:00 [DEBUG] - 3051 +2026-02-23 06:49:00 [WARNING] - 10709 +2026-02-23 06:49:00 [DEBUG] - 7501 +2026-02-23 06:49:00 [WARNING] - 18940 +2026-02-23 06:49:00 [WARNING] - 10520 +2026-02-23 06:49:00 [WARNING] - 14868 +2026-02-23 06:49:00 [INFO] - 2844 +2026-02-23 06:49:00 [WARNING] - 25331 +2026-02-23 06:49:00 [ERROR] Out of memory - 25662 +2026-02-23 06:49:00 [ERROR] Invalid input - 21003 +2026-02-23 06:49:00 [INFO] - 21855 +2026-02-23 06:49:00 [INFO] - 21343 +2026-02-23 06:49:00 [DEBUG] - 28771 +2026-02-23 06:49:00 [DEBUG] - 11294 +2026-02-23 06:49:00 [CRITICAL] - 20901 +2026-02-23 06:49:00 [ERROR] Out of memory - 20857 +2026-02-23 06:49:00 [CRITICAL] - 23208 +2026-02-23 06:49:00 [ERROR] Invalid input - 13422 +2026-02-23 06:49:00 [DEBUG] - 16221 +2026-02-23 06:49:00 [INFO] - 5297 +2026-02-23 06:49:00 [DEBUG] - 26734 +2026-02-23 06:49:00 [CRITICAL] - 20464 +2026-02-23 06:49:00 [ERROR] Failed to connect - 27321 +2026-02-23 06:49:00 [INFO] - 32227 +2026-02-23 06:49:00 [ERROR] Invalid input - 6355 +2026-02-23 06:49:00 [INFO] - 2125 +2026-02-23 06:49:00 [INFO] - 29791 +2026-02-23 06:49:00 [WARNING] - 18139 +2026-02-23 06:49:00 [CRITICAL] - 18444 +2026-02-23 06:49:00 [DEBUG] - 31834 +2026-02-23 06:49:00 [ERROR] Invalid input - 4173 +2026-02-23 06:49:00 [DEBUG] - 19610 +2026-02-23 06:49:00 [INFO] - 29455 +2026-02-23 06:49:00 [CRITICAL] - 14409 +2026-02-23 06:49:00 [ERROR] Failed to connect - 8082 +2026-02-23 06:49:00 [CRITICAL] - 17559 +2026-02-23 06:49:00 [CRITICAL] - 30633 +2026-02-23 06:49:00 [CRITICAL] - 32673 +2026-02-23 06:49:00 [CRITICAL] - 12973 +2026-02-23 06:49:00 [DEBUG] - 20474 +2026-02-23 06:49:00 [WARNING] - 4877 +2026-02-23 06:49:00 [CRITICAL] - 27601 +2026-02-23 06:49:00 [CRITICAL] - 7616 +2026-02-23 06:49:00 [WARNING] - 11001 +2026-02-23 06:49:00 [CRITICAL] - 1719 +2026-02-23 06:49:00 [WARNING] - 9419 +2026-02-23 06:49:00 [INFO] - 2922 +2026-02-23 06:49:00 [DEBUG] - 7822 +2026-02-23 06:49:00 [INFO] - 25277 +2026-02-23 06:49:00 [ERROR] Segmentation fault - 20307 +2026-02-23 06:49:00 [CRITICAL] - 31390 +2026-02-23 06:49:00 [INFO] - 31291 +2026-02-23 06:49:00 [WARNING] - 20432 +2026-02-23 06:49:00 [INFO] - 22312 +2026-02-23 06:49:00 [INFO] - 25889 +2026-02-23 06:49:00 [WARNING] - 18066 +2026-02-23 06:49:00 [DEBUG] - 7764 +2026-02-23 06:49:00 [ERROR] Segmentation fault - 25625 +2026-02-23 06:49:00 [DEBUG] - 12878 +2026-02-23 06:49:00 [ERROR] Failed to connect - 32234 +2026-02-23 06:49:00 [INFO] - 20145 +2026-02-23 06:49:00 [WARNING] - 21847 +2026-02-23 06:49:00 [INFO] - 381 +2026-02-23 06:49:00 [DEBUG] - 10316 +2026-02-23 06:49:00 [WARNING] - 2734 +2026-02-23 06:49:00 [WARNING] - 6413 +2026-02-23 06:49:00 [CRITICAL] - 21757 +2026-02-23 06:49:00 [INFO] - 29153 +2026-02-23 06:49:00 [DEBUG] - 26235 +2026-02-23 06:49:00 [CRITICAL] - 10895 +2026-02-23 06:49:00 [WARNING] - 31857 +2026-02-23 06:49:00 [DEBUG] - 1537 +2026-02-23 06:49:00 [INFO] - 16154 +2026-02-23 06:49:00 [ERROR] Failed to connect - 20470 +2026-02-23 06:49:00 [DEBUG] - 6983 +2026-02-23 06:49:00 [ERROR] Out of memory - 26842 +2026-02-23 06:49:00 [CRITICAL] - 1574 +2026-02-23 06:49:00 [WARNING] - 20219 +2026-02-23 06:49:00 [ERROR] Failed to connect - 23504 +2026-02-23 06:49:00 [DEBUG] - 10692 +2026-02-23 06:49:00 [CRITICAL] - 11286 +2026-02-23 06:49:00 [INFO] - 22410 +2026-02-23 06:49:00 [WARNING] - 22696 +2026-02-23 06:49:00 [DEBUG] - 4687 +2026-02-23 06:49:00 [INFO] - 5031 +2026-02-23 06:49:00 [DEBUG] - 22095 +2026-02-23 06:49:00 [ERROR] Disk full - 14788 +2026-02-23 06:49:00 [ERROR] Out of memory - 13525 +2026-02-23 06:49:00 [INFO] - 10391 +2026-02-23 06:49:00 [INFO] - 10381 +2026-02-23 06:49:00 [CRITICAL] - 3444 +2026-02-23 06:49:00 [CRITICAL] - 5386 +2026-02-23 06:49:00 [INFO] - 29148 +2026-02-23 06:49:00 [WARNING] - 3517 +2026-02-23 06:49:00 [ERROR] Failed to connect - 5744 +2026-02-23 06:49:00 [DEBUG] - 18308 +2026-02-23 06:49:00 [INFO] - 29060 +2026-02-23 06:49:00 [DEBUG] - 27252 +2026-02-23 06:49:00 [INFO] - 11708 +2026-02-23 06:49:00 [WARNING] - 29135 +2026-02-23 06:49:00 [DEBUG] - 17303 +2026-02-23 06:49:00 [ERROR] Failed to connect - 27800 +2026-02-23 06:49:00 [WARNING] - 1724 +2026-02-23 06:49:00 [ERROR] Invalid input - 285 +2026-02-23 06:49:00 [WARNING] - 31940 +2026-02-23 06:49:00 [DEBUG] - 27332 +2026-02-23 06:49:00 [ERROR] Out of memory - 20507 +2026-02-23 06:49:00 [CRITICAL] - 7778 +2026-02-23 06:49:00 [WARNING] - 9845 +2026-02-23 06:49:00 [ERROR] Segmentation fault - 2823 +2026-02-23 06:49:00 [INFO] - 6255 +2026-02-23 06:49:00 [WARNING] - 6482 +2026-02-23 06:49:00 [ERROR] Invalid input - 25571 +2026-02-23 06:49:00 [INFO] - 5588 +2026-02-23 06:49:00 [CRITICAL] - 15209 +2026-02-23 06:49:00 [ERROR] Out of memory - 27520 +2026-02-23 06:49:00 [DEBUG] - 17397 +2026-02-23 06:49:00 [DEBUG] - 6342 +2026-02-23 06:49:00 [ERROR] Disk full - 11697 +2026-02-23 06:49:00 [ERROR] Disk full - 14207 +2026-02-23 06:49:00 [DEBUG] - 22670 +2026-02-23 06:49:00 [ERROR] Disk full - 7992 +2026-02-23 06:49:00 [INFO] - 1347 +2026-02-23 06:49:00 [INFO] - 9735 +2026-02-23 06:49:00 [ERROR] Out of memory - 4742 +2026-02-23 06:49:00 [INFO] - 24085 +2026-02-23 06:49:00 [WARNING] - 5934 +2026-02-23 06:49:00 [ERROR] Failed to connect - 11348 +2026-02-23 06:49:00 [DEBUG] - 5591 +2026-02-23 06:49:00 [ERROR] Segmentation fault - 19963 +2026-02-23 06:49:00 [CRITICAL] - 18446 +2026-02-23 06:49:00 [DEBUG] - 5984 +2026-02-23 06:49:00 [WARNING] - 8773 +2026-02-23 06:49:00 [DEBUG] - 17606 +2026-02-23 06:49:00 [WARNING] - 7314 +2026-02-23 06:49:00 [WARNING] - 3190 +2026-02-23 06:49:00 [ERROR] Invalid input - 14338 +2026-02-23 06:49:00 [CRITICAL] - 6493 +2026-02-23 06:49:00 [ERROR] Invalid input - 2225 +2026-02-23 06:49:00 [ERROR] Invalid input - 20807 +2026-02-23 06:49:00 [WARNING] - 464 +2026-02-23 06:49:00 [ERROR] Invalid input - 29305 +2026-02-23 06:49:00 [INFO] - 38 +2026-02-23 06:49:00 [ERROR] Disk full - 11640 +2026-02-23 06:49:00 [CRITICAL] - 25577 +2026-02-23 06:49:00 [DEBUG] - 31775 +2026-02-23 06:49:00 [ERROR] Failed to connect - 24636 +2026-02-23 06:49:00 [CRITICAL] - 11966 +2026-02-23 06:49:00 [CRITICAL] - 24871 +2026-02-23 06:49:00 [INFO] - 4839 +2026-02-23 06:49:00 [CRITICAL] - 15245 +2026-02-23 06:49:00 [INFO] - 1449 +2026-02-23 06:49:00 [INFO] - 18088 +2026-02-23 06:49:00 [WARNING] - 25255 +2026-02-23 06:49:00 [CRITICAL] - 12548 +2026-02-23 06:49:00 [CRITICAL] - 29934 +2026-02-23 06:49:00 [INFO] - 10329 +2026-02-23 06:49:00 [CRITICAL] - 92 +2026-02-23 06:49:00 [ERROR] Segmentation fault - 1086 +2026-02-23 06:49:00 [ERROR] Segmentation fault - 7667 +2026-02-23 06:49:00 [CRITICAL] - 8860 +2026-02-23 06:49:00 [CRITICAL] - 1 +2026-02-23 06:49:00 [CRITICAL] - 22502 +2026-02-23 06:49:00 [CRITICAL] - 27603 +2026-02-23 06:49:00 [CRITICAL] - 22918 +2026-02-23 06:49:00 [DEBUG] - 29621 +2026-02-23 06:49:00 [WARNING] - 13570 +2026-02-23 06:49:00 [CRITICAL] - 9192 +2026-02-23 06:49:00 [ERROR] Failed to connect - 30590 +2026-02-23 06:49:00 [WARNING] - 313 +2026-02-23 06:49:00 [WARNING] - 20605 +2026-02-23 06:49:00 [WARNING] - 29040 +2026-02-23 06:49:00 [CRITICAL] - 21543 +2026-02-23 06:49:00 [CRITICAL] - 6193 +2026-02-23 06:49:00 [INFO] - 12916 +2026-02-23 06:49:00 [INFO] - 20074 +2026-02-23 06:49:00 [CRITICAL] - 14675 +2026-02-23 06:49:00 [ERROR] Out of memory - 16082 +2026-02-23 06:49:00 [INFO] - 20661 +2026-02-23 06:49:00 [CRITICAL] - 19347 +2026-02-23 06:49:00 [WARNING] - 18183 +2026-02-23 06:49:00 [CRITICAL] - 9516 +2026-02-23 06:49:00 [ERROR] Out of memory - 13135 +2026-02-23 06:49:00 [CRITICAL] - 5491 +2026-02-23 06:49:00 [DEBUG] - 28546 +2026-02-23 06:49:00 [ERROR] Failed to connect - 289 +2026-02-23 06:49:00 [WARNING] - 1830 +2026-02-23 06:49:00 [ERROR] Invalid input - 32188 +2026-02-23 06:49:00 [ERROR] Out of memory - 26484 +2026-02-23 06:49:00 [CRITICAL] - 26868 +2026-02-23 06:49:00 [CRITICAL] - 3899 +2026-02-23 06:49:00 [CRITICAL] - 24681 +2026-02-23 06:49:00 [CRITICAL] - 14581 +2026-02-23 06:49:00 [INFO] - 10816 +2026-02-23 06:49:00 [DEBUG] - 2071 +2026-02-23 06:49:00 [INFO] - 1784 +2026-02-23 06:49:00 [CRITICAL] - 19331 +2026-02-23 06:49:00 [INFO] - 21462 +2026-02-23 06:49:00 [WARNING] - 24091 +2026-02-23 06:49:00 [WARNING] - 19404 +2026-02-23 06:49:00 [ERROR] Disk full - 19310 +2026-02-23 06:49:00 [INFO] - 19229 +2026-02-23 06:49:00 [INFO] - 6679 +2026-02-23 06:49:00 [WARNING] - 1302 +2026-02-23 06:49:00 [DEBUG] - 25183 +2026-02-23 06:49:00 [INFO] - 2042 +2026-02-23 06:49:00 [ERROR] Out of memory - 24092 +2026-02-23 06:49:00 [INFO] - 20900 +2026-02-23 06:49:00 [DEBUG] - 9933 +2026-02-23 06:49:00 [ERROR] Out of memory - 26242 +2026-02-23 06:49:00 [DEBUG] - 8760 +2026-02-23 06:49:00 [CRITICAL] - 26100 +2026-02-23 06:49:00 [ERROR] Disk full - 5266 +2026-02-23 06:49:00 [CRITICAL] - 13151 +2026-02-23 06:49:00 [ERROR] Disk full - 6070 +2026-02-23 06:49:00 [DEBUG] - 30535 +2026-02-23 06:49:00 [INFO] - 27523 +2026-02-23 06:49:00 [DEBUG] - 2797 +2026-02-23 06:49:00 [WARNING] - 29494 +2026-02-23 06:49:00 [ERROR] Out of memory - 3316 +2026-02-23 06:49:00 [INFO] - 13541 +2026-02-23 06:49:00 [WARNING] - 28574 +2026-02-23 06:49:00 [INFO] - 21472 +2026-02-23 06:49:00 [INFO] - 4074 +2026-02-23 06:49:00 [WARNING] - 14714 +2026-02-23 06:49:00 [DEBUG] - 4994 +2026-02-23 06:49:00 [WARNING] - 31792 +2026-02-23 06:49:00 [ERROR] Out of memory - 17523 +2026-02-23 06:49:00 [CRITICAL] - 7595 +2026-02-23 06:49:00 [WARNING] - 28917 +2026-02-23 06:49:00 [CRITICAL] - 30305 +2026-02-23 06:49:00 [ERROR] Invalid input - 30646 +2026-02-23 06:49:00 [CRITICAL] - 25041 +2026-02-23 06:49:00 [ERROR] Segmentation fault - 8136 +2026-02-23 06:49:00 [WARNING] - 11268 +2026-02-23 06:49:00 [DEBUG] - 4428 +2026-02-23 06:49:00 [CRITICAL] - 5641 +2026-02-23 06:49:00 [INFO] - 15356 +2026-02-23 06:49:00 [INFO] - 28549 +2026-02-23 06:49:00 [INFO] - 21047 +2026-02-23 06:49:00 [CRITICAL] - 24776 +2026-02-23 06:49:00 [INFO] - 2024 +2026-02-23 06:49:00 [ERROR] Invalid input - 14280 +2026-02-23 06:49:00 [CRITICAL] - 7085 +2026-02-23 06:49:00 [DEBUG] - 20554 +2026-02-23 06:49:00 [ERROR] Invalid input - 24155 +2026-02-23 06:49:00 [ERROR] Invalid input - 22098 +2026-02-23 06:49:00 [DEBUG] - 20605 +2026-02-23 06:49:00 [ERROR] Out of memory - 5096 +2026-02-23 06:49:00 [CRITICAL] - 17784 +2026-02-23 06:49:00 [WARNING] - 19283 +2026-02-23 06:49:00 [WARNING] - 20508 +2026-02-23 06:49:00 [WARNING] - 8179 +2026-02-23 06:49:00 [INFO] - 10680 +2026-02-23 06:49:00 [ERROR] Out of memory - 15579 +2026-02-23 06:49:00 [DEBUG] - 14785 +2026-02-23 06:49:00 [CRITICAL] - 8852 +2026-02-23 06:49:00 [CRITICAL] - 22793 +2026-02-23 06:49:00 [CRITICAL] - 11635 +2026-02-23 06:49:00 [INFO] - 610 +2026-02-23 06:49:00 [INFO] - 10760 +2026-02-23 06:49:00 [INFO] - 10723 +2026-02-23 06:49:00 [WARNING] - 6780 +2026-02-23 06:49:00 [ERROR] Failed to connect - 27182 +2026-02-23 06:49:00 [DEBUG] - 25145 +2026-02-23 06:49:00 [WARNING] - 16636 +2026-02-23 06:49:00 [CRITICAL] - 32303 +2026-02-23 06:49:00 [ERROR] Failed to connect - 32234 +2026-02-23 06:49:00 [CRITICAL] - 21140 +2026-02-23 06:49:00 [WARNING] - 18422 +2026-02-23 06:49:00 [CRITICAL] - 11638 +2026-02-23 06:49:00 [INFO] - 18687 +2026-02-23 06:49:00 [CRITICAL] - 5184 +2026-02-23 06:49:00 [WARNING] - 32231 +2026-02-23 06:49:00 [ERROR] Segmentation fault - 20482 +2026-02-23 06:49:00 [WARNING] - 24549 +2026-02-23 06:49:00 [WARNING] - 29305 +2026-02-23 06:49:00 [DEBUG] - 25032 +2026-02-23 06:49:00 [WARNING] - 7025 +2026-02-23 06:49:00 [ERROR] Out of memory - 19485 +2026-02-23 06:49:00 [INFO] - 20153 +2026-02-23 06:49:00 [INFO] - 29461 +2026-02-23 06:49:00 [CRITICAL] - 31231 +2026-02-23 06:49:00 [INFO] - 22644 +2026-02-23 06:49:00 [WARNING] - 17521 +2026-02-23 06:49:00 [ERROR] Invalid input - 32019 +2026-02-23 06:49:00 [INFO] - 18403 +2026-02-23 06:49:00 [CRITICAL] - 4384 +2026-02-23 06:49:00 [CRITICAL] - 11879 +2026-02-23 06:49:00 [INFO] - 23376 +2026-02-23 06:49:00 [CRITICAL] - 30052 +2026-02-23 06:49:00 [ERROR] Disk full - 261 +2026-02-23 06:49:00 [ERROR] Invalid input - 16548 +2026-02-23 06:49:00 [ERROR] Invalid input - 20771 +2026-02-23 06:49:00 [INFO] - 17815 +2026-02-23 06:49:00 [DEBUG] - 20973 +2026-02-23 06:49:00 [DEBUG] - 1435 +2026-02-23 06:49:00 [CRITICAL] - 24726 +2026-02-23 06:49:00 [ERROR] Disk full - 3200 +2026-02-23 06:49:00 [ERROR] Failed to connect - 3917 +2026-02-23 06:49:00 [DEBUG] - 21444 +2026-02-23 06:49:00 [DEBUG] - 20390 +2026-02-23 06:49:00 [CRITICAL] - 19166 +2026-02-23 06:49:00 [CRITICAL] - 28857 +2026-02-23 06:49:00 [INFO] - 16365 +2026-02-23 06:49:00 [CRITICAL] - 16924 +2026-02-23 06:49:00 [INFO] - 6394 +2026-02-23 06:49:00 [CRITICAL] - 4986 +2026-02-23 06:49:00 [WARNING] - 26797 +2026-02-23 06:49:00 [DEBUG] - 2772 +2026-02-23 06:49:00 [ERROR] Invalid input - 21246 +2026-02-23 06:49:00 [ERROR] Invalid input - 16911 +2026-02-23 06:49:00 [ERROR] Invalid input - 16792 +2026-02-23 06:49:00 [DEBUG] - 5748 +2026-02-23 06:49:00 [INFO] - 25792 +2026-02-23 06:49:00 [WARNING] - 9413 +2026-02-23 06:49:00 [ERROR] Segmentation fault - 13359 +2026-02-23 06:49:00 [CRITICAL] - 3209 +2026-02-23 06:49:00 [ERROR] Invalid input - 19610 +2026-02-23 06:49:00 [ERROR] Failed to connect - 10075 +2026-02-23 06:49:00 [ERROR] Segmentation fault - 11498 +2026-02-23 06:49:00 [CRITICAL] - 12435 +2026-02-23 06:49:00 [INFO] - 5540 +2026-02-23 06:49:00 [WARNING] - 13913 +2026-02-23 06:49:00 [CRITICAL] - 12385 +2026-02-23 06:49:00 [WARNING] - 10936 +2026-02-23 06:49:00 [DEBUG] - 7432 +2026-02-23 06:49:00 [CRITICAL] - 4171 +2026-02-23 06:49:00 [CRITICAL] - 15487 +2026-02-23 06:49:00 [ERROR] Invalid input - 18031 +2026-02-23 06:49:00 [CRITICAL] - 29696 +2026-02-23 06:49:00 [DEBUG] - 31778 +2026-02-23 06:49:00 [DEBUG] - 7272 +2026-02-23 06:49:00 [DEBUG] - 4802 +2026-02-23 06:49:00 [DEBUG] - 28369 +2026-02-23 06:49:00 [ERROR] Disk full - 21638 +2026-02-23 06:49:00 [ERROR] Disk full - 7700 +2026-02-23 06:49:00 [CRITICAL] - 22065 +2026-02-23 06:49:00 [INFO] - 29787 +2026-02-23 06:49:00 [WARNING] - 18921 +2026-02-23 06:49:00 [WARNING] - 30520 +2026-02-23 06:49:00 [INFO] - 18400 +2026-02-23 06:49:00 [WARNING] - 24357 +2026-02-23 06:49:00 [WARNING] - 373 +2026-02-23 06:49:00 [INFO] - 27270 +2026-02-23 06:49:00 [WARNING] - 430 +2026-02-23 06:49:00 [INFO] - 3778 +2026-02-23 06:49:00 [INFO] - 6974 +2026-02-23 06:49:00 [INFO] - 9551 +2026-02-23 06:49:00 [CRITICAL] - 16970 +2026-02-23 06:49:00 [CRITICAL] - 13386 +2026-02-23 06:49:00 [ERROR] Out of memory - 26221 +2026-02-23 06:49:00 [ERROR] Segmentation fault - 14089 +2026-02-23 06:49:00 [WARNING] - 7297 +2026-02-23 06:49:00 [DEBUG] - 12992 +2026-02-23 06:49:00 [ERROR] Invalid input - 52 +2026-02-23 06:49:00 [INFO] - 30202 +2026-02-23 06:49:00 [DEBUG] - 12985 +2026-02-23 06:49:00 [WARNING] - 18997 +2026-02-23 06:49:00 [CRITICAL] - 21151 +2026-02-23 06:49:00 [WARNING] - 25322 +2026-02-23 06:49:00 [WARNING] - 11617 +2026-02-23 06:49:00 [CRITICAL] - 4876 +2026-02-23 06:49:00 [CRITICAL] - 18677 +2026-02-23 06:49:00 [WARNING] - 11884 +2026-02-23 06:49:00 [WARNING] - 11709 +2026-02-23 06:49:00 [WARNING] - 25019 +2026-02-23 06:49:00 [DEBUG] - 8483 +2026-02-23 06:49:00 [WARNING] - 27966 +2026-02-23 06:49:00 [INFO] - 27069 +2026-02-23 06:49:00 [DEBUG] - 13642 +2026-02-23 06:49:00 [DEBUG] - 23326 +2026-02-23 06:49:00 [CRITICAL] - 24878 +2026-02-23 06:49:00 [INFO] - 19446 +2026-02-23 06:49:00 [CRITICAL] - 32307 +2026-02-23 06:49:00 [WARNING] - 16749 +2026-02-23 06:49:00 [WARNING] - 32470 +2026-02-23 06:49:00 [WARNING] - 16681 +2026-02-23 06:49:00 [DEBUG] - 7605 +2026-02-23 06:49:00 [ERROR] Segmentation fault - 16192 +2026-02-23 06:49:00 [WARNING] - 6120 +2026-02-23 06:49:00 [CRITICAL] - 29825 +2026-02-23 06:49:00 [INFO] - 14870 +2026-02-23 06:49:00 [INFO] - 22230 +2026-02-23 06:49:00 [DEBUG] - 14601 +2026-02-23 06:49:00 [INFO] - 4068 +2026-02-23 06:49:00 [DEBUG] - 14922 +2026-02-23 06:49:00 [INFO] - 51 +2026-02-23 06:49:00 [DEBUG] - 21922 +2026-02-23 06:49:00 [DEBUG] - 14385 +2026-02-23 06:49:00 [INFO] - 18767 +2026-02-23 06:49:00 [WARNING] - 6445 +2026-02-23 06:49:00 [ERROR] Disk full - 12562 +2026-02-23 06:49:00 [ERROR] Failed to connect - 18523 +2026-02-23 06:49:00 [ERROR] Segmentation fault - 5878 +2026-02-23 06:49:00 [WARNING] - 22329 +2026-02-23 06:49:00 [WARNING] - 5132 +2026-02-23 06:49:00 [INFO] - 23247 +2026-02-23 06:49:00 [WARNING] - 21868 +2026-02-23 06:49:00 [INFO] - 20370 +2026-02-23 06:49:00 [WARNING] - 21040 +2026-02-23 06:49:00 [ERROR] Invalid input - 14826 +2026-02-23 06:49:00 [DEBUG] - 5430 +2026-02-23 06:49:00 [ERROR] Invalid input - 16093 +2026-02-23 06:49:00 [WARNING] - 6000 +2026-02-23 06:49:00 [WARNING] - 17524 +2026-02-23 06:49:00 [CRITICAL] - 11944 +2026-02-23 06:49:00 [CRITICAL] - 6390 +2026-02-23 06:49:00 [WARNING] - 9191 +2026-02-23 06:49:00 [DEBUG] - 27004 +2026-02-23 06:49:00 [INFO] - 32301 +2026-02-23 06:49:00 [WARNING] - 15015 +2026-02-23 06:49:00 [DEBUG] - 23700 +2026-02-23 06:49:00 [WARNING] - 18348 +2026-02-23 06:49:00 [ERROR] Out of memory - 32077 +2026-02-23 06:49:00 [ERROR] Segmentation fault - 13877 +2026-02-23 06:49:00 [INFO] - 18502 +2026-02-23 06:49:00 [DEBUG] - 16145 +2026-02-23 06:49:00 [DEBUG] - 25254 +2026-02-23 06:49:00 [INFO] - 31632 +2026-02-23 06:49:00 [ERROR] Disk full - 15599 +2026-02-23 06:49:00 [DEBUG] - 30823 +2026-02-23 06:49:00 [INFO] - 23925 +2026-02-23 06:49:00 [WARNING] - 4311 +2026-02-23 06:49:00 [DEBUG] - 6837 +2026-02-23 06:49:00 [CRITICAL] - 20890 +2026-02-23 06:49:00 [CRITICAL] - 20675 +2026-02-23 06:49:00 [WARNING] - 18048 +2026-02-23 06:49:00 [WARNING] - 6615 +2026-02-23 06:49:00 [WARNING] - 14796 +2026-02-23 06:49:00 [INFO] - 9937 +2026-02-23 06:49:00 [WARNING] - 3504 +2026-02-23 06:49:00 [INFO] - 18652 +2026-02-23 06:49:00 [DEBUG] - 19665 +2026-02-23 06:49:00 [DEBUG] - 29217 +2026-02-23 06:49:00 [CRITICAL] - 2080 +2026-02-23 06:49:00 [CRITICAL] - 22459 +2026-02-23 06:49:00 [WARNING] - 1961 +2026-02-23 06:49:00 [INFO] - 23951 +2026-02-23 06:49:00 [DEBUG] - 13903 +2026-02-23 06:49:00 [INFO] - 24201 +2026-02-23 06:49:00 [INFO] - 14133 +2026-02-23 06:49:00 [CRITICAL] - 27434 +2026-02-23 06:49:00 [DEBUG] - 6442 +2026-02-23 06:49:00 [DEBUG] - 2386 +2026-02-23 06:49:00 [ERROR] Out of memory - 18350 +2026-02-23 06:49:00 [ERROR] Out of memory - 27428 +2026-02-23 06:49:00 [DEBUG] - 27317 +2026-02-23 06:49:00 [CRITICAL] - 26906 +2026-02-23 06:49:00 [WARNING] - 18043 +2026-02-23 06:49:00 [CRITICAL] - 21432 +2026-02-23 06:49:00 [CRITICAL] - 27987 +2026-02-23 06:49:00 [DEBUG] - 27912 +2026-02-23 06:49:00 [WARNING] - 30474 +2026-02-23 06:49:00 [ERROR] Segmentation fault - 20312 +2026-02-23 06:49:00 [WARNING] - 17835 +2026-02-23 06:49:00 [ERROR] Failed to connect - 27340 +2026-02-23 06:49:00 [CRITICAL] - 26083 +2026-02-23 06:49:00 [ERROR] Out of memory - 696 +2026-02-23 06:49:00 [ERROR] Out of memory - 17182 +2026-02-23 06:49:00 [ERROR] Invalid input - 4832 +2026-02-23 06:49:00 [DEBUG] - 5189 +2026-02-23 06:49:00 [WARNING] - 31979 +2026-02-23 06:49:01 [WARNING] - 5257 +2026-02-23 06:49:01 [WARNING] - 23496 +2026-02-23 06:49:01 [CRITICAL] - 9401 +2026-02-23 06:49:01 [DEBUG] - 13559 +2026-02-23 06:49:01 [WARNING] - 1888 +2026-02-23 06:49:01 [CRITICAL] - 22946 +2026-02-23 06:49:01 [WARNING] - 23625 +2026-02-23 06:49:01 [DEBUG] - 20096 +2026-02-23 06:49:01 [CRITICAL] - 21943 +2026-02-23 06:49:01 [INFO] - 3020 +2026-02-23 06:49:01 [ERROR] Invalid input - 18694 +2026-02-23 06:49:01 [ERROR] Out of memory - 18388 +2026-02-23 06:49:01 [DEBUG] - 30904 +2026-02-23 06:49:01 [INFO] - 27588 +2026-02-23 06:49:01 [INFO] - 19649 +2026-02-23 06:49:01 [CRITICAL] - 9204 +2026-02-23 06:49:01 [CRITICAL] - 12573 +2026-02-23 06:49:01 [WARNING] - 14613 +2026-02-23 06:49:01 [WARNING] - 25063 +2026-02-23 06:49:01 [DEBUG] - 12632 +2026-02-23 06:49:01 [CRITICAL] - 16931 +2026-02-23 06:49:01 [ERROR] Segmentation fault - 24233 +2026-02-23 06:49:01 [ERROR] Disk full - 14009 +2026-02-23 06:49:01 [WARNING] - 30010 +2026-02-23 06:49:01 [DEBUG] - 31898 +2026-02-23 06:49:01 [ERROR] Invalid input - 27472 +2026-02-23 06:49:01 [ERROR] Failed to connect - 12377 +2026-02-23 06:49:01 [CRITICAL] - 9678 +2026-02-23 06:49:01 [DEBUG] - 21358 +2026-02-23 06:49:01 [CRITICAL] - 3317 +2026-02-23 06:49:01 [ERROR] Disk full - 536 +2026-02-23 06:49:01 [DEBUG] - 7081 +2026-02-23 06:49:01 [ERROR] Failed to connect - 5232 +2026-02-23 06:49:01 [INFO] - 30377 +2026-02-23 06:49:01 [ERROR] Disk full - 13914 +2026-02-23 06:49:01 [WARNING] - 25681 +2026-02-23 06:49:01 [ERROR] Invalid input - 30979 +2026-02-23 06:49:01 [INFO] - 9231 +2026-02-23 06:49:01 [CRITICAL] - 3390 +2026-02-23 06:49:01 [DEBUG] - 23860 +2026-02-23 06:49:01 [ERROR] Invalid input - 176 +2026-02-23 06:49:01 [INFO] - 21962 +2026-02-23 06:49:01 [CRITICAL] - 29133 +2026-02-23 06:49:01 [DEBUG] - 26394 +2026-02-23 06:49:01 [DEBUG] - 28116 +2026-02-23 06:49:01 [INFO] - 10454 +2026-02-23 06:49:01 [INFO] - 11956 +2026-02-23 06:49:01 [CRITICAL] - 24501 +2026-02-23 06:49:01 [WARNING] - 6600 +2026-02-23 06:49:01 [DEBUG] - 13847 +2026-02-23 06:49:01 [ERROR] Segmentation fault - 8720 +2026-02-23 06:49:01 [DEBUG] - 7636 +2026-02-23 06:49:01 [CRITICAL] - 6577 +2026-02-23 06:49:01 [CRITICAL] - 24850 +2026-02-23 06:49:01 [CRITICAL] - 454 +2026-02-23 06:49:01 [DEBUG] - 27315 +2026-02-23 06:49:01 [ERROR] Segmentation fault - 4890 +2026-02-23 06:49:01 [DEBUG] - 3254 +2026-02-23 06:49:01 [WARNING] - 12873 +2026-02-23 06:49:01 [DEBUG] - 13138 +2026-02-23 06:49:01 [DEBUG] - 2108 +2026-02-23 06:49:01 [CRITICAL] - 24674 +2026-02-23 06:49:01 [CRITICAL] - 17017 +2026-02-23 06:49:01 [CRITICAL] - 23402 +2026-02-23 06:49:01 [WARNING] - 18746 +2026-02-23 06:49:01 [ERROR] Out of memory - 19341 +2026-02-23 06:49:01 [ERROR] Disk full - 26024 +2026-02-23 06:49:01 [INFO] - 14828 +2026-02-23 06:49:01 [INFO] - 16685 +2026-02-23 06:49:01 [ERROR] Segmentation fault - 3189 +2026-02-23 06:49:01 [DEBUG] - 6999 +2026-02-23 06:49:01 [WARNING] - 17573 +2026-02-23 06:49:01 [DEBUG] - 8730 +2026-02-23 06:49:01 [INFO] - 15891 +2026-02-23 06:49:01 [INFO] - 32164 +2026-02-23 06:49:01 [CRITICAL] - 901 +2026-02-23 06:49:01 [DEBUG] - 11143 +2026-02-23 06:49:01 [ERROR] Disk full - 242 +2026-02-23 06:49:01 [WARNING] - 25496 +2026-02-23 06:49:01 [DEBUG] - 12703 +2026-02-23 06:49:01 [CRITICAL] - 27915 +2026-02-23 06:49:01 [CRITICAL] - 3469 +2026-02-23 06:49:01 [CRITICAL] - 10515 +2026-02-23 06:49:01 [WARNING] - 3129 +2026-02-23 06:49:01 [INFO] - 10859 +2026-02-23 06:49:01 [CRITICAL] - 19073 +2026-02-23 06:49:01 [INFO] - 11478 +2026-02-23 06:49:01 [DEBUG] - 29664 +2026-02-23 06:49:01 [ERROR] Invalid input - 1153 +2026-02-23 06:49:01 [CRITICAL] - 14712 +2026-02-23 06:49:01 [DEBUG] - 4312 +2026-02-23 06:49:01 [DEBUG] - 29552 +2026-02-23 06:49:01 [CRITICAL] - 32624 +2026-02-23 06:49:01 [CRITICAL] - 6122 +2026-02-23 06:49:01 [WARNING] - 984 +2026-02-23 06:49:01 [DEBUG] - 26727 +2026-02-23 06:49:01 [INFO] - 3254 +2026-02-23 06:49:01 [ERROR] Out of memory - 16968 +2026-02-23 06:49:01 [ERROR] Invalid input - 11433 +2026-02-23 06:49:01 [ERROR] Segmentation fault - 4752 +2026-02-23 06:49:01 [CRITICAL] - 26865 +2026-02-23 06:49:01 [CRITICAL] - 27363 +2026-02-23 06:49:01 [INFO] - 4410 +2026-02-23 06:49:01 [WARNING] - 13583 +2026-02-23 06:49:01 [DEBUG] - 24240 +2026-02-23 06:49:01 [INFO] - 32127 +2026-02-23 06:49:01 [ERROR] Invalid input - 16323 +2026-02-23 06:49:01 [CRITICAL] - 30886 +2026-02-23 06:49:01 [DEBUG] - 27573 +2026-02-23 06:49:01 [CRITICAL] - 4483 +2026-02-23 06:49:01 [ERROR] Disk full - 21327 +2026-02-23 06:49:01 [CRITICAL] - 15753 +2026-02-23 06:49:01 [DEBUG] - 17772 +2026-02-23 06:49:01 [DEBUG] - 9670 +2026-02-23 06:49:01 [DEBUG] - 7990 +2026-02-23 06:49:01 [WARNING] - 6160 +2026-02-23 06:49:01 [ERROR] Out of memory - 27354 +2026-02-23 06:49:01 [CRITICAL] - 23482 +2026-02-23 06:49:01 [CRITICAL] - 4399 +2026-02-23 06:49:01 [DEBUG] - 3221 +2026-02-23 06:49:01 [INFO] - 8333 +2026-02-23 06:49:01 [CRITICAL] - 16124 +2026-02-23 06:49:01 [CRITICAL] - 25013 +2026-02-23 06:49:01 [ERROR] Segmentation fault - 25706 +2026-02-23 06:49:01 [DEBUG] - 4672 +2026-02-23 06:49:01 [DEBUG] - 28388 +2026-02-23 06:49:01 [WARNING] - 22257 +2026-02-23 06:49:01 [INFO] - 22149 +2026-02-23 06:49:01 [WARNING] - 5292 +2026-02-23 06:49:01 [ERROR] Out of memory - 22672 +2026-02-23 06:49:01 [ERROR] Disk full - 3120 +2026-02-23 06:49:01 [DEBUG] - 13356 +2026-02-23 06:49:01 [DEBUG] - 4594 +2026-02-23 06:49:01 [ERROR] Failed to connect - 18363 +2026-02-23 06:49:01 [WARNING] - 9958 +2026-02-23 06:49:01 [INFO] - 375 +2026-02-23 06:49:01 [INFO] - 28980 +2026-02-23 06:49:01 [WARNING] - 31051 +2026-02-23 06:49:01 [CRITICAL] - 3608 +2026-02-23 06:49:01 [INFO] - 14207 +2026-02-23 06:49:01 [WARNING] - 10753 +2026-02-23 06:49:01 [CRITICAL] - 3118 +2026-02-23 06:49:01 [WARNING] - 7010 +2026-02-23 06:49:01 [CRITICAL] - 13513 +2026-02-23 06:49:01 [WARNING] - 17656 +2026-02-23 06:49:01 [INFO] - 5963 +2026-02-23 06:49:01 [INFO] - 24469 +2026-02-23 06:49:01 [WARNING] - 31874 +2026-02-23 06:49:01 [CRITICAL] - 31639 +2026-02-23 06:49:01 [DEBUG] - 31235 +2026-02-23 06:49:01 [ERROR] Invalid input - 29684 +2026-02-23 06:49:01 [INFO] - 22701 +2026-02-23 06:49:01 [DEBUG] - 31512 +2026-02-23 06:49:01 [CRITICAL] - 13426 +2026-02-23 06:49:01 [DEBUG] - 27070 +2026-02-23 06:49:01 [DEBUG] - 28328 +2026-02-23 06:49:01 [CRITICAL] - 27031 +2026-02-23 06:49:01 [CRITICAL] - 2398 +2026-02-23 06:49:01 [INFO] - 2541 +2026-02-23 06:49:01 [DEBUG] - 28234 +2026-02-23 06:49:01 [DEBUG] - 7666 +2026-02-23 06:49:01 [CRITICAL] - 6381 +2026-02-23 06:49:01 [WARNING] - 14224 +2026-02-23 06:49:01 [WARNING] - 25841 +2026-02-23 06:49:01 [WARNING] - 7000 +2026-02-23 06:49:01 [DEBUG] - 20999 +2026-02-23 06:49:01 [INFO] - 30991 +2026-02-23 06:49:01 [INFO] - 29849 +2026-02-23 06:49:01 [WARNING] - 1770 +2026-02-23 06:49:01 [ERROR] Failed to connect - 31868 +2026-02-23 06:49:01 [WARNING] - 23564 +2026-02-23 06:49:01 [WARNING] - 2374 +2026-02-23 06:49:01 [DEBUG] - 15429 +2026-02-23 06:49:01 [WARNING] - 21200 +2026-02-23 06:49:01 [DEBUG] - 6429 +2026-02-23 06:49:01 [ERROR] Out of memory - 28862 +2026-02-23 06:49:01 [WARNING] - 18125 +2026-02-23 06:49:01 [CRITICAL] - 5729 +2026-02-23 06:49:01 [ERROR] Invalid input - 11359 +2026-02-23 06:49:01 [INFO] - 4313 +2026-02-23 06:49:01 [INFO] - 16375 +2026-02-23 06:49:01 [CRITICAL] - 29497 +2026-02-23 06:49:01 [INFO] - 22867 +2026-02-23 06:49:01 [DEBUG] - 23963 +2026-02-23 06:49:01 [CRITICAL] - 22757 +2026-02-23 06:49:01 [INFO] - 18327 +2026-02-23 06:49:01 [WARNING] - 27640 +2026-02-23 06:49:01 [DEBUG] - 22737 +2026-02-23 06:49:01 [ERROR] Out of memory - 6101 +2026-02-23 06:49:01 [DEBUG] - 20851 +2026-02-23 06:49:01 [INFO] - 4733 +2026-02-23 06:49:01 [INFO] - 3130 +2026-02-23 06:49:01 [DEBUG] - 22845 +2026-02-23 06:49:01 [INFO] - 3334 +2026-02-23 06:49:01 [WARNING] - 10914 +2026-02-23 06:49:01 [CRITICAL] - 3218 +2026-02-23 06:49:01 [CRITICAL] - 598 +2026-02-23 06:49:01 [ERROR] Invalid input - 6388 +2026-02-23 06:49:01 [INFO] - 16028 +2026-02-23 06:49:01 [ERROR] Segmentation fault - 6508 +2026-02-23 06:49:01 [WARNING] - 28420 +2026-02-23 06:49:01 [ERROR] Segmentation fault - 3428 +2026-02-23 06:49:01 [INFO] - 21758 +2026-02-23 06:49:01 [DEBUG] - 29051 +2026-02-23 06:49:01 [CRITICAL] - 17085 +2026-02-23 06:49:01 [ERROR] Failed to connect - 20769 +2026-02-23 06:49:01 [CRITICAL] - 17056 +2026-02-23 06:49:01 [WARNING] - 20326 +2026-02-23 06:49:01 [INFO] - 25822 +2026-02-23 06:49:01 [ERROR] Segmentation fault - 5618 +2026-02-23 06:49:01 [WARNING] - 15915 +2026-02-23 06:49:01 [CRITICAL] - 13578 +2026-02-23 06:49:01 [DEBUG] - 5264 +2026-02-23 06:49:01 [ERROR] Failed to connect - 4180 +2026-02-23 06:49:01 [INFO] - 20268 +2026-02-23 06:49:01 [INFO] - 3035 +2026-02-23 06:49:01 [ERROR] Segmentation fault - 10925 +2026-02-23 06:49:01 [WARNING] - 19167 +2026-02-23 06:49:01 [CRITICAL] - 1724 +2026-02-23 06:49:01 [WARNING] - 16084 +2026-02-23 06:49:01 [CRITICAL] - 29767 +2026-02-23 06:49:01 [ERROR] Failed to connect - 21266 +2026-02-23 06:49:01 [DEBUG] - 12599 +2026-02-23 06:49:01 [DEBUG] - 18947 +2026-02-23 06:49:01 [WARNING] - 15234 +2026-02-23 06:49:01 [ERROR] Invalid input - 5516 +2026-02-23 06:49:01 [INFO] - 28287 +2026-02-23 06:49:01 [CRITICAL] - 22659 +2026-02-23 06:49:01 [INFO] - 22482 +2026-02-23 06:49:01 [CRITICAL] - 21029 +2026-02-23 06:49:01 [INFO] - 2168 +2026-02-23 06:49:01 [CRITICAL] - 3312 +2026-02-23 06:49:01 [CRITICAL] - 17341 +2026-02-23 06:49:01 [ERROR] Invalid input - 963 +2026-02-23 06:49:01 [ERROR] Segmentation fault - 16404 +2026-02-23 06:49:01 [ERROR] Failed to connect - 20454 +2026-02-23 06:49:01 [CRITICAL] - 26320 +2026-02-23 06:49:01 [ERROR] Disk full - 17695 +2026-02-23 06:49:01 [DEBUG] - 11045 +2026-02-23 06:49:01 [CRITICAL] - 6953 +2026-02-23 06:49:01 [INFO] - 5382 +2026-02-23 06:49:01 [WARNING] - 8243 +2026-02-23 06:49:01 [INFO] - 19108 +2026-02-23 06:49:01 [ERROR] Out of memory - 25307 +2026-02-23 06:49:01 [INFO] - 26681 +2026-02-23 06:49:01 [INFO] - 12508 +2026-02-23 06:49:01 [INFO] - 18155 +2026-02-23 06:49:01 [CRITICAL] - 23144 +2026-02-23 06:49:01 [INFO] - 3137 +2026-02-23 06:49:01 [CRITICAL] - 3655 +2026-02-23 06:49:01 [ERROR] Failed to connect - 14680 +2026-02-23 06:49:01 [ERROR] Failed to connect - 25671 +2026-02-23 06:49:01 [INFO] - 28345 +2026-02-23 06:49:01 [WARNING] - 4662 +2026-02-23 06:49:01 [WARNING] - 25025 +2026-02-23 06:49:01 [WARNING] - 13123 +2026-02-23 06:49:01 [WARNING] - 12460 +2026-02-23 06:49:01 [ERROR] Invalid input - 29948 +2026-02-23 06:49:01 [INFO] - 13942 +2026-02-23 06:49:01 [WARNING] - 2526 +2026-02-23 06:49:01 [WARNING] - 6670 +2026-02-23 06:49:01 [DEBUG] - 9625 +2026-02-23 06:49:01 [WARNING] - 23772 +2026-02-23 06:49:01 [WARNING] - 32567 +2026-02-23 06:49:01 [ERROR] Out of memory - 8352 +2026-02-23 06:49:01 [WARNING] - 20361 +2026-02-23 06:49:01 [DEBUG] - 2006 +2026-02-23 06:49:01 [ERROR] Out of memory - 5844 +2026-02-23 06:49:01 [ERROR] Failed to connect - 5128 +2026-02-23 06:49:01 [CRITICAL] - 22994 +2026-02-23 06:49:01 [WARNING] - 17186 +2026-02-23 06:49:01 [DEBUG] - 5697 +2026-02-23 06:49:01 [ERROR] Out of memory - 26947 +2026-02-23 06:49:01 [DEBUG] - 12906 +2026-02-23 06:49:01 [DEBUG] - 21546 +2026-02-23 06:49:01 [CRITICAL] - 1868 +2026-02-23 06:49:01 [ERROR] Failed to connect - 21492 +2026-02-23 06:49:01 [DEBUG] - 6672 +2026-02-23 06:49:01 [WARNING] - 9533 +2026-02-23 06:49:01 [WARNING] - 27944 +2026-02-23 06:49:01 [WARNING] - 5600 +2026-02-23 06:49:01 [ERROR] Out of memory - 2406 +2026-02-23 06:49:01 [INFO] - 16038 +2026-02-23 06:49:01 [DEBUG] - 13838 +2026-02-23 06:49:01 [WARNING] - 17620 +2026-02-23 06:49:01 [DEBUG] - 7331 +2026-02-23 06:49:01 [WARNING] - 3103 +2026-02-23 06:49:01 [DEBUG] - 21273 +2026-02-23 06:49:01 [INFO] - 24257 +2026-02-23 06:49:01 [ERROR] Out of memory - 26865 +2026-02-23 06:49:01 [DEBUG] - 6551 +2026-02-23 06:49:01 [WARNING] - 32137 +2026-02-23 06:49:01 [CRITICAL] - 22367 +2026-02-23 06:49:01 [ERROR] Failed to connect - 5640 +2026-02-23 06:49:01 [ERROR] Disk full - 7603 +2026-02-23 06:49:01 [WARNING] - 12283 +2026-02-23 06:49:01 [WARNING] - 16572 +2026-02-23 06:49:01 [CRITICAL] - 7905 +2026-02-23 06:49:01 [WARNING] - 15689 +2026-02-23 06:49:01 [WARNING] - 24254 +2026-02-23 06:49:01 [DEBUG] - 22141 +2026-02-23 06:49:01 [INFO] - 13394 +2026-02-23 06:49:01 [CRITICAL] - 21921 +2026-02-23 06:49:01 [INFO] - 27518 +2026-02-23 06:49:01 [DEBUG] - 28303 +2026-02-23 06:49:01 [ERROR] Segmentation fault - 11077 +2026-02-23 06:49:01 [ERROR] Invalid input - 26723 +2026-02-23 06:49:01 [CRITICAL] - 22798 +2026-02-23 06:49:01 [CRITICAL] - 24710 +2026-02-23 06:49:01 [ERROR] Failed to connect - 6199 +2026-02-23 06:49:01 [ERROR] Invalid input - 16420 +2026-02-23 06:49:01 [CRITICAL] - 896 +2026-02-23 06:49:01 [DEBUG] - 22991 +2026-02-23 06:49:01 [WARNING] - 6398 +2026-02-23 06:49:02 [INFO] - 24867 +2026-02-23 06:49:02 [DEBUG] - 24383 +2026-02-23 06:49:02 [WARNING] - 1899 +2026-02-23 06:49:02 [DEBUG] - 23320 +2026-02-23 06:49:02 [ERROR] Invalid input - 28239 +2026-02-23 06:49:02 [DEBUG] - 30384 +2026-02-23 06:49:02 [ERROR] Segmentation fault - 31541 +2026-02-23 06:49:02 [CRITICAL] - 20302 +2026-02-23 06:49:02 [ERROR] Segmentation fault - 3081 +2026-02-23 06:49:02 [WARNING] - 300 +2026-02-23 06:49:02 [ERROR] Disk full - 11520 +2026-02-23 06:49:02 [ERROR] Invalid input - 15662 +2026-02-23 06:49:02 [DEBUG] - 22661 +2026-02-23 06:49:02 [DEBUG] - 2639 +2026-02-23 06:49:02 [DEBUG] - 6466 +2026-02-23 06:49:02 [ERROR] Disk full - 13870 +2026-02-23 06:49:02 [ERROR] Failed to connect - 6090 +2026-02-23 06:49:02 [INFO] - 30754 +2026-02-23 06:49:02 [CRITICAL] - 16887 +2026-02-23 06:49:02 [DEBUG] - 4673 +2026-02-23 06:49:02 [INFO] - 18468 +2026-02-23 06:49:02 [ERROR] Invalid input - 29509 +2026-02-23 06:49:02 [ERROR] Segmentation fault - 29623 +2026-02-23 06:49:02 [INFO] - 25591 +2026-02-23 06:49:02 [CRITICAL] - 8569 +2026-02-23 06:49:02 [CRITICAL] - 18655 +2026-02-23 06:49:02 [CRITICAL] - 6835 +2026-02-23 06:49:02 [INFO] - 31510 +2026-02-23 06:49:02 [CRITICAL] - 4642 +2026-02-23 06:49:02 [ERROR] Invalid input - 28218 +2026-02-23 06:49:02 [CRITICAL] - 20838 +2026-02-23 06:49:02 [CRITICAL] - 28263 +2026-02-23 06:49:02 [ERROR] Disk full - 15024 +2026-02-23 06:49:02 [WARNING] - 24924 +2026-02-23 06:49:02 [DEBUG] - 2643 +2026-02-23 06:49:02 [ERROR] Invalid input - 15080 +2026-02-23 06:49:02 [INFO] - 4258 +2026-02-23 06:49:02 [ERROR] Invalid input - 430 +2026-02-23 06:49:02 [INFO] - 10270 +2026-02-23 06:49:02 [CRITICAL] - 17057 +2026-02-23 06:49:02 [ERROR] Invalid input - 24771 +2026-02-23 06:49:02 [ERROR] Disk full - 12098 +2026-02-23 06:49:02 [WARNING] - 10997 +2026-02-23 06:49:02 [WARNING] - 15060 +2026-02-23 06:49:02 [WARNING] - 21994 +2026-02-23 06:49:02 [DEBUG] - 11670 +2026-02-23 06:49:02 [DEBUG] - 12102 +2026-02-23 06:49:02 [CRITICAL] - 11361 +2026-02-23 06:49:02 [INFO] - 30995 +2026-02-23 06:49:02 [DEBUG] - 2662 +2026-02-23 06:49:02 [ERROR] Out of memory - 18863 +2026-02-23 06:49:02 [CRITICAL] - 4558 +2026-02-23 06:49:02 [ERROR] Failed to connect - 13485 +2026-02-23 06:49:02 [CRITICAL] - 20207 +2026-02-23 06:49:02 [ERROR] Invalid input - 23902 +2026-02-23 06:49:02 [WARNING] - 20262 +2026-02-23 06:49:02 [INFO] - 24715 +2026-02-23 06:49:02 [CRITICAL] - 16949 +2026-02-23 06:49:02 [ERROR] Segmentation fault - 9596 +2026-02-23 06:49:02 [DEBUG] - 29354 +2026-02-23 06:49:02 [WARNING] - 23289 +2026-02-23 06:49:02 [INFO] - 10974 +2026-02-23 06:49:02 [WARNING] - 22905 +2026-02-23 06:49:02 [DEBUG] - 7509 +2026-02-23 06:49:02 [ERROR] Invalid input - 9642 +2026-02-23 06:49:02 [INFO] - 21025 +2026-02-23 06:49:02 [CRITICAL] - 20073 +2026-02-23 06:49:02 [CRITICAL] - 17884 +2026-02-23 06:49:02 [ERROR] Out of memory - 15874 +2026-02-23 06:49:02 [INFO] - 22098 +2026-02-23 06:49:02 [WARNING] - 16272 +2026-02-23 06:49:02 [INFO] - 5700 +2026-02-23 06:49:02 [INFO] - 21212 +2026-02-23 06:49:02 [CRITICAL] - 26431 +2026-02-23 06:49:02 [DEBUG] - 28675 +2026-02-23 06:49:02 [CRITICAL] - 4731 +2026-02-23 06:49:02 [WARNING] - 2176 +2026-02-23 06:49:02 [WARNING] - 1198 +2026-02-23 06:49:02 [WARNING] - 17175 +2026-02-23 06:49:02 [CRITICAL] - 24688 +2026-02-23 06:49:02 [INFO] - 20939 +2026-02-23 06:49:02 [ERROR] Disk full - 560 +2026-02-23 06:49:02 [DEBUG] - 31654 +2026-02-23 06:49:02 [INFO] - 15316 +2026-02-23 06:49:02 [CRITICAL] - 5110 +2026-02-23 06:49:02 [DEBUG] - 5015 +2026-02-23 06:49:02 [WARNING] - 31483 +2026-02-23 06:49:02 [INFO] - 31997 +2026-02-23 06:49:02 [WARNING] - 22169 +2026-02-23 06:49:02 [DEBUG] - 21586 +2026-02-23 06:49:02 [DEBUG] - 5264 +2026-02-23 06:49:02 [CRITICAL] - 21461 +2026-02-23 06:49:02 [CRITICAL] - 16614 +2026-02-23 06:49:02 [WARNING] - 26092 +2026-02-23 06:49:02 [INFO] - 12480 +2026-02-23 06:49:02 [ERROR] Segmentation fault - 32678 +2026-02-23 06:49:02 [ERROR] Segmentation fault - 27177 +2026-02-23 06:49:02 [DEBUG] - 20038 +2026-02-23 06:49:02 [INFO] - 18914 +2026-02-23 06:49:02 [ERROR] Disk full - 10206 +2026-02-23 06:49:02 [WARNING] - 4827 +2026-02-23 06:49:02 [ERROR] Failed to connect - 18246 +2026-02-23 06:49:02 [ERROR] Invalid input - 25481 +2026-02-23 06:49:02 [DEBUG] - 32020 +2026-02-23 06:49:02 [CRITICAL] - 18739 +2026-02-23 06:49:02 [DEBUG] - 9622 +2026-02-23 06:49:02 [INFO] - 25122 +2026-02-23 06:49:02 [WARNING] - 4197 +2026-02-23 06:49:02 [CRITICAL] - 2973 +2026-02-23 06:49:02 [WARNING] - 26429 +2026-02-23 06:49:02 [ERROR] Out of memory - 18189 +2026-02-23 06:49:02 [DEBUG] - 12940 +2026-02-23 06:49:02 [CRITICAL] - 7408 +2026-02-23 06:49:02 [DEBUG] - 24742 +2026-02-23 06:49:02 [DEBUG] - 5465 +2026-02-23 06:49:02 [INFO] - 19241 +2026-02-23 06:49:02 [ERROR] Segmentation fault - 22782 +2026-02-23 06:49:02 [WARNING] - 28161 +2026-02-23 06:49:02 [CRITICAL] - 16166 +2026-02-23 06:49:02 [DEBUG] - 8099 +2026-02-23 06:49:02 [CRITICAL] - 9713 +2026-02-23 06:49:02 [ERROR] Failed to connect - 8016 +2026-02-23 06:49:02 [INFO] - 14700 +2026-02-23 06:49:02 [DEBUG] - 2370 +2026-02-23 06:49:02 [DEBUG] - 788 +2026-02-23 06:49:02 [DEBUG] - 22160 +2026-02-23 06:49:02 [ERROR] Disk full - 29718 +2026-02-23 06:49:02 [INFO] - 9495 +2026-02-23 06:49:02 [ERROR] Invalid input - 25906 +2026-02-23 06:49:02 [INFO] - 29504 +2026-02-23 06:49:02 [INFO] - 20975 +2026-02-23 06:49:02 [ERROR] Segmentation fault - 11121 +2026-02-23 06:49:02 [CRITICAL] - 30915 +2026-02-23 06:49:02 [WARNING] - 17983 +2026-02-23 06:49:02 [WARNING] - 32143 +2026-02-23 06:49:02 [INFO] - 10528 +2026-02-23 06:49:02 [CRITICAL] - 31461 +2026-02-23 06:49:02 [CRITICAL] - 6319 +2026-02-23 06:49:02 [WARNING] - 18761 +2026-02-23 06:49:02 [ERROR] Segmentation fault - 27769 +2026-02-23 06:49:02 [INFO] - 270 +2026-02-23 06:49:02 [INFO] - 20192 +2026-02-23 06:49:02 [CRITICAL] - 16665 +2026-02-23 06:49:02 [INFO] - 29543 +2026-02-23 06:49:02 [ERROR] Failed to connect - 17684 +2026-02-23 06:49:02 [CRITICAL] - 22261 +2026-02-23 06:49:02 [DEBUG] - 14137 +2026-02-23 06:49:02 [WARNING] - 18257 +2026-02-23 06:49:02 [CRITICAL] - 17767 +2026-02-23 06:49:02 [CRITICAL] - 4606 +2026-02-23 06:49:02 [ERROR] Invalid input - 4047 +2026-02-23 06:49:02 [INFO] - 7687 +2026-02-23 06:49:02 [INFO] - 20982 +2026-02-23 06:49:02 [WARNING] - 17595 +2026-02-23 06:49:02 [ERROR] Invalid input - 20034 +2026-02-23 06:49:02 [CRITICAL] - 21954 +2026-02-23 06:49:02 [INFO] - 28755 +2026-02-23 06:49:02 [ERROR] Out of memory - 18647 +2026-02-23 06:49:02 [ERROR] Invalid input - 13243 +2026-02-23 06:49:02 [INFO] - 7665 +2026-02-23 06:49:02 [DEBUG] - 8213 +2026-02-23 06:49:02 [ERROR] Failed to connect - 6443 +2026-02-23 06:49:02 [CRITICAL] - 17055 +2026-02-23 06:49:02 [INFO] - 3676 +2026-02-23 06:49:02 [INFO] - 8165 +2026-02-23 06:49:02 [WARNING] - 14203 +2026-02-23 06:49:02 [CRITICAL] - 2409 +2026-02-23 06:49:02 [DEBUG] - 32114 +2026-02-23 06:49:02 [WARNING] - 1153 +2026-02-23 06:49:02 [CRITICAL] - 24395 +2026-02-23 06:49:02 [INFO] - 26358 +2026-02-23 06:49:02 [ERROR] Invalid input - 20347 +2026-02-23 06:49:02 [INFO] - 2929 +2026-02-23 06:49:02 [CRITICAL] - 20480 +2026-02-23 06:49:02 [WARNING] - 1679 +2026-02-23 06:49:02 [WARNING] - 1463 +2026-02-23 06:49:02 [CRITICAL] - 8638 +2026-02-23 06:49:02 [WARNING] - 94 +2026-02-23 06:49:02 [WARNING] - 17368 +2026-02-23 06:49:02 [CRITICAL] - 13277 +2026-02-23 06:49:02 [WARNING] - 26653 +2026-02-23 06:49:02 [ERROR] Out of memory - 3626 +2026-02-23 06:49:02 [ERROR] Out of memory - 3887 +2026-02-23 06:49:02 [INFO] - 9156 +2026-02-23 06:49:02 [ERROR] Out of memory - 25628 +2026-02-23 06:49:02 [INFO] - 11927 +2026-02-23 06:49:02 [DEBUG] - 22027 +2026-02-23 06:49:02 [INFO] - 15565 +2026-02-23 06:49:02 [INFO] - 25320 +2026-02-23 06:49:02 [CRITICAL] - 2739 +2026-02-23 06:49:02 [CRITICAL] - 3039 +2026-02-23 06:49:02 [INFO] - 11795 +2026-02-23 06:49:02 [DEBUG] - 1868 +2026-02-23 06:49:02 [CRITICAL] - 22157 +2026-02-23 06:49:02 [CRITICAL] - 2660 +2026-02-23 06:49:02 [INFO] - 1652 +2026-02-23 06:49:02 [WARNING] - 22360 +2026-02-23 06:49:02 [CRITICAL] - 27809 +2026-02-23 06:49:02 [DEBUG] - 14776 +2026-02-23 06:49:02 [WARNING] - 11831 +2026-02-23 06:49:02 [INFO] - 31833 +2026-02-23 06:49:02 [ERROR] Disk full - 4107 +2026-02-23 06:49:02 [INFO] - 540 +2026-02-23 06:49:02 [CRITICAL] - 6531 +2026-02-23 06:49:02 [DEBUG] - 28409 +2026-02-23 06:49:02 [DEBUG] - 6911 +2026-02-23 06:49:02 [CRITICAL] - 14536 +2026-02-23 06:49:02 [INFO] - 6089 +2026-02-23 06:49:02 [ERROR] Out of memory - 21250 +2026-02-23 06:49:02 [DEBUG] - 22464 +2026-02-23 06:49:02 [WARNING] - 12631 +2026-02-23 06:49:02 [INFO] - 4473 +2026-02-23 06:49:02 [DEBUG] - 6002 +2026-02-23 06:49:02 [INFO] - 30688 +2026-02-23 06:49:02 [INFO] - 27241 +2026-02-23 06:49:02 [INFO] - 13560 +2026-02-23 06:49:02 [ERROR] Invalid input - 6410 +2026-02-23 06:49:02 [CRITICAL] - 16917 +2026-02-23 06:49:02 [ERROR] Disk full - 14011 +2026-02-23 06:49:02 [CRITICAL] - 21942 +2026-02-23 06:49:02 [WARNING] - 26632 +2026-02-23 06:49:02 [DEBUG] - 5208 +2026-02-23 06:49:02 [CRITICAL] - 1579 +2026-02-23 06:49:02 [CRITICAL] - 18478 +2026-02-23 06:49:02 [CRITICAL] - 20581 +2026-02-23 06:49:02 [DEBUG] - 11818 +2026-02-23 06:49:02 [ERROR] Failed to connect - 11164 +2026-02-23 06:49:02 [WARNING] - 189 +2026-02-23 06:49:03 [CRITICAL] - 13801 +2026-02-23 06:49:03 [ERROR] Invalid input - 13496 +2026-02-23 06:49:03 [CRITICAL] - 15046 +2026-02-23 06:49:03 [DEBUG] - 10014 +2026-02-23 06:49:03 [CRITICAL] - 22045 +2026-02-23 06:49:03 [WARNING] - 11565 +2026-02-23 06:49:03 [ERROR] Invalid input - 9532 +2026-02-23 06:49:03 [ERROR] Disk full - 21218 +2026-02-23 06:49:03 [CRITICAL] - 31730 +2026-02-23 06:49:03 [INFO] - 12858 +2026-02-23 06:49:03 [DEBUG] - 14380 +2026-02-23 06:49:03 [ERROR] Invalid input - 24915 +2026-02-23 06:49:03 [INFO] - 3710 +2026-02-23 06:49:03 [WARNING] - 21483 +2026-02-23 06:49:03 [WARNING] - 351 +2026-02-23 06:49:03 [ERROR] Segmentation fault - 20541 +2026-02-23 06:49:03 [DEBUG] - 14944 +2026-02-23 06:49:03 [CRITICAL] - 20826 +2026-02-23 06:49:03 [WARNING] - 6521 +2026-02-23 06:49:03 [WARNING] - 13991 +2026-02-23 06:49:03 [ERROR] Invalid input - 5401 +2026-02-23 06:49:03 [DEBUG] - 16534 +2026-02-23 06:49:03 [WARNING] - 10145 +2026-02-23 06:49:03 [INFO] - 21209 +2026-02-23 06:49:03 [DEBUG] - 16100 +2026-02-23 06:49:03 [DEBUG] - 26867 +2026-02-23 06:49:03 [WARNING] - 4529 +2026-02-23 06:49:03 [CRITICAL] - 23656 +2026-02-23 06:49:03 [ERROR] Out of memory - 3010 +2026-02-23 06:49:03 [WARNING] - 4100 +2026-02-23 06:49:03 [CRITICAL] - 19120 +2026-02-23 06:49:03 [DEBUG] - 20010 +2026-02-23 06:49:03 [DEBUG] - 27967 +2026-02-23 06:49:03 [INFO] - 13746 +2026-02-23 06:49:03 [DEBUG] - 20451 +2026-02-23 06:49:03 [DEBUG] - 15798 +2026-02-23 06:49:03 [DEBUG] - 25989 +2026-02-23 06:49:03 [CRITICAL] - 8005 +2026-02-23 06:49:03 [INFO] - 32719 +2026-02-23 06:49:03 [DEBUG] - 20691 +2026-02-23 06:49:03 [WARNING] - 24166 +2026-02-23 06:49:03 [INFO] - 1797 +2026-02-23 06:49:03 [ERROR] Out of memory - 29023 +2026-02-23 06:49:03 [INFO] - 15921 +2026-02-23 06:49:03 [INFO] - 1066 +2026-02-23 06:49:03 [DEBUG] - 12347 +2026-02-23 06:49:03 [ERROR] Invalid input - 8777 +2026-02-23 06:49:03 [DEBUG] - 7025 +2026-02-23 06:49:03 [CRITICAL] - 3341 +2026-02-23 06:49:03 [DEBUG] - 15108 +2026-02-23 06:49:03 [DEBUG] - 24514 +2026-02-23 06:49:03 [DEBUG] - 5205 +2026-02-23 06:49:03 [DEBUG] - 16753 +2026-02-23 06:49:03 [WARNING] - 20000 +2026-02-23 06:49:03 [ERROR] Failed to connect - 22887 +2026-02-23 06:49:03 [ERROR] Segmentation fault - 22497 +2026-02-23 06:49:03 [WARNING] - 19837 +2026-02-23 06:49:03 [DEBUG] - 9412 +2026-02-23 06:49:03 [CRITICAL] - 16178 +2026-02-23 06:49:03 [CRITICAL] - 30657 +2026-02-23 06:49:03 [DEBUG] - 3429 +2026-02-23 06:49:03 [DEBUG] - 30184 +2026-02-23 06:49:03 [CRITICAL] - 29804 +2026-02-23 06:49:03 [WARNING] - 29627 +2026-02-23 06:49:03 [WARNING] - 2368 +2026-02-23 06:49:03 [DEBUG] - 9649 +2026-02-23 06:49:03 [WARNING] - 30501 +2026-02-23 06:49:03 [DEBUG] - 14650 +2026-02-23 06:49:03 [DEBUG] - 29698 +2026-02-23 06:49:03 [ERROR] Out of memory - 11672 +2026-02-23 06:49:03 [CRITICAL] - 19869 +2026-02-23 06:49:03 [DEBUG] - 4925 +2026-02-23 06:49:03 [DEBUG] - 6030 +2026-02-23 06:49:03 [INFO] - 31642 +2026-02-23 06:49:03 [INFO] - 7961 +2026-02-23 06:49:03 [CRITICAL] - 16089 +2026-02-23 06:49:03 [CRITICAL] - 22148 +2026-02-23 06:49:03 [INFO] - 17667 +2026-02-23 06:49:03 [CRITICAL] - 25180 +2026-02-23 06:49:03 [WARNING] - 6270 +2026-02-23 06:49:03 [WARNING] - 12232 +2026-02-23 06:49:03 [CRITICAL] - 14365 +2026-02-23 06:49:03 [WARNING] - 31811 +2026-02-23 06:49:03 [CRITICAL] - 29294 +2026-02-23 06:49:03 [DEBUG] - 25062 +2026-02-23 06:49:03 [CRITICAL] - 3945 +2026-02-23 06:49:03 [CRITICAL] - 2122 +2026-02-23 06:49:03 [DEBUG] - 25348 +2026-02-23 06:49:03 [ERROR] Failed to connect - 20215 +2026-02-23 06:49:03 [CRITICAL] - 27661 +2026-02-23 06:49:03 [INFO] - 26715 +2026-02-23 06:49:03 [INFO] - 27091 +2026-02-23 06:49:03 [WARNING] - 30681 +2026-02-23 06:49:03 [CRITICAL] - 11579 +2026-02-23 06:49:03 [CRITICAL] - 32388 +2026-02-23 06:49:03 [CRITICAL] - 27742 +2026-02-23 06:49:03 [INFO] - 5005 +2026-02-23 06:49:03 [INFO] - 24358 +2026-02-23 06:49:03 [DEBUG] - 255 +2026-02-23 06:49:03 [WARNING] - 14856 +2026-02-23 06:49:03 [INFO] - 5731 +2026-02-23 06:49:03 [CRITICAL] - 1352 +2026-02-23 06:49:03 [ERROR] Out of memory - 11517 +2026-02-23 06:49:03 [DEBUG] - 6470 +2026-02-23 06:49:03 [ERROR] Out of memory - 4182 +2026-02-23 06:49:03 [CRITICAL] - 5116 +2026-02-23 06:49:03 [WARNING] - 24882 +2026-02-23 06:49:03 [INFO] - 4108 +2026-02-23 06:49:03 [INFO] - 21658 +2026-02-23 06:49:03 [CRITICAL] - 2620 +2026-02-23 06:49:03 [CRITICAL] - 23499 +2026-02-23 06:49:03 [WARNING] - 7042 +2026-02-23 06:49:03 [DEBUG] - 24152 +2026-02-23 06:49:03 [WARNING] - 22404 +2026-02-23 06:49:03 [CRITICAL] - 31867 +2026-02-23 06:49:03 [WARNING] - 17635 +2026-02-23 06:49:03 [CRITICAL] - 13156 +2026-02-23 06:49:03 [CRITICAL] - 21599 +2026-02-23 06:49:03 [CRITICAL] - 10850 +2026-02-23 06:49:03 [WARNING] - 14831 +2026-02-23 06:49:03 [WARNING] - 8490 +2026-02-23 06:49:03 [ERROR] Failed to connect - 7726 +2026-02-23 06:49:03 [CRITICAL] - 8063 +2026-02-23 06:49:03 [DEBUG] - 249 +2026-02-23 06:49:03 [WARNING] - 16202 +2026-02-23 06:49:03 [WARNING] - 130 +2026-02-23 06:49:03 [CRITICAL] - 29427 +2026-02-23 06:49:03 [ERROR] Invalid input - 985 +2026-02-23 06:49:03 [ERROR] Segmentation fault - 30212 +2026-02-23 06:49:03 [CRITICAL] - 6511 +2026-02-23 06:49:03 [CRITICAL] - 6852 +2026-02-23 06:49:03 [WARNING] - 2186 +2026-02-23 06:49:03 [DEBUG] - 22969 +2026-02-23 06:49:03 [ERROR] Invalid input - 22070 +2026-02-23 06:49:03 [DEBUG] - 20939 +2026-02-23 06:49:03 [DEBUG] - 14125 +2026-02-23 06:49:03 [ERROR] Out of memory - 18438 +2026-02-23 06:49:03 [CRITICAL] - 8678 +2026-02-23 06:49:03 [DEBUG] - 20002 +2026-02-23 06:49:03 [DEBUG] - 17069 +2026-02-23 06:49:03 [CRITICAL] - 2155 +2026-02-23 06:49:03 [ERROR] Segmentation fault - 16304 +2026-02-23 06:49:03 [WARNING] - 30992 +2026-02-23 06:49:03 [ERROR] Invalid input - 9350 +2026-02-23 06:49:03 [WARNING] - 10885 +2026-02-23 06:49:03 [ERROR] Segmentation fault - 27643 +2026-02-23 06:49:03 [ERROR] Failed to connect - 31974 +2026-02-23 06:49:03 [DEBUG] - 31875 +2026-02-23 06:49:03 [ERROR] Disk full - 15028 +2026-02-23 06:49:03 [ERROR] Invalid input - 15798 +2026-02-23 06:49:03 [CRITICAL] - 22139 +2026-02-23 06:49:03 [ERROR] Disk full - 20481 +2026-02-23 06:49:03 [WARNING] - 16847 +2026-02-23 06:49:03 [DEBUG] - 18631 +2026-02-23 06:49:03 [CRITICAL] - 24752 +2026-02-23 06:49:03 [WARNING] - 14920 +2026-02-23 06:49:03 [WARNING] - 14054 +2026-02-23 06:49:03 [CRITICAL] - 15709 +2026-02-23 06:49:03 [DEBUG] - 28192 +2026-02-23 06:49:03 [ERROR] Failed to connect - 24023 +2026-02-23 06:49:03 [WARNING] - 7159 +2026-02-23 06:49:03 [INFO] - 7149 +2026-02-23 06:49:03 [DEBUG] - 11367 +2026-02-23 06:49:03 [ERROR] Disk full - 4334 +2026-02-23 06:49:03 [ERROR] Invalid input - 15921 +2026-02-23 06:49:03 [DEBUG] - 21243 +2026-02-23 06:49:03 [INFO] - 21773 +2026-02-23 06:49:03 [CRITICAL] - 12765 +2026-02-23 06:49:03 [DEBUG] - 17570 +2026-02-23 06:49:03 [WARNING] - 12114 +2026-02-23 06:49:03 [CRITICAL] - 21868 +2026-02-23 06:49:03 [ERROR] Failed to connect - 2147 +2026-02-23 06:49:03 [CRITICAL] - 23653 +2026-02-23 06:49:03 [DEBUG] - 29643 +2026-02-23 06:49:03 [CRITICAL] - 19394 +2026-02-23 06:49:03 [WARNING] - 27199 +2026-02-23 06:49:03 [ERROR] Segmentation fault - 8980 +2026-02-23 06:49:03 [DEBUG] - 98 +2026-02-23 06:49:03 [WARNING] - 17656 +2026-02-23 06:49:03 [INFO] - 20153 +2026-02-23 06:49:03 [DEBUG] - 27765 +2026-02-23 06:49:03 [DEBUG] - 29535 +2026-02-23 06:49:03 [INFO] - 17860 +2026-02-23 06:49:03 [DEBUG] - 20785 +2026-02-23 06:49:03 [WARNING] - 12285 +2026-02-23 06:49:03 [CRITICAL] - 10772 +2026-02-23 06:49:03 [CRITICAL] - 24607 +2026-02-23 06:49:03 [WARNING] - 5741 +2026-02-23 06:49:03 [CRITICAL] - 10424 +2026-02-23 06:49:03 [DEBUG] - 22262 +2026-02-23 06:49:03 [DEBUG] - 29278 +2026-02-23 06:49:03 [CRITICAL] - 13704 +2026-02-23 06:49:03 [ERROR] Failed to connect - 4576 +2026-02-23 06:49:03 [DEBUG] - 19725 +2026-02-23 06:49:03 [INFO] - 317 +2026-02-23 06:49:03 [WARNING] - 20381 +2026-02-23 06:49:03 [ERROR] Invalid input - 31269 +2026-02-23 06:49:03 [DEBUG] - 30851 +2026-02-23 06:49:03 [INFO] - 16420 +2026-02-23 06:49:03 [ERROR] Failed to connect - 24321 +2026-02-23 06:49:03 [CRITICAL] - 12035 +2026-02-23 06:49:03 [INFO] - 10893 +2026-02-23 06:49:03 [ERROR] Out of memory - 5783 +2026-02-23 06:49:03 [CRITICAL] - 1541 +2026-02-23 06:49:03 [INFO] - 5006 +2026-02-23 06:49:03 [INFO] - 3633 +2026-02-23 06:49:03 [DEBUG] - 29636 +2026-02-23 06:49:03 [ERROR] Out of memory - 5296 +2026-02-23 06:49:03 [WARNING] - 11570 +2026-02-23 06:49:03 [WARNING] - 1029 +2026-02-23 06:49:03 [INFO] - 26305 +2026-02-23 06:49:03 [INFO] - 15897 +2026-02-23 06:49:03 [DEBUG] - 9394 +2026-02-23 06:49:03 [DEBUG] - 8537 +2026-02-23 06:49:03 [ERROR] Invalid input - 19334 +2026-02-23 06:49:03 [ERROR] Disk full - 25616 +2026-02-23 06:49:03 [CRITICAL] - 1480 +2026-02-23 06:49:03 [ERROR] Failed to connect - 14782 +2026-02-23 06:49:03 [WARNING] - 23043 +2026-02-23 06:49:03 [INFO] - 14325 +2026-02-23 06:49:03 [INFO] - 26632 +2026-02-23 06:49:03 [CRITICAL] - 17995 +2026-02-23 06:49:03 [CRITICAL] - 12075 +2026-02-23 06:49:03 [DEBUG] - 12649 +2026-02-23 06:49:03 [DEBUG] - 32290 +2026-02-23 06:49:03 [WARNING] - 13088 +2026-02-23 06:49:03 [CRITICAL] - 1617 +2026-02-23 06:49:03 [WARNING] - 1730 +2026-02-23 06:49:03 [ERROR] Invalid input - 27384 +2026-02-23 06:49:03 [WARNING] - 14474 +2026-02-23 06:49:03 [CRITICAL] - 10625 +2026-02-23 06:49:03 [INFO] - 25407 +2026-02-23 06:49:03 [INFO] - 11609 +2026-02-23 06:49:03 [INFO] - 25140 +2026-02-23 06:49:03 [INFO] - 931 +2026-02-23 06:49:03 [WARNING] - 5583 +2026-02-23 06:49:03 [ERROR] Invalid input - 6837 +2026-02-23 06:49:03 [CRITICAL] - 1103 +2026-02-23 06:49:03 [DEBUG] - 32641 +2026-02-23 06:49:03 [DEBUG] - 5348 +2026-02-23 06:49:03 [WARNING] - 7303 +2026-02-23 06:49:03 [CRITICAL] - 16625 +2026-02-23 06:49:03 [ERROR] Failed to connect - 25327 +2026-02-23 06:49:03 [CRITICAL] - 7422 +2026-02-23 06:49:03 [ERROR] Out of memory - 31701 +2026-02-23 06:49:03 [INFO] - 18249 +2026-02-23 06:49:03 [DEBUG] - 30324 +2026-02-23 06:49:03 [WARNING] - 4508 +2026-02-23 06:49:03 [INFO] - 930 +2026-02-23 06:49:03 [CRITICAL] - 12223 +2026-02-23 06:49:03 [DEBUG] - 5395 +2026-02-23 06:49:03 [DEBUG] - 7072 +2026-02-23 06:49:03 [ERROR] Segmentation fault - 22776 +2026-02-23 06:49:03 [INFO] - 15081 +2026-02-23 06:49:03 [ERROR] Segmentation fault - 32614 +2026-02-23 06:49:03 [INFO] - 5666 +2026-02-23 06:49:03 [DEBUG] - 1720 +2026-02-23 06:49:03 [ERROR] Disk full - 6220 +2026-02-23 06:49:03 [INFO] - 21127 +2026-02-23 06:49:03 [DEBUG] - 27793 +2026-02-23 06:49:03 [INFO] - 3117 +2026-02-23 06:49:03 [DEBUG] - 22661 +2026-02-23 06:49:03 [CRITICAL] - 608 +2026-02-23 06:49:03 [DEBUG] - 17311 +2026-02-23 06:49:03 [ERROR] Invalid input - 598 +2026-02-23 06:49:03 [CRITICAL] - 32162 +2026-02-23 06:49:03 [ERROR] Disk full - 32530 +2026-02-23 06:49:03 [INFO] - 7446 +2026-02-23 06:49:03 [CRITICAL] - 30180 +2026-02-23 06:49:03 [DEBUG] - 30432 +2026-02-23 06:49:03 [INFO] - 2152 +2026-02-23 06:49:03 [ERROR] Disk full - 9091 +2026-02-23 06:49:03 [INFO] - 9478 +2026-02-23 06:49:03 [INFO] - 17284 +2026-02-23 06:49:03 [CRITICAL] - 5667 +2026-02-23 06:49:03 [ERROR] Out of memory - 13690 +2026-02-23 06:49:03 [WARNING] - 2080 +2026-02-23 06:49:03 [CRITICAL] - 2450 +2026-02-23 06:49:03 [WARNING] - 26667 +2026-02-23 06:49:03 [CRITICAL] - 4376 +2026-02-23 06:49:03 [INFO] - 10409 +2026-02-23 06:49:03 [DEBUG] - 5803 +2026-02-23 06:49:03 [INFO] - 29763 +2026-02-23 06:49:03 [INFO] - 6373 +2026-02-23 06:49:03 [DEBUG] - 713 +2026-02-23 06:49:03 [ERROR] Failed to connect - 15006 +2026-02-23 06:49:03 [WARNING] - 16797 +2026-02-23 06:49:03 [DEBUG] - 23228 +2026-02-23 06:49:03 [CRITICAL] - 14332 +2026-02-23 06:49:03 [DEBUG] - 16914 +2026-02-23 06:49:03 [CRITICAL] - 7718 +2026-02-23 06:49:03 [ERROR] Segmentation fault - 19566 +2026-02-23 06:49:03 [CRITICAL] - 3087 +2026-02-23 06:49:03 [INFO] - 32423 +2026-02-23 06:49:03 [ERROR] Segmentation fault - 13822 +2026-02-23 06:49:03 [INFO] - 25411 +2026-02-23 06:49:03 [WARNING] - 20969 +2026-02-23 06:49:03 [WARNING] - 4265 +2026-02-23 06:49:03 [ERROR] Out of memory - 3783 +2026-02-23 06:49:03 [WARNING] - 12928 +2026-02-23 06:49:03 [WARNING] - 15376 +2026-02-23 06:49:03 [INFO] - 6337 +2026-02-23 06:49:03 [WARNING] - 12912 +2026-02-23 06:49:03 [WARNING] - 16964 +2026-02-23 06:49:03 [DEBUG] - 27709 +2026-02-23 06:49:03 [ERROR] Segmentation fault - 8067 +2026-02-23 06:49:03 [ERROR] Failed to connect - 3180 +2026-02-23 06:49:03 [INFO] - 30077 +2026-02-23 06:49:03 [INFO] - 28549 +2026-02-23 06:49:03 [CRITICAL] - 26804 +2026-02-23 06:49:03 [CRITICAL] - 32124 +2026-02-23 06:49:03 [WARNING] - 31323 +2026-02-23 06:49:03 [DEBUG] - 5301 +2026-02-23 06:49:03 [ERROR] Out of memory - 14823 +2026-02-23 06:49:03 [WARNING] - 10642 +2026-02-23 06:49:03 [WARNING] - 28589 +2026-02-23 06:49:03 [INFO] - 2804 +2026-02-23 06:49:03 [INFO] - 6338 +2026-02-23 06:49:03 [CRITICAL] - 32654 +2026-02-23 06:49:03 [WARNING] - 9000 +2026-02-23 06:49:03 [ERROR] Invalid input - 3715 +2026-02-23 06:49:03 [WARNING] - 30668 +2026-02-23 06:49:03 [WARNING] - 19132 +2026-02-23 06:49:03 [ERROR] Out of memory - 3210 +2026-02-23 06:49:03 [ERROR] Invalid input - 2933 +2026-02-23 06:49:03 [WARNING] - 19256 +2026-02-23 06:49:03 [DEBUG] - 4031 +2026-02-23 06:49:03 [INFO] - 18173 +2026-02-23 06:49:03 [CRITICAL] - 279 +2026-02-23 06:49:03 [ERROR] Out of memory - 15886 +2026-02-23 06:49:03 [DEBUG] - 2977 +2026-02-23 06:49:03 [WARNING] - 4543 +2026-02-23 06:49:03 [WARNING] - 5035 +2026-02-23 06:49:03 [WARNING] - 10675 +2026-02-23 06:49:03 [CRITICAL] - 31638 +2026-02-23 06:49:03 [CRITICAL] - 5506 +2026-02-23 06:49:03 [WARNING] - 10259 +2026-02-23 06:49:03 [CRITICAL] - 7685 +2026-02-23 06:49:03 [INFO] - 8988 +2026-02-23 06:49:03 [DEBUG] - 4557 +2026-02-23 06:49:03 [INFO] - 19248 +2026-02-23 06:49:03 [CRITICAL] - 29447 +2026-02-23 06:49:03 [WARNING] - 9444 +2026-02-23 06:49:03 [ERROR] Failed to connect - 23784 +2026-02-23 06:49:03 [CRITICAL] - 28692 +2026-02-23 06:49:03 [WARNING] - 483 +2026-02-23 06:49:03 [CRITICAL] - 6845 +2026-02-23 06:49:03 [CRITICAL] - 15507 +2026-02-23 06:49:03 [WARNING] - 27835 +2026-02-23 06:49:03 [ERROR] Disk full - 32364 +2026-02-23 06:49:03 [DEBUG] - 16833 +2026-02-23 06:49:03 [ERROR] Invalid input - 2902 +2026-02-23 06:49:03 [WARNING] - 25241 +2026-02-23 06:49:03 [CRITICAL] - 5271 +2026-02-23 06:49:03 [ERROR] Disk full - 1157 +2026-02-23 06:49:03 [WARNING] - 7643 +2026-02-23 06:49:03 [CRITICAL] - 23555 +2026-02-23 06:49:03 [ERROR] Disk full - 7785 +2026-02-23 06:49:03 [WARNING] - 30950 +2026-02-23 06:49:03 [INFO] - 14404 +2026-02-23 06:49:03 [CRITICAL] - 14205 +2026-02-23 06:49:03 [DEBUG] - 28597 +2026-02-23 06:49:03 [INFO] - 20843 +2026-02-23 06:49:03 [DEBUG] - 344 +2026-02-23 06:49:03 [CRITICAL] - 13665 +2026-02-23 06:49:03 [ERROR] Failed to connect - 4501 +2026-02-23 06:49:03 [WARNING] - 25135 +2026-02-23 06:49:03 [DEBUG] - 31795 +2026-02-23 06:49:03 [INFO] - 3229 +2026-02-23 06:49:03 [DEBUG] - 7179 +2026-02-23 06:49:03 [CRITICAL] - 23774 +2026-02-23 06:49:03 [DEBUG] - 23179 +2026-02-23 06:49:03 [INFO] - 6978 +2026-02-23 06:49:03 [DEBUG] - 8478 +2026-02-23 06:49:03 [INFO] - 24052 +2026-02-23 06:49:03 [DEBUG] - 2946 +2026-02-23 06:49:03 [INFO] - 373 +2026-02-23 06:49:03 [CRITICAL] - 32504 +2026-02-23 06:49:03 [INFO] - 7638 +2026-02-23 06:49:03 [DEBUG] - 25888 +2026-02-23 06:49:03 [INFO] - 21347 +2026-02-23 06:49:03 [WARNING] - 9430 +2026-02-23 06:49:03 [INFO] - 4997 +2026-02-23 06:49:03 [ERROR] Disk full - 31828 +2026-02-23 06:49:03 [DEBUG] - 10231 +2026-02-23 06:49:03 [WARNING] - 18503 +2026-02-23 06:49:03 [INFO] - 26929 +2026-02-23 06:49:03 [ERROR] Segmentation fault - 23800 +2026-02-23 06:49:03 [ERROR] Invalid input - 12227 +2026-02-23 06:49:03 [DEBUG] - 9265 +2026-02-23 06:49:03 [DEBUG] - 19610 +2026-02-23 06:49:03 [CRITICAL] - 29895 +2026-02-23 06:49:03 [ERROR] Disk full - 91 +2026-02-23 06:49:03 [INFO] - 20374 +2026-02-23 06:49:03 [DEBUG] - 27256 +2026-02-23 06:49:03 [ERROR] Failed to connect - 30963 +2026-02-23 06:49:03 [WARNING] - 7277 +2026-02-23 06:49:03 [INFO] - 6883 +2026-02-23 06:49:03 [CRITICAL] - 6965 +2026-02-23 06:49:03 [WARNING] - 10328 +2026-02-23 06:49:03 [CRITICAL] - 20679 +2026-02-23 06:49:03 [CRITICAL] - 28004 +2026-02-23 06:49:03 [ERROR] Segmentation fault - 28823 +2026-02-23 06:49:03 [ERROR] Invalid input - 26781 +2026-02-23 06:49:03 [ERROR] Disk full - 21724 +2026-02-23 06:49:03 [WARNING] - 4537 +2026-02-23 06:49:03 [INFO] - 21883 +2026-02-23 06:49:03 [WARNING] - 7855 +2026-02-23 06:49:03 [ERROR] Out of memory - 19472 +2026-02-23 06:49:03 [DEBUG] - 8642 +2026-02-23 06:49:03 [INFO] - 5083 +2026-02-23 06:49:03 [ERROR] Disk full - 7099 +2026-02-23 06:49:03 [CRITICAL] - 8677 +2026-02-23 06:49:03 [DEBUG] - 6774 +2026-02-23 06:49:03 [INFO] - 16013 +2026-02-23 06:49:03 [ERROR] Failed to connect - 32251 +2026-02-23 06:49:03 [ERROR] Disk full - 3968 +2026-02-23 06:49:03 [WARNING] - 28490 +2026-02-23 06:49:03 [INFO] - 15169 +2026-02-23 06:49:03 [CRITICAL] - 13252 +2026-02-23 06:49:03 [DEBUG] - 29454 +2026-02-23 06:49:03 [DEBUG] - 915 +2026-02-23 06:49:03 [WARNING] - 3995 +2026-02-23 06:49:03 [DEBUG] - 28298 +2026-02-23 06:49:03 [CRITICAL] - 8943 +2026-02-23 06:49:03 [DEBUG] - 11614 +2026-02-23 06:49:03 [CRITICAL] - 23728 +2026-02-23 06:49:03 [DEBUG] - 21016 +2026-02-23 06:49:03 [WARNING] - 19979 +2026-02-23 06:49:03 [CRITICAL] - 9067 +2026-02-23 06:49:03 [INFO] - 4472 +2026-02-23 06:49:03 [CRITICAL] - 31539 +2026-02-23 06:49:03 [WARNING] - 31856 +2026-02-23 06:49:03 [DEBUG] - 19290 +2026-02-23 06:49:03 [DEBUG] - 15470 +2026-02-23 06:49:03 [DEBUG] - 7581 +2026-02-23 06:49:03 [ERROR] Failed to connect - 28371 +2026-02-23 06:49:03 [INFO] - 14895 +2026-02-23 06:49:03 [DEBUG] - 31142 +2026-02-23 06:49:03 [WARNING] - 28880 +2026-02-23 06:49:03 [DEBUG] - 16662 +2026-02-23 06:49:03 [CRITICAL] - 15192 +2026-02-23 06:49:03 [WARNING] - 23955 +2026-02-23 06:49:03 [ERROR] Segmentation fault - 25743 +2026-02-23 06:49:03 [WARNING] - 31177 +2026-02-23 06:49:03 [WARNING] - 24660 +2026-02-23 06:49:03 [WARNING] - 6023 +2026-02-23 06:49:03 [WARNING] - 533 +2026-02-23 06:49:03 [INFO] - 6695 +2026-02-23 06:49:03 [INFO] - 13028 +2026-02-23 06:49:03 [WARNING] - 21021 +2026-02-23 06:49:03 [DEBUG] - 4453 +2026-02-23 06:49:03 [INFO] - 28028 +2026-02-23 06:49:03 [DEBUG] - 27366 +2026-02-23 06:49:03 [ERROR] Failed to connect - 16856 +2026-02-23 06:49:03 [CRITICAL] - 29933 +2026-02-23 06:49:03 [WARNING] - 7360 +2026-02-23 06:49:03 [INFO] - 5306 +2026-02-23 06:49:03 [WARNING] - 24497 +2026-02-23 06:49:03 [CRITICAL] - 9732 +2026-02-23 06:49:03 [ERROR] Failed to connect - 6437 +2026-02-23 06:49:03 [WARNING] - 27990 +2026-02-23 06:49:03 [INFO] - 20099 +2026-02-23 06:49:03 [ERROR] Failed to connect - 29910 +2026-02-23 06:49:03 [ERROR] Out of memory - 28595 +2026-02-23 06:49:03 [WARNING] - 12077 +2026-02-23 06:49:03 [WARNING] - 21339 +2026-02-23 06:49:03 [CRITICAL] - 26947 +2026-02-23 06:49:03 [INFO] - 24406 +2026-02-23 06:49:03 [CRITICAL] - 6036 +2026-02-23 06:49:03 [ERROR] Out of memory - 17070 +2026-02-23 06:49:03 [CRITICAL] - 16940 +2026-02-23 06:49:03 [DEBUG] - 21276 +2026-02-23 06:49:03 [DEBUG] - 11224 +2026-02-23 06:49:03 [ERROR] Out of memory - 15582 +2026-02-23 06:49:03 [DEBUG] - 13451 +2026-02-23 06:49:03 [ERROR] Out of memory - 24443 +2026-02-23 06:49:03 [ERROR] Invalid input - 8707 +2026-02-23 06:49:03 [DEBUG] - 6881 +2026-02-23 06:49:03 [ERROR] Disk full - 23963 +2026-02-23 06:49:03 [DEBUG] - 10212 +2026-02-23 06:49:04 [INFO] - 5992 +2026-02-23 06:49:04 [DEBUG] - 13664 +2026-02-23 06:49:04 [WARNING] - 27746 +2026-02-23 06:49:04 [ERROR] Invalid input - 11275 +2026-02-23 06:49:04 [INFO] - 15490 +2026-02-23 06:49:04 [CRITICAL] - 2964 +2026-02-23 06:49:04 [ERROR] Segmentation fault - 4904 +2026-02-23 06:49:04 [WARNING] - 6229 +2026-02-23 06:49:04 [DEBUG] - 16446 +2026-02-23 06:49:04 [CRITICAL] - 20524 +2026-02-23 06:49:04 [WARNING] - 25471 +2026-02-23 06:49:04 [INFO] - 32373 +2026-02-23 06:49:04 [DEBUG] - 7274 +2026-02-23 06:49:04 [INFO] - 15108 +2026-02-23 06:49:04 [WARNING] - 2217 +2026-02-23 06:49:04 [WARNING] - 25827 +2026-02-23 06:49:04 [ERROR] Out of memory - 19875 +2026-02-23 06:49:04 [WARNING] - 23240 +2026-02-23 06:49:04 [INFO] - 20805 +2026-02-23 06:49:04 [WARNING] - 21757 +2026-02-23 06:49:04 [INFO] - 12998 +2026-02-23 06:49:04 [CRITICAL] - 11957 +2026-02-23 06:49:04 [CRITICAL] - 7950 +2026-02-23 06:49:04 [WARNING] - 20645 +2026-02-23 06:49:04 [INFO] - 5119 +2026-02-23 06:49:04 [INFO] - 11342 +2026-02-23 06:49:04 [DEBUG] - 9686 +2026-02-23 06:49:04 [ERROR] Out of memory - 16783 +2026-02-23 06:49:04 [CRITICAL] - 26612 +2026-02-23 06:49:04 [ERROR] Out of memory - 26718 +2026-02-23 06:49:04 [ERROR] Disk full - 2098 +2026-02-23 06:49:04 [WARNING] - 18402 +2026-02-23 06:49:04 [INFO] - 27627 +2026-02-23 06:49:04 [ERROR] Disk full - 17839 +2026-02-23 06:49:04 [WARNING] - 3073 +2026-02-23 06:49:04 [ERROR] Invalid input - 28330 +2026-02-23 06:49:04 [DEBUG] - 12719 +2026-02-23 06:49:04 [ERROR] Segmentation fault - 23525 +2026-02-23 06:49:04 [CRITICAL] - 31825 +2026-02-23 06:49:04 [WARNING] - 25652 +2026-02-23 06:49:04 [WARNING] - 1634 +2026-02-23 06:49:04 [INFO] - 18017 +2026-02-23 06:49:04 [CRITICAL] - 29454 +2026-02-23 06:49:04 [WARNING] - 1890 +2026-02-23 06:49:04 [WARNING] - 12327 +2026-02-23 06:49:04 [ERROR] Segmentation fault - 3785 +2026-02-23 06:49:04 [WARNING] - 26238 +2026-02-23 06:49:04 [WARNING] - 2566 +2026-02-23 06:49:04 [ERROR] Disk full - 4191 +2026-02-23 06:49:04 [ERROR] Invalid input - 977 +2026-02-23 06:49:04 [ERROR] Segmentation fault - 9812 +2026-02-23 06:49:04 [ERROR] Failed to connect - 22710 +2026-02-23 06:49:04 [INFO] - 21129 +2026-02-23 06:49:04 [CRITICAL] - 31069 +2026-02-23 06:49:04 [DEBUG] - 13460 +2026-02-23 06:49:04 [WARNING] - 9843 +2026-02-23 06:49:04 [WARNING] - 31019 +2026-02-23 06:49:04 [CRITICAL] - 2638 +2026-02-23 06:49:04 [WARNING] - 18472 +2026-02-23 06:49:04 [INFO] - 30803 +2026-02-23 06:49:04 [WARNING] - 8570 +2026-02-23 06:49:04 [DEBUG] - 17194 +2026-02-23 06:49:04 [CRITICAL] - 10910 +2026-02-23 06:49:04 [ERROR] Disk full - 6911 +2026-02-23 06:49:04 [ERROR] Failed to connect - 6239 +2026-02-23 06:49:04 [DEBUG] - 29289 +2026-02-23 06:49:04 [INFO] - 9160 +2026-02-23 06:49:04 [ERROR] Out of memory - 23539 +2026-02-23 06:49:04 [INFO] - 1995 +2026-02-23 06:49:04 [DEBUG] - 17979 +2026-02-23 06:49:04 [WARNING] - 7194 +2026-02-23 06:49:04 [WARNING] - 6350 +2026-02-23 06:49:04 [INFO] - 24636 +2026-02-23 06:49:04 [ERROR] Segmentation fault - 9932 +2026-02-23 06:49:04 [ERROR] Failed to connect - 7318 +2026-02-23 06:49:04 [CRITICAL] - 777 +2026-02-23 06:49:04 [DEBUG] - 28943 +2026-02-23 06:49:04 [DEBUG] - 14969 +2026-02-23 06:49:04 [DEBUG] - 15042 +2026-02-23 06:49:04 [CRITICAL] - 24177 +2026-02-23 06:49:04 [ERROR] Failed to connect - 551 +2026-02-23 06:49:04 [INFO] - 27795 +2026-02-23 06:49:04 [INFO] - 7730 +2026-02-23 06:49:04 [WARNING] - 15630 +2026-02-23 06:49:04 [DEBUG] - 583 +2026-02-23 06:49:04 [DEBUG] - 6166 +2026-02-23 06:49:04 [DEBUG] - 31259 +2026-02-23 06:49:04 [ERROR] Invalid input - 19520 +2026-02-23 06:49:04 [DEBUG] - 10342 +2026-02-23 06:49:04 [INFO] - 20517 +2026-02-23 06:49:04 [ERROR] Out of memory - 3327 +2026-02-23 06:49:04 [WARNING] - 13968 +2026-02-23 06:49:04 [CRITICAL] - 10516 +2026-02-23 06:49:04 [CRITICAL] - 6172 +2026-02-23 06:49:04 [INFO] - 999 +2026-02-23 06:49:04 [ERROR] Segmentation fault - 17128 +2026-02-23 06:49:04 [ERROR] Segmentation fault - 14326 +2026-02-23 06:49:04 [DEBUG] - 5652 +2026-02-23 06:49:04 [INFO] - 10046 +2026-02-23 06:49:04 [CRITICAL] - 12771 +2026-02-23 06:49:04 [CRITICAL] - 1840 +2026-02-23 06:49:04 [CRITICAL] - 3516 +2026-02-23 06:49:04 [ERROR] Invalid input - 187 +2026-02-23 06:49:04 [ERROR] Segmentation fault - 26769 +2026-02-23 06:49:04 [ERROR] Segmentation fault - 24230 +2026-02-23 06:49:04 [WARNING] - 30918 +2026-02-23 06:49:04 [CRITICAL] - 26582 +2026-02-23 06:49:04 [WARNING] - 10199 +2026-02-23 06:49:04 [WARNING] - 4420 +2026-02-23 06:49:04 [CRITICAL] - 14223 +2026-02-23 06:49:04 [ERROR] Invalid input - 25382 +2026-02-23 06:49:04 [WARNING] - 11265 +2026-02-23 06:49:04 [CRITICAL] - 14437 +2026-02-23 06:49:04 [CRITICAL] - 24047 +2026-02-23 06:49:04 [INFO] - 19964 +2026-02-23 06:49:04 [INFO] - 31569 +2026-02-23 06:49:04 [WARNING] - 27885 +2026-02-23 06:49:04 [INFO] - 27784 +2026-02-23 06:49:04 [DEBUG] - 3332 +2026-02-23 06:49:04 [WARNING] - 24486 +2026-02-23 06:49:04 [ERROR] Invalid input - 15537 +2026-02-23 06:49:04 [DEBUG] - 12184 +2026-02-23 06:49:04 [DEBUG] - 14503 +2026-02-23 06:49:04 [ERROR] Failed to connect - 28629 +2026-02-23 06:49:04 [ERROR] Invalid input - 13866 +2026-02-23 06:49:04 [WARNING] - 4975 +2026-02-23 06:49:04 [WARNING] - 20524 +2026-02-23 06:49:04 [DEBUG] - 21337 +2026-02-23 06:49:04 [DEBUG] - 27892 +2026-02-23 06:49:04 [INFO] - 28449 +2026-02-23 06:49:04 [CRITICAL] - 6236 +2026-02-23 06:49:04 [DEBUG] - 28620 +2026-02-23 06:49:04 [WARNING] - 6647 +2026-02-23 06:49:04 [WARNING] - 28365 +2026-02-23 06:49:04 [WARNING] - 20141 +2026-02-23 06:49:04 [DEBUG] - 21533 +2026-02-23 06:49:04 [DEBUG] - 21462 +2026-02-23 06:49:04 [CRITICAL] - 19497 +2026-02-23 06:49:04 [CRITICAL] - 4107 +2026-02-23 06:49:04 [INFO] - 20120 +2026-02-23 06:49:04 [ERROR] Invalid input - 4737 +2026-02-23 06:49:04 [ERROR] Out of memory - 28769 +2026-02-23 06:49:04 [DEBUG] - 19332 +2026-02-23 06:49:04 [INFO] - 7544 +2026-02-23 06:49:04 [WARNING] - 27143 +2026-02-23 06:49:04 [DEBUG] - 17354 +2026-02-23 06:49:04 [CRITICAL] - 13588 +2026-02-23 06:49:04 [INFO] - 17102 +2026-02-23 06:49:04 [WARNING] - 14501 +2026-02-23 06:49:04 [WARNING] - 20288 +2026-02-23 06:49:04 [DEBUG] - 12928 +2026-02-23 06:49:04 [WARNING] - 14125 +2026-02-23 06:49:04 [ERROR] Segmentation fault - 16755 +2026-02-23 06:49:04 [DEBUG] - 13512 +2026-02-23 06:49:04 [CRITICAL] - 22155 +2026-02-23 06:49:04 [WARNING] - 24194 +2026-02-23 06:49:04 [INFO] - 27028 +2026-02-23 06:49:04 [CRITICAL] - 1974 +2026-02-23 06:49:04 [INFO] - 7296 +2026-02-23 06:49:04 [CRITICAL] - 29171 +2026-02-23 06:49:04 [INFO] - 7520 +2026-02-23 06:49:04 [WARNING] - 17201 +2026-02-23 06:49:04 [CRITICAL] - 23106 +2026-02-23 06:49:04 [ERROR] Disk full - 25463 +2026-02-23 06:49:04 [WARNING] - 10759 +2026-02-23 06:49:04 [INFO] - 19992 +2026-02-23 06:49:04 [WARNING] - 3226 +2026-02-23 06:49:04 [ERROR] Invalid input - 24477 +2026-02-23 06:49:04 [DEBUG] - 11250 +2026-02-23 06:49:04 [INFO] - 15652 +2026-02-23 06:49:04 [WARNING] - 16614 +2026-02-23 06:49:04 [ERROR] Segmentation fault - 18253 +2026-02-23 06:49:04 [DEBUG] - 23811 +2026-02-23 06:49:04 [DEBUG] - 6035 +2026-02-23 06:49:04 [DEBUG] - 22109 +2026-02-23 06:49:04 [DEBUG] - 14892 +2026-02-23 06:49:04 [ERROR] Failed to connect - 27744 +2026-02-23 06:49:04 [INFO] - 21424 +2026-02-23 06:49:04 [INFO] - 16663 +2026-02-23 06:49:04 [DEBUG] - 27433 +2026-02-23 06:49:04 [DEBUG] - 31966 +2026-02-23 06:49:04 [ERROR] Invalid input - 31919 +2026-02-23 06:49:04 [WARNING] - 17906 +2026-02-23 06:49:04 [ERROR] Invalid input - 23097 +2026-02-23 06:49:04 [CRITICAL] - 13037 +2026-02-23 06:49:04 [ERROR] Segmentation fault - 22076 +2026-02-23 06:49:04 [INFO] - 14116 +2026-02-23 06:49:04 [WARNING] - 31167 +2026-02-23 06:49:04 [DEBUG] - 3485 +2026-02-23 06:49:04 [INFO] - 12019 +2026-02-23 06:49:04 [ERROR] Invalid input - 20545 +2026-02-23 06:49:04 [DEBUG] - 17572 +2026-02-23 06:49:04 [INFO] - 3149 +2026-02-23 06:49:04 [DEBUG] - 16435 +2026-02-23 06:49:04 [INFO] - 13645 +2026-02-23 06:49:04 [WARNING] - 27733 +2026-02-23 06:49:04 [WARNING] - 16200 +2026-02-23 06:49:04 [WARNING] - 19715 +2026-02-23 06:49:04 [ERROR] Disk full - 30303 +2026-02-23 06:49:04 [ERROR] Out of memory - 14496 +2026-02-23 06:49:04 [WARNING] - 13747 +2026-02-23 06:49:04 [WARNING] - 848 +2026-02-23 06:49:04 [ERROR] Failed to connect - 3717 +2026-02-23 06:49:04 [ERROR] Invalid input - 6685 +2026-02-23 06:49:04 [CRITICAL] - 3948 +2026-02-23 06:49:04 [ERROR] Out of memory - 9866 +2026-02-23 06:49:04 [DEBUG] - 5163 +2026-02-23 06:49:04 [CRITICAL] - 10030 +2026-02-23 06:49:04 [INFO] - 241 +2026-02-23 06:49:04 [WARNING] - 28056 +2026-02-23 06:49:04 [DEBUG] - 27646 +2026-02-23 06:49:04 [ERROR] Invalid input - 15286 +2026-02-23 06:49:04 [ERROR] Failed to connect - 17107 +2026-02-23 06:49:04 [CRITICAL] - 13929 +2026-02-23 06:49:04 [CRITICAL] - 10979 +2026-02-23 06:49:04 [ERROR] Out of memory - 12602 +2026-02-23 06:49:04 [ERROR] Failed to connect - 20185 +2026-02-23 06:49:04 [CRITICAL] - 24878 +2026-02-23 06:49:04 [CRITICAL] - 17137 +2026-02-23 06:49:04 [DEBUG] - 21740 +2026-02-23 06:49:04 [WARNING] - 9225 +2026-02-23 06:49:04 [ERROR] Invalid input - 10751 +2026-02-23 06:49:04 [DEBUG] - 27268 +2026-02-23 06:49:04 [CRITICAL] - 18704 +2026-02-23 06:49:04 [WARNING] - 22246 +2026-02-23 06:49:04 [ERROR] Out of memory - 24824 +2026-02-23 06:49:04 [INFO] - 31806 +2026-02-23 06:49:04 [ERROR] Invalid input - 6167 +2026-02-23 06:49:04 [DEBUG] - 3336 +2026-02-23 06:49:04 [ERROR] Disk full - 9201 +2026-02-23 06:49:04 [ERROR] Out of memory - 26168 +2026-02-23 06:49:04 [ERROR] Out of memory - 16950 +2026-02-23 06:49:04 [ERROR] Out of memory - 21540 +2026-02-23 06:49:04 [WARNING] - 19266 +2026-02-23 06:49:04 [CRITICAL] - 2422 +2026-02-23 06:49:04 [DEBUG] - 20645 +2026-02-23 06:49:04 [ERROR] Out of memory - 23887 +2026-02-23 06:49:04 [CRITICAL] - 880 +2026-02-23 06:49:04 [INFO] - 26556 +2026-02-23 06:49:04 [DEBUG] - 12937 +2026-02-23 06:49:04 [WARNING] - 22884 +2026-02-23 06:49:04 [ERROR] Failed to connect - 25759 +2026-02-23 06:49:04 [WARNING] - 24536 +2026-02-23 06:49:04 [WARNING] - 15217 +2026-02-23 06:49:04 [ERROR] Invalid input - 1810 +2026-02-23 06:49:04 [DEBUG] - 6807 +2026-02-23 06:49:04 [WARNING] - 2540 +2026-02-23 06:49:04 [INFO] - 21066 +2026-02-23 06:49:04 [DEBUG] - 8368 +2026-02-23 06:49:04 [DEBUG] - 19968 +2026-02-23 06:49:04 [CRITICAL] - 4905 +2026-02-23 06:49:04 [ERROR] Segmentation fault - 11106 +2026-02-23 06:49:04 [WARNING] - 4864 +2026-02-23 06:49:04 [WARNING] - 21675 +2026-02-23 06:49:04 [INFO] - 13564 +2026-02-23 06:49:04 [CRITICAL] - 6891 +2026-02-23 06:49:04 [DEBUG] - 6588 +2026-02-23 06:49:04 [INFO] - 19658 +2026-02-23 06:49:04 [CRITICAL] - 11162 +2026-02-23 06:49:04 [CRITICAL] - 14533 +2026-02-23 06:49:04 [DEBUG] - 11748 +2026-02-23 06:49:04 [ERROR] Disk full - 25669 +2026-02-23 06:49:04 [ERROR] Disk full - 9718 +2026-02-23 06:49:04 [WARNING] - 20266 +2026-02-23 06:49:04 [INFO] - 12918 +2026-02-23 06:49:04 [INFO] - 21835 +2026-02-23 06:49:04 [ERROR] Segmentation fault - 9608 +2026-02-23 06:49:04 [INFO] - 2983 +2026-02-23 06:49:04 [WARNING] - 15145 +2026-02-23 06:49:04 [INFO] - 25842 +2026-02-23 06:49:04 [ERROR] Segmentation fault - 8796 +2026-02-23 06:49:04 [WARNING] - 14205 +2026-02-23 06:49:04 [DEBUG] - 8732 +2026-02-23 06:49:04 [ERROR] Segmentation fault - 31393 +2026-02-23 06:49:04 [INFO] - 1743 +2026-02-23 06:49:04 [WARNING] - 30919 +2026-02-23 06:49:04 [ERROR] Out of memory - 6813 +2026-02-23 06:49:04 [ERROR] Segmentation fault - 7427 +2026-02-23 06:49:04 [DEBUG] - 31431 +2026-02-23 06:49:04 [WARNING] - 22412 +2026-02-23 06:49:04 [DEBUG] - 15003 +2026-02-23 06:49:04 [INFO] - 4420 +2026-02-23 06:49:04 [WARNING] - 23659 +2026-02-23 06:49:04 [ERROR] Out of memory - 1201 +2026-02-23 06:49:04 [WARNING] - 2820 +2026-02-23 06:49:04 [CRITICAL] - 2352 +2026-02-23 06:49:04 [WARNING] - 8782 +2026-02-23 06:49:04 [WARNING] - 15174 +2026-02-23 06:49:04 [DEBUG] - 16458 +2026-02-23 06:49:04 [ERROR] Disk full - 27462 +2026-02-23 06:49:04 [CRITICAL] - 31481 +2026-02-23 06:49:04 [CRITICAL] - 18866 +2026-02-23 06:49:04 [INFO] - 1610 +2026-02-23 06:49:04 [INFO] - 4488 +2026-02-23 06:49:04 [INFO] - 19969 +2026-02-23 06:49:04 [WARNING] - 26091 +2026-02-23 06:49:04 [DEBUG] - 24181 +2026-02-23 06:49:04 [CRITICAL] - 32512 +2026-02-23 06:49:04 [DEBUG] - 18027 +2026-02-23 06:49:04 [CRITICAL] - 8962 +2026-02-23 06:49:04 [WARNING] - 21698 +2026-02-23 06:49:04 [CRITICAL] - 25623 +2026-02-23 06:49:04 [DEBUG] - 10143 +2026-02-23 06:49:04 [INFO] - 8789 +2026-02-23 06:49:04 [DEBUG] - 1504 +2026-02-23 06:49:04 [ERROR] Invalid input - 22646 +2026-02-23 06:49:04 [INFO] - 18580 +2026-02-23 06:49:04 [CRITICAL] - 10416 +2026-02-23 06:49:04 [ERROR] Disk full - 12789 +2026-02-23 06:49:04 [ERROR] Out of memory - 9472 +2026-02-23 06:49:04 [INFO] - 26322 +2026-02-23 06:49:04 [WARNING] - 27969 +2026-02-23 06:49:04 [CRITICAL] - 23307 +2026-02-23 06:49:04 [CRITICAL] - 26505 +2026-02-23 06:49:04 [DEBUG] - 30592 +2026-02-23 06:49:04 [INFO] - 6018 +2026-02-23 06:49:04 [DEBUG] - 25823 +2026-02-23 06:49:04 [WARNING] - 5641 +2026-02-23 06:49:04 [ERROR] Invalid input - 2594 +2026-02-23 06:49:04 [WARNING] - 20875 +2026-02-23 06:49:04 [INFO] - 12166 +2026-02-23 06:49:04 [INFO] - 8823 +2026-02-23 06:49:04 [CRITICAL] - 30429 +2026-02-23 06:49:04 [ERROR] Invalid input - 22897 +2026-02-23 06:49:04 [CRITICAL] - 19398 +2026-02-23 06:49:04 [INFO] - 24949 +2026-02-23 06:49:04 [INFO] - 9997 +2026-02-23 06:49:04 [INFO] - 15526 +2026-02-23 06:49:04 [WARNING] - 19388 +2026-02-23 06:49:04 [WARNING] - 2507 +2026-02-23 06:49:04 [ERROR] Segmentation fault - 6522 +2026-02-23 06:49:04 [INFO] - 1701 +2026-02-23 06:49:04 [CRITICAL] - 11776 +2026-02-23 06:49:04 [INFO] - 24357 +2026-02-23 06:49:04 [INFO] - 22811 +2026-02-23 06:49:04 [ERROR] Segmentation fault - 22186 +2026-02-23 06:49:04 [WARNING] - 3660 +2026-02-23 06:49:04 [DEBUG] - 16484 +2026-02-23 06:49:04 [DEBUG] - 6161 +2026-02-23 06:49:04 [INFO] - 31714 +2026-02-23 06:49:04 [ERROR] Segmentation fault - 27326 +2026-02-23 06:49:04 [CRITICAL] - 27871 +2026-02-23 06:49:04 [CRITICAL] - 27925 +2026-02-23 06:49:04 [CRITICAL] - 12454 +2026-02-23 06:49:04 [DEBUG] - 31165 +2026-02-23 06:49:04 [ERROR] Failed to connect - 4408 +2026-02-23 06:49:04 [WARNING] - 23213 +2026-02-23 06:49:04 [DEBUG] - 31528 +2026-02-23 06:49:04 [CRITICAL] - 1590 +2026-02-23 06:49:04 [DEBUG] - 29806 +2026-02-23 06:49:04 [ERROR] Invalid input - 28204 +2026-02-23 06:49:04 [INFO] - 6241 +2026-02-23 06:49:04 [INFO] - 28898 +2026-02-23 06:49:04 [WARNING] - 6962 +2026-02-23 06:49:04 [WARNING] - 6404 +2026-02-23 06:49:04 [DEBUG] - 24941 +2026-02-23 06:49:04 [ERROR] Failed to connect - 23365 +2026-02-23 06:49:04 [ERROR] Failed to connect - 3136 +2026-02-23 06:49:04 [DEBUG] - 18590 +2026-02-23 06:49:04 [DEBUG] - 28954 +2026-02-23 06:49:04 [INFO] - 5812 +2026-02-23 06:49:04 [INFO] - 8274 +2026-02-23 06:49:04 [ERROR] Out of memory - 28800 +2026-02-23 06:49:04 [ERROR] Failed to connect - 7080 +2026-02-23 06:49:04 [ERROR] Disk full - 10376 +2026-02-23 06:49:04 [DEBUG] - 12330 +2026-02-23 06:49:04 [ERROR] Invalid input - 7528 +2026-02-23 06:49:04 [INFO] - 11844 +2026-02-23 06:49:04 [CRITICAL] - 26423 +2026-02-23 06:49:04 [DEBUG] - 18668 +2026-02-23 06:49:04 [DEBUG] - 11223 +2026-02-23 06:49:04 [INFO] - 7263 +2026-02-23 06:49:04 [ERROR] Disk full - 16562 +2026-02-23 06:49:04 [CRITICAL] - 18376 +2026-02-23 06:49:04 [CRITICAL] - 2228 +2026-02-23 06:49:04 [ERROR] Segmentation fault - 11709 +2026-02-23 06:49:04 [WARNING] - 24975 +2026-02-23 06:49:04 [CRITICAL] - 12411 +2026-02-23 06:49:04 [CRITICAL] - 9983 +2026-02-23 06:49:04 [WARNING] - 12743 +2026-02-23 06:49:04 [CRITICAL] - 8077 +2026-02-23 06:49:04 [INFO] - 30168 +2026-02-23 06:49:04 [INFO] - 15212 +2026-02-23 06:49:04 [CRITICAL] - 5283 +2026-02-23 06:49:04 [INFO] - 21198 +2026-02-23 06:49:04 [CRITICAL] - 31236 +2026-02-23 06:49:04 [INFO] - 4992 +2026-02-23 06:49:04 [DEBUG] - 18642 +2026-02-23 06:49:04 [ERROR] Failed to connect - 22919 +2026-02-23 06:49:04 [ERROR] Segmentation fault - 6266 +2026-02-23 06:49:04 [WARNING] - 27746 +2026-02-23 06:49:04 [DEBUG] - 21554 +2026-02-23 06:49:04 [CRITICAL] - 29008 +2026-02-23 06:49:04 [ERROR] Failed to connect - 9134 +2026-02-23 06:49:04 [DEBUG] - 17659 +2026-02-23 06:49:04 [CRITICAL] - 26880 +2026-02-23 06:49:04 [DEBUG] - 24446 +2026-02-23 06:49:04 [ERROR] Invalid input - 28675 +2026-02-23 06:49:04 [DEBUG] - 12639 +2026-02-23 06:49:04 [ERROR] Segmentation fault - 903 +2026-02-23 06:49:04 [WARNING] - 13498 +2026-02-23 06:49:04 [ERROR] Failed to connect - 26056 +2026-02-23 06:49:04 [ERROR] Failed to connect - 18509 +2026-02-23 06:49:04 [WARNING] - 2965 +2026-02-23 06:49:04 [DEBUG] - 28135 +2026-02-23 06:49:04 [CRITICAL] - 30815 +2026-02-23 06:49:04 [CRITICAL] - 19127 +2026-02-23 06:49:04 [ERROR] Failed to connect - 26364 +2026-02-23 06:49:04 [DEBUG] - 30893 +2026-02-23 06:49:04 [DEBUG] - 17250 +2026-02-23 06:49:04 [CRITICAL] - 29779 +2026-02-23 06:49:04 [WARNING] - 14101 +2026-02-23 06:49:04 [WARNING] - 32312 +2026-02-23 06:49:04 [WARNING] - 681 +2026-02-23 06:49:04 [INFO] - 14109 +2026-02-23 06:49:04 [DEBUG] - 17016 +2026-02-23 06:49:04 [ERROR] Segmentation fault - 14064 +2026-02-23 06:49:04 [INFO] - 18135 +2026-02-23 06:49:04 [CRITICAL] - 32108 +2026-02-23 06:49:04 [CRITICAL] - 3110 +2026-02-23 06:49:04 [ERROR] Disk full - 12652 +2026-02-23 06:49:04 [CRITICAL] - 10359 +2026-02-23 06:49:04 [CRITICAL] - 25019 +2026-02-23 06:49:04 [WARNING] - 4794 +2026-02-23 06:49:04 [CRITICAL] - 5906 +2026-02-23 06:49:04 [DEBUG] - 14708 +2026-02-23 06:49:04 [CRITICAL] - 8146 +2026-02-23 06:49:04 [INFO] - 29058 +2026-02-23 06:49:04 [ERROR] Out of memory - 20090 +2026-02-23 06:49:04 [DEBUG] - 21916 +2026-02-23 06:49:04 [CRITICAL] - 19135 +2026-02-23 06:49:04 [DEBUG] - 27107 +2026-02-23 06:49:04 [WARNING] - 18352 +2026-02-23 06:49:04 [DEBUG] - 26914 +2026-02-23 06:49:04 [DEBUG] - 2980 +2026-02-23 06:49:04 [ERROR] Segmentation fault - 781 +2026-02-23 06:49:04 [WARNING] - 10378 +2026-02-23 06:49:04 [WARNING] - 13187 +2026-02-23 06:49:04 [ERROR] Segmentation fault - 30702 +2026-02-23 06:49:04 [DEBUG] - 23338 +2026-02-23 06:49:04 [WARNING] - 31482 +2026-02-23 06:49:04 [INFO] - 13219 +2026-02-23 06:49:04 [DEBUG] - 9291 +2026-02-23 06:49:04 [ERROR] Disk full - 25867 +2026-02-23 06:49:04 [ERROR] Segmentation fault - 10668 +2026-02-23 06:49:04 [WARNING] - 6466 +2026-02-23 06:49:04 [WARNING] - 26250 +2026-02-23 06:49:04 [WARNING] - 15996 +2026-02-23 06:49:04 [ERROR] Out of memory - 19863 +2026-02-23 06:49:04 [INFO] - 20344 +2026-02-23 06:49:04 [WARNING] - 4274 +2026-02-23 06:49:04 [ERROR] Out of memory - 27389 +2026-02-23 06:49:04 [DEBUG] - 19135 +2026-02-23 06:49:04 [CRITICAL] - 9307 +2026-02-23 06:49:04 [WARNING] - 2447 +2026-02-23 06:49:04 [INFO] - 16868 +2026-02-23 06:49:04 [INFO] - 7685 +2026-02-23 06:49:04 [INFO] - 16183 +2026-02-23 06:49:04 [DEBUG] - 10314 +2026-02-23 06:49:04 [CRITICAL] - 31653 +2026-02-23 06:49:04 [WARNING] - 32632 +2026-02-23 06:49:04 [DEBUG] - 1711 +2026-02-23 06:49:04 [DEBUG] - 11347 +2026-02-23 06:49:04 [INFO] - 6211 +2026-02-23 06:49:04 [ERROR] Out of memory - 20616 +2026-02-23 06:49:04 [WARNING] - 23808 +2026-02-23 06:49:04 [INFO] - 117 +2026-02-23 06:49:04 [ERROR] Out of memory - 12247 +2026-02-23 06:49:04 [CRITICAL] - 27168 +2026-02-23 06:49:04 [CRITICAL] - 3927 +2026-02-23 06:49:04 [ERROR] Disk full - 23176 +2026-02-23 06:49:04 [ERROR] Out of memory - 22019 +2026-02-23 06:49:04 [DEBUG] - 9797 +2026-02-23 06:49:04 [INFO] - 4441 +2026-02-23 06:49:04 [CRITICAL] - 28774 +2026-02-23 06:49:04 [WARNING] - 17855 +2026-02-23 06:49:04 [CRITICAL] - 13662 +2026-02-23 06:49:04 [ERROR] Segmentation fault - 8062 +2026-02-23 06:49:04 [INFO] - 12667 +2026-02-23 06:49:04 [CRITICAL] - 4164 +2026-02-23 06:49:04 [DEBUG] - 17869 +2026-02-23 06:49:04 [ERROR] Invalid input - 25581 +2026-02-23 06:49:04 [INFO] - 32754 +2026-02-23 06:49:04 [INFO] - 23979 +2026-02-23 06:49:04 [WARNING] - 24670 +2026-02-23 06:49:04 [WARNING] - 31053 +2026-02-23 06:49:04 [WARNING] - 24151 +2026-02-23 06:49:04 [INFO] - 19717 +2026-02-23 06:49:04 [DEBUG] - 7527 +2026-02-23 06:49:04 [INFO] - 8330 +2026-02-23 06:49:04 [ERROR] Segmentation fault - 31311 +2026-02-23 06:49:04 [CRITICAL] - 809 +2026-02-23 06:49:04 [CRITICAL] - 17638 +2026-02-23 06:49:04 [CRITICAL] - 23971 +2026-02-23 06:49:04 [CRITICAL] - 20029 +2026-02-23 06:49:04 [ERROR] Out of memory - 16726 +2026-02-23 06:49:04 [CRITICAL] - 11025 +2026-02-23 06:49:04 [DEBUG] - 21898 +2026-02-23 06:49:04 [DEBUG] - 15287 +2026-02-23 06:49:04 [WARNING] - 3499 +2026-02-23 06:49:04 [ERROR] Failed to connect - 7925 +2026-02-23 06:49:04 [DEBUG] - 17849 +2026-02-23 06:49:04 [CRITICAL] - 22011 +2026-02-23 06:49:04 [INFO] - 1464 +2026-02-23 06:49:04 [INFO] - 24594 +2026-02-23 06:49:04 [WARNING] - 7771 +2026-02-23 06:49:04 [ERROR] Invalid input - 2226 +2026-02-23 06:49:04 [INFO] - 7443 +2026-02-23 06:49:04 [CRITICAL] - 18287 +2026-02-23 06:49:04 [ERROR] Failed to connect - 3697 +2026-02-23 06:49:04 [DEBUG] - 22637 +2026-02-23 06:49:04 [INFO] - 15764 +2026-02-23 06:49:04 [INFO] - 2391 +2026-02-23 06:49:04 [CRITICAL] - 18110 +2026-02-23 06:49:04 [INFO] - 18268 +2026-02-23 06:49:04 [WARNING] - 23360 +2026-02-23 06:49:04 [WARNING] - 3356 +2026-02-23 06:49:04 [INFO] - 22854 +2026-02-23 06:49:04 [INFO] - 11203 +2026-02-23 06:49:04 [INFO] - 17251 +2026-02-23 06:49:04 [WARNING] - 10932 +2026-02-23 06:49:04 [DEBUG] - 70 +2026-02-23 06:49:04 [DEBUG] - 14705 +2026-02-23 06:49:04 [ERROR] Segmentation fault - 11349 +2026-02-23 06:49:04 [WARNING] - 20100 +2026-02-23 06:49:04 [DEBUG] - 31760 +2026-02-23 06:49:04 [CRITICAL] - 19003 +2026-02-23 06:49:04 [WARNING] - 19787 +2026-02-23 06:49:04 [DEBUG] - 2469 +2026-02-23 06:49:04 [WARNING] - 22872 +2026-02-23 06:49:04 [ERROR] Disk full - 25245 +2026-02-23 06:49:04 [INFO] - 7579 +2026-02-23 06:49:04 [CRITICAL] - 24591 +2026-02-23 06:49:04 [WARNING] - 20812 +2026-02-23 06:49:04 [INFO] - 28544 +2026-02-23 06:49:04 [INFO] - 21022 +2026-02-23 06:49:04 [WARNING] - 32007 +2026-02-23 06:49:04 [CRITICAL] - 8644 +2026-02-23 06:49:04 [DEBUG] - 15661 +2026-02-23 06:49:04 [INFO] - 23828 +2026-02-23 06:49:04 [WARNING] - 24666 +2026-02-23 06:49:04 [ERROR] Out of memory - 7601 +2026-02-23 06:49:04 [WARNING] - 9417 +2026-02-23 06:49:04 [CRITICAL] - 25238 +2026-02-23 06:49:04 [INFO] - 22055 +2026-02-23 06:49:04 [DEBUG] - 32471 +2026-02-23 06:49:04 [CRITICAL] - 4762 +2026-02-23 06:49:04 [CRITICAL] - 25759 +2026-02-23 06:49:04 [WARNING] - 30952 +2026-02-23 06:49:04 [INFO] - 11854 +2026-02-23 06:49:04 [INFO] - 15348 +2026-02-23 06:49:04 [WARNING] - 21928 +2026-02-23 06:49:04 [DEBUG] - 22050 +2026-02-23 06:49:04 [INFO] - 13648 +2026-02-23 06:49:04 [ERROR] Disk full - 26338 +2026-02-23 06:49:04 [CRITICAL] - 15804 +2026-02-23 06:49:04 [WARNING] - 13689 +2026-02-23 06:49:04 [WARNING] - 9467 +2026-02-23 06:49:04 [DEBUG] - 21208 +2026-02-23 06:49:04 [DEBUG] - 5951 +2026-02-23 06:49:04 [INFO] - 6753 +2026-02-23 06:49:04 [INFO] - 29659 +2026-02-23 06:49:04 [ERROR] Disk full - 24517 +2026-02-23 06:49:04 [DEBUG] - 7913 +2026-02-23 06:49:04 [CRITICAL] - 5668 +2026-02-23 06:49:04 [CRITICAL] - 11774 +2026-02-23 06:49:04 [ERROR] Invalid input - 23913 +2026-02-23 06:49:04 [WARNING] - 23899 +2026-02-23 06:49:04 [CRITICAL] - 18981 +2026-02-23 06:49:04 [ERROR] Out of memory - 8262 +2026-02-23 06:49:04 [CRITICAL] - 17070 +2026-02-23 06:49:04 [DEBUG] - 24752 +2026-02-23 06:49:04 [ERROR] Disk full - 15707 +2026-02-23 06:49:04 [CRITICAL] - 31378 +2026-02-23 06:49:04 [INFO] - 20071 +2026-02-23 06:49:04 [ERROR] Failed to connect - 20857 +2026-02-23 06:49:04 [DEBUG] - 14574 +2026-02-23 06:49:04 [WARNING] - 16508 +2026-02-23 06:49:04 [WARNING] - 12113 +2026-02-23 06:49:04 [DEBUG] - 3408 +2026-02-23 06:49:04 [ERROR] Invalid input - 14793 +2026-02-23 06:49:04 [ERROR] Failed to connect - 32627 +2026-02-23 06:49:04 [WARNING] - 20816 +2026-02-23 06:49:04 [DEBUG] - 25932 +2026-02-23 06:49:04 [WARNING] - 26175 +2026-02-23 06:49:04 [ERROR] Failed to connect - 13261 +2026-02-23 06:49:04 [ERROR] Segmentation fault - 26848 +2026-02-23 06:49:04 [ERROR] Segmentation fault - 6121 +2026-02-23 06:49:04 [WARNING] - 560 +2026-02-23 06:49:05 [ERROR] Failed to connect - 30916 +2026-02-23 06:49:05 [CRITICAL] - 26642 +2026-02-23 06:49:05 [ERROR] Invalid input - 27724 +2026-02-23 06:49:05 [ERROR] Disk full - 15882 +2026-02-23 06:49:05 [DEBUG] - 23027 +2026-02-23 06:49:05 [WARNING] - 26435 +2026-02-23 06:49:05 [WARNING] - 31873 +2026-02-23 06:49:05 [DEBUG] - 956 +2026-02-23 06:49:05 [CRITICAL] - 21816 +2026-02-23 06:49:05 [WARNING] - 16434 +2026-02-23 06:49:05 [INFO] - 30542 +2026-02-23 06:49:05 [WARNING] - 973 +2026-02-23 06:49:05 [INFO] - 3148 +2026-02-23 06:49:05 [WARNING] - 20946 +2026-02-23 06:49:05 [CRITICAL] - 20873 +2026-02-23 06:49:05 [INFO] - 22860 +2026-02-23 06:49:05 [ERROR] Disk full - 18237 +2026-02-23 06:49:05 [WARNING] - 24225 +2026-02-23 06:49:05 [WARNING] - 31059 +2026-02-23 06:49:05 [DEBUG] - 20384 +2026-02-23 06:49:05 [WARNING] - 746 +2026-02-23 06:49:05 [WARNING] - 2019 +2026-02-23 06:49:05 [WARNING] - 12787 +2026-02-23 06:49:05 [WARNING] - 16032 +2026-02-23 06:49:05 [CRITICAL] - 2670 +2026-02-23 06:49:05 [INFO] - 2688 +2026-02-23 06:49:05 [DEBUG] - 2465 +2026-02-23 06:49:05 [WARNING] - 6150 +2026-02-23 06:49:05 [ERROR] Out of memory - 15671 +2026-02-23 06:49:05 [INFO] - 26120 +2026-02-23 06:49:05 [CRITICAL] - 764 +2026-02-23 06:49:05 [DEBUG] - 19556 +2026-02-23 06:49:05 [CRITICAL] - 17753 +2026-02-23 06:49:05 [WARNING] - 20290 +2026-02-23 06:49:05 [ERROR] Out of memory - 11287 +2026-02-23 06:49:05 [WARNING] - 17926 +2026-02-23 06:49:05 [ERROR] Disk full - 26330 +2026-02-23 06:49:05 [WARNING] - 10449 +2026-02-23 06:49:05 [CRITICAL] - 24839 +2026-02-23 06:49:05 [INFO] - 7150 +2026-02-23 06:49:05 [ERROR] Disk full - 27313 +2026-02-23 06:49:05 [ERROR] Out of memory - 7324 +2026-02-23 06:49:05 [WARNING] - 9404 +2026-02-23 06:49:05 [CRITICAL] - 19960 +2026-02-23 06:49:05 [DEBUG] - 26347 +2026-02-23 06:49:05 [INFO] - 29699 +2026-02-23 06:49:05 [DEBUG] - 20416 +2026-02-23 06:49:05 [CRITICAL] - 23000 +2026-02-23 06:49:05 [CRITICAL] - 7769 +2026-02-23 06:49:05 [CRITICAL] - 18735 +2026-02-23 06:49:05 [ERROR] Failed to connect - 8592 +2026-02-23 06:49:05 [WARNING] - 31888 +2026-02-23 06:49:05 [WARNING] - 23817 +2026-02-23 06:49:05 [DEBUG] - 2237 +2026-02-23 06:49:05 [INFO] - 12438 +2026-02-23 06:49:05 [WARNING] - 6675 +2026-02-23 06:49:05 [ERROR] Segmentation fault - 25191 +2026-02-23 06:49:05 [INFO] - 31526 +2026-02-23 06:49:05 [WARNING] - 3444 +2026-02-23 06:49:05 [ERROR] Out of memory - 27573 +2026-02-23 06:49:05 [CRITICAL] - 30515 +2026-02-23 06:49:05 [DEBUG] - 2799 +2026-02-23 06:49:05 [DEBUG] - 15057 +2026-02-23 06:49:05 [WARNING] - 28109 +2026-02-23 06:49:05 [INFO] - 14280 +2026-02-23 06:49:05 [INFO] - 16054 +2026-02-23 06:49:05 [ERROR] Segmentation fault - 22108 +2026-02-23 06:49:05 [CRITICAL] - 15645 +2026-02-23 06:49:05 [DEBUG] - 14281 +2026-02-23 06:49:05 [ERROR] Invalid input - 13161 +2026-02-23 06:49:05 [ERROR] Disk full - 25636 +2026-02-23 06:49:05 [INFO] - 22238 +2026-02-23 06:49:05 [WARNING] - 13461 +2026-02-23 06:49:05 [DEBUG] - 18473 +2026-02-23 06:49:05 [CRITICAL] - 30585 +2026-02-23 06:49:05 [INFO] - 5863 +2026-02-23 06:49:05 [CRITICAL] - 29637 +2026-02-23 06:49:05 [CRITICAL] - 11944 +2026-02-23 06:49:05 [ERROR] Disk full - 27388 +2026-02-23 06:49:05 [WARNING] - 8217 +2026-02-23 06:49:05 [CRITICAL] - 10858 +2026-02-23 06:49:05 [INFO] - 30528 +2026-02-23 06:49:05 [DEBUG] - 30446 +2026-02-23 06:49:05 [CRITICAL] - 2683 +2026-02-23 06:49:05 [ERROR] Out of memory - 27856 +2026-02-23 06:49:05 [CRITICAL] - 28171 +2026-02-23 06:49:05 [INFO] - 25247 +2026-02-23 06:49:05 [INFO] - 17882 +2026-02-23 06:49:05 [WARNING] - 22172 +2026-02-23 06:49:05 [DEBUG] - 8243 +2026-02-23 06:49:05 [DEBUG] - 5460 +2026-02-23 06:49:05 [DEBUG] - 24217 +2026-02-23 06:49:05 [ERROR] Out of memory - 5320 +2026-02-23 06:49:05 [INFO] - 5039 +2026-02-23 06:49:05 [ERROR] Disk full - 11394 +2026-02-23 06:49:05 [DEBUG] - 6738 +2026-02-23 06:49:05 [ERROR] Disk full - 6387 +2026-02-23 06:49:05 [CRITICAL] - 29 +2026-02-23 06:49:05 [ERROR] Out of memory - 1089 +2026-02-23 06:49:05 [INFO] - 11769 +2026-02-23 06:49:05 [CRITICAL] - 31014 +2026-02-23 06:49:05 [ERROR] Out of memory - 32497 +2026-02-23 06:49:05 [CRITICAL] - 29561 +2026-02-23 06:49:05 [ERROR] Disk full - 2991 +2026-02-23 06:49:05 [CRITICAL] - 24232 +2026-02-23 06:49:05 [ERROR] Failed to connect - 13090 +2026-02-23 06:49:05 [CRITICAL] - 21926 +2026-02-23 06:49:05 [CRITICAL] - 5155 +2026-02-23 06:49:05 [CRITICAL] - 4656 +2026-02-23 06:49:05 [INFO] - 11057 +2026-02-23 06:49:05 [ERROR] Invalid input - 26936 +2026-02-23 06:49:05 [CRITICAL] - 21214 +2026-02-23 06:49:05 [DEBUG] - 16337 +2026-02-23 06:49:05 [ERROR] Invalid input - 12788 +2026-02-23 06:49:05 [INFO] - 29855 +2026-02-23 06:49:05 [CRITICAL] - 24081 +2026-02-23 06:49:05 [CRITICAL] - 1664 +2026-02-23 06:49:05 [CRITICAL] - 22974 +2026-02-23 06:49:05 [ERROR] Invalid input - 20214 +2026-02-23 06:49:05 [WARNING] - 6166 +2026-02-23 06:49:05 [CRITICAL] - 14871 +2026-02-23 06:49:05 [DEBUG] - 2076 +2026-02-23 06:49:05 [CRITICAL] - 31827 +2026-02-23 06:49:05 [WARNING] - 20344 +2026-02-23 06:49:05 [CRITICAL] - 12788 +2026-02-23 06:49:05 [INFO] - 11813 +2026-02-23 06:49:05 [WARNING] - 25761 +2026-02-23 06:49:05 [ERROR] Failed to connect - 14681 +2026-02-23 06:49:05 [WARNING] - 27451 +2026-02-23 06:49:05 [WARNING] - 19754 +2026-02-23 06:49:05 [CRITICAL] - 29211 +2026-02-23 06:49:05 [ERROR] Invalid input - 21014 +2026-02-23 06:49:05 [INFO] - 24561 +2026-02-23 06:49:05 [ERROR] Out of memory - 17138 +2026-02-23 06:49:05 [INFO] - 31205 +2026-02-23 06:49:05 [WARNING] - 7536 +2026-02-23 06:49:05 [DEBUG] - 27231 +2026-02-23 06:49:05 [INFO] - 31141 +2026-02-23 06:49:05 [ERROR] Segmentation fault - 24303 +2026-02-23 06:49:05 [WARNING] - 17481 +2026-02-23 06:49:05 [DEBUG] - 433 +2026-02-23 06:49:05 [ERROR] Out of memory - 5072 +2026-02-23 06:49:05 [WARNING] - 9045 +2026-02-23 06:49:05 [ERROR] Invalid input - 18388 +2026-02-23 06:49:05 [INFO] - 24101 +2026-02-23 06:49:05 [CRITICAL] - 17753 +2026-02-23 06:49:05 [DEBUG] - 22781 +2026-02-23 06:49:05 [ERROR] Invalid input - 25639 +2026-02-23 06:49:05 [CRITICAL] - 722 +2026-02-23 06:49:05 [ERROR] Failed to connect - 24908 +2026-02-23 06:49:05 [CRITICAL] - 9675 +2026-02-23 06:49:05 [WARNING] - 14504 +2026-02-23 06:49:05 [WARNING] - 4683 +2026-02-23 06:49:05 [DEBUG] - 968 +2026-02-23 06:49:05 [INFO] - 16287 +2026-02-23 06:49:05 [INFO] - 20582 +2026-02-23 06:49:05 [CRITICAL] - 28689 +2026-02-23 06:49:05 [DEBUG] - 22869 +2026-02-23 06:49:05 [ERROR] Out of memory - 18969 +2026-02-23 06:49:05 [DEBUG] - 4522 +2026-02-23 06:49:05 [ERROR] Invalid input - 1056 +2026-02-23 06:49:05 [DEBUG] - 12198 +2026-02-23 06:49:05 [ERROR] Disk full - 4810 +2026-02-23 06:49:05 [WARNING] - 2303 +2026-02-23 06:49:05 [WARNING] - 19359 +2026-02-23 06:49:05 [ERROR] Segmentation fault - 3761 +2026-02-23 06:49:05 [INFO] - 30469 +2026-02-23 06:49:05 [WARNING] - 12140 +2026-02-23 06:49:05 [ERROR] Disk full - 15540 +2026-02-23 06:49:05 [WARNING] - 3278 +2026-02-23 06:49:05 [CRITICAL] - 5699 +2026-02-23 06:49:05 [WARNING] - 8408 +2026-02-23 06:49:05 [INFO] - 27686 +2026-02-23 06:49:05 [DEBUG] - 25725 +2026-02-23 06:49:05 [DEBUG] - 12995 +2026-02-23 06:49:05 [ERROR] Out of memory - 25760 +2026-02-23 06:49:05 [DEBUG] - 22103 +2026-02-23 06:49:05 [DEBUG] - 4735 +2026-02-23 06:49:05 [DEBUG] - 8124 +2026-02-23 06:49:05 [WARNING] - 9487 +2026-02-23 06:49:05 [ERROR] Disk full - 15069 +2026-02-23 06:49:05 [INFO] - 23601 +2026-02-23 06:49:05 [DEBUG] - 23692 +2026-02-23 06:49:05 [CRITICAL] - 9697 +2026-02-23 06:49:05 [INFO] - 22985 +2026-02-23 06:49:05 [WARNING] - 354 +2026-02-23 06:49:05 [CRITICAL] - 23718 +2026-02-23 06:49:05 [WARNING] - 10556 +2026-02-23 06:49:05 [WARNING] - 9127 +2026-02-23 06:49:05 [INFO] - 83 +2026-02-23 06:49:05 [ERROR] Invalid input - 17914 +2026-02-23 06:49:05 [ERROR] Disk full - 25465 +2026-02-23 06:49:05 [CRITICAL] - 11026 +2026-02-23 06:49:05 [ERROR] Invalid input - 4310 +2026-02-23 06:49:05 [INFO] - 2315 +2026-02-23 06:49:05 [DEBUG] - 3711 +2026-02-23 06:49:05 [DEBUG] - 20183 +2026-02-23 06:49:05 [INFO] - 8805 +2026-02-23 06:49:05 [CRITICAL] - 32276 +2026-02-23 06:49:05 [INFO] - 6605 +2026-02-23 06:49:05 [WARNING] - 6378 +2026-02-23 06:49:05 [ERROR] Disk full - 13923 +2026-02-23 06:49:05 [CRITICAL] - 13317 +2026-02-23 06:49:05 [INFO] - 711 +2026-02-23 06:49:05 [ERROR] Disk full - 3245 +2026-02-23 06:49:05 [DEBUG] - 12366 +2026-02-23 06:49:05 [ERROR] Out of memory - 4606 +2026-02-23 06:49:05 [DEBUG] - 6154 +2026-02-23 06:49:05 [DEBUG] - 20077 +2026-02-23 06:49:05 [CRITICAL] - 15564 +2026-02-23 06:49:05 [ERROR] Disk full - 27763 +2026-02-23 06:49:05 [INFO] - 19070 +2026-02-23 06:49:05 [WARNING] - 15930 +2026-02-23 06:49:05 [ERROR] Segmentation fault - 9768 +2026-02-23 06:49:05 [WARNING] - 14639 +2026-02-23 06:49:05 [DEBUG] - 14061 +2026-02-23 06:49:05 [ERROR] Segmentation fault - 23069 +2026-02-23 06:49:05 [WARNING] - 15973 +2026-02-23 06:49:05 [DEBUG] - 27985 +2026-02-23 06:49:05 [INFO] - 30031 +2026-02-23 06:49:05 [WARNING] - 15792 +2026-02-23 06:49:05 [DEBUG] - 21297 +2026-02-23 06:49:05 [WARNING] - 9686 +2026-02-23 06:49:05 [ERROR] Segmentation fault - 7256 +2026-02-23 06:49:05 [DEBUG] - 7310 +2026-02-23 06:49:05 [CRITICAL] - 18570 +2026-02-23 06:49:05 [DEBUG] - 6853 +2026-02-23 06:49:05 [DEBUG] - 30042 +2026-02-23 06:49:05 [CRITICAL] - 9441 +2026-02-23 06:49:05 [CRITICAL] - 6558 +2026-02-23 06:49:05 [ERROR] Out of memory - 10755 +2026-02-23 06:49:05 [ERROR] Segmentation fault - 2567 +2026-02-23 06:49:05 [CRITICAL] - 15479 +2026-02-23 06:49:05 [ERROR] Out of memory - 4031 +2026-02-23 06:49:05 [ERROR] Disk full - 24583 +2026-02-23 06:49:05 [DEBUG] - 8355 +2026-02-23 06:49:05 [ERROR] Invalid input - 10079 +2026-02-23 06:49:05 [WARNING] - 4204 +2026-02-23 06:49:05 [DEBUG] - 133 +2026-02-23 06:49:05 [ERROR] Failed to connect - 25242 +2026-02-23 06:49:05 [INFO] - 14923 +2026-02-23 06:49:05 [CRITICAL] - 11695 +2026-02-23 06:49:05 [DEBUG] - 27251 +2026-02-23 06:49:05 [ERROR] Segmentation fault - 26186 +2026-02-23 06:49:05 [WARNING] - 13674 +2026-02-23 06:49:05 [INFO] - 1053 +2026-02-23 06:49:05 [WARNING] - 17064 +2026-02-23 06:49:05 [INFO] - 19260 +2026-02-23 06:49:05 [ERROR] Out of memory - 26764 +2026-02-23 06:49:05 [DEBUG] - 23017 +2026-02-23 06:49:05 [ERROR] Invalid input - 10271 +2026-02-23 06:49:05 [ERROR] Disk full - 21461 +2026-02-23 06:49:05 [CRITICAL] - 83 +2026-02-23 06:49:05 [INFO] - 25651 +2026-02-23 06:49:05 [INFO] - 18369 +2026-02-23 06:49:05 [DEBUG] - 25165 +2026-02-23 06:49:05 [WARNING] - 4132 +2026-02-23 06:49:05 [INFO] - 11255 +2026-02-23 06:49:05 [DEBUG] - 11332 +2026-02-23 06:49:05 [CRITICAL] - 21525 +2026-02-23 06:49:05 [WARNING] - 19130 +2026-02-23 06:49:05 [DEBUG] - 12912 +2026-02-23 06:49:05 [INFO] - 25403 +2026-02-23 06:49:05 [INFO] - 25938 +2026-02-23 06:49:05 [WARNING] - 19238 +2026-02-23 06:49:05 [ERROR] Segmentation fault - 9890 +2026-02-23 06:49:05 [WARNING] - 1837 +2026-02-23 06:49:05 [CRITICAL] - 6282 +2026-02-23 06:49:05 [ERROR] Out of memory - 9277 +2026-02-23 06:49:05 [CRITICAL] - 10609 +2026-02-23 06:49:05 [WARNING] - 19168 +2026-02-23 06:49:05 [INFO] - 11795 +2026-02-23 06:49:05 [WARNING] - 829 +2026-02-23 06:49:05 [DEBUG] - 1560 +2026-02-23 06:49:05 [INFO] - 11647 +2026-02-23 06:49:05 [ERROR] Failed to connect - 16441 +2026-02-23 06:49:05 [CRITICAL] - 32222 +2026-02-23 06:49:05 [INFO] - 1166 +2026-02-23 06:49:05 [WARNING] - 8917 +2026-02-23 06:49:05 [DEBUG] - 19700 +2026-02-23 06:49:05 [DEBUG] - 1104 +2026-02-23 06:49:05 [WARNING] - 12673 +2026-02-23 06:49:05 [INFO] - 11378 +2026-02-23 06:49:05 [DEBUG] - 26769 +2026-02-23 06:49:05 [WARNING] - 13151 +2026-02-23 06:49:05 [WARNING] - 10881 +2026-02-23 06:49:05 [DEBUG] - 20570 +2026-02-23 06:49:05 [DEBUG] - 26269 +2026-02-23 06:49:05 [WARNING] - 15985 +2026-02-23 06:49:05 [INFO] - 8971 +2026-02-23 06:49:05 [WARNING] - 2019 +2026-02-23 06:49:05 [DEBUG] - 3960 +2026-02-23 06:49:05 [INFO] - 16288 +2026-02-23 06:49:05 [ERROR] Segmentation fault - 11515 +2026-02-23 06:49:05 [WARNING] - 29360 +2026-02-23 06:49:05 [WARNING] - 9225 +2026-02-23 06:49:05 [DEBUG] - 3949 +2026-02-23 06:49:05 [CRITICAL] - 10671 +2026-02-23 06:49:05 [DEBUG] - 24687 +2026-02-23 06:49:05 [DEBUG] - 20789 +2026-02-23 06:49:05 [INFO] - 21496 +2026-02-23 06:49:05 [WARNING] - 8480 +2026-02-23 06:49:05 [CRITICAL] - 24032 +2026-02-23 06:49:05 [CRITICAL] - 3714 +2026-02-23 06:49:05 [CRITICAL] - 8449 +2026-02-23 06:49:05 [DEBUG] - 14401 +2026-02-23 06:49:05 [DEBUG] - 16916 +2026-02-23 06:49:05 [ERROR] Invalid input - 29109 +2026-02-23 06:49:05 [CRITICAL] - 29923 +2026-02-23 06:49:05 [CRITICAL] - 18540 +2026-02-23 06:49:05 [CRITICAL] - 32307 +2026-02-23 06:49:05 [WARNING] - 10762 +2026-02-23 06:49:05 [ERROR] Segmentation fault - 21967 +2026-02-23 06:49:05 [ERROR] Invalid input - 22173 +2026-02-23 06:49:05 [INFO] - 7022 +2026-02-23 06:49:05 [CRITICAL] - 16213 +2026-02-23 06:49:05 [DEBUG] - 6911 +2026-02-23 06:49:05 [DEBUG] - 9986 +2026-02-23 06:49:05 [INFO] - 21492 +2026-02-23 06:49:05 [INFO] - 28603 +2026-02-23 06:49:05 [INFO] - 187 +2026-02-23 06:49:05 [DEBUG] - 22089 +2026-02-23 06:49:05 [ERROR] Invalid input - 4103 +2026-02-23 06:49:05 [INFO] - 23042 +2026-02-23 06:49:05 [DEBUG] - 25679 +2026-02-23 06:49:05 [WARNING] - 11346 +2026-02-23 06:49:05 [CRITICAL] - 32057 +2026-02-23 06:49:05 [WARNING] - 27871 +2026-02-23 06:49:05 [ERROR] Segmentation fault - 22120 +2026-02-23 06:49:05 [INFO] - 9050 +2026-02-23 06:49:05 [DEBUG] - 8273 +2026-02-23 06:49:05 [CRITICAL] - 13417 +2026-02-23 06:49:05 [INFO] - 16882 +2026-02-23 06:49:05 [WARNING] - 11733 +2026-02-23 06:49:05 [CRITICAL] - 24314 +2026-02-23 06:49:05 [DEBUG] - 25343 +2026-02-23 06:49:05 [INFO] - 26653 +2026-02-23 06:49:05 [ERROR] Out of memory - 668 +2026-02-23 06:49:05 [ERROR] Out of memory - 12446 +2026-02-23 06:49:05 [WARNING] - 2300 +2026-02-23 06:49:05 [WARNING] - 9392 +2026-02-23 06:49:05 [CRITICAL] - 30766 +2026-02-23 06:49:05 [DEBUG] - 4256 +2026-02-23 06:49:05 [ERROR] Disk full - 22100 +2026-02-23 06:49:05 [ERROR] Segmentation fault - 28062 +2026-02-23 06:49:05 [DEBUG] - 1334 +2026-02-23 06:49:05 [DEBUG] - 2995 +2026-02-23 06:49:05 [DEBUG] - 5116 +2026-02-23 06:49:05 [WARNING] - 2174 +2026-02-23 06:49:05 [DEBUG] - 23284 +2026-02-23 06:49:05 [INFO] - 8429 +2026-02-23 06:49:05 [ERROR] Disk full - 10170 +2026-02-23 06:49:05 [CRITICAL] - 7593 +2026-02-23 06:49:05 [ERROR] Segmentation fault - 7992 +2026-02-23 06:49:05 [WARNING] - 32288 +2026-02-23 06:49:05 [DEBUG] - 31096 +2026-02-23 06:49:05 [INFO] - 16673 +2026-02-23 06:49:05 [DEBUG] - 11797 +2026-02-23 06:49:05 [ERROR] Failed to connect - 16693 +2026-02-23 06:49:05 [CRITICAL] - 8619 +2026-02-23 06:49:05 [INFO] - 29980 +2026-02-23 06:49:05 [ERROR] Disk full - 22694 +2026-02-23 06:49:05 [ERROR] Out of memory - 25766 +2026-02-23 06:49:05 [INFO] - 15326 +2026-02-23 06:49:05 [WARNING] - 14312 +2026-02-23 06:49:05 [ERROR] Disk full - 27290 +2026-02-23 06:49:05 [ERROR] Invalid input - 8453 +2026-02-23 06:49:05 [WARNING] - 28637 +2026-02-23 06:49:05 [INFO] - 29441 +2026-02-23 06:49:05 [WARNING] - 21039 +2026-02-23 06:49:05 [DEBUG] - 7121 +2026-02-23 06:49:05 [CRITICAL] - 26002 +2026-02-23 06:49:05 [CRITICAL] - 17909 +2026-02-23 06:49:05 [INFO] - 30195 +2026-02-23 06:49:05 [WARNING] - 14816 +2026-02-23 06:49:05 [WARNING] - 31378 +2026-02-23 06:49:05 [ERROR] Out of memory - 7490 +2026-02-23 06:49:05 [CRITICAL] - 2505 +2026-02-23 06:49:05 [WARNING] - 22203 +2026-02-23 06:49:05 [CRITICAL] - 12547 +2026-02-23 06:49:05 [DEBUG] - 20176 +2026-02-23 06:49:05 [INFO] - 12222 +2026-02-23 06:49:05 [CRITICAL] - 5053 +2026-02-23 06:49:05 [INFO] - 30002 +2026-02-23 06:49:05 [ERROR] Failed to connect - 24991 +2026-02-23 06:49:05 [DEBUG] - 28033 +2026-02-23 06:49:05 [INFO] - 1624 +2026-02-23 06:49:05 [ERROR] Out of memory - 12655 +2026-02-23 06:49:05 [CRITICAL] - 31673 +2026-02-23 06:49:05 [WARNING] - 5692 +2026-02-23 06:49:05 [INFO] - 3913 +2026-02-23 06:49:05 [CRITICAL] - 10927 +2026-02-23 06:49:05 [DEBUG] - 16344 +2026-02-23 06:49:05 [CRITICAL] - 20521 +2026-02-23 06:49:05 [DEBUG] - 16746 +2026-02-23 06:49:05 [DEBUG] - 8140 +2026-02-23 06:49:05 [ERROR] Segmentation fault - 31530 +2026-02-23 06:49:05 [DEBUG] - 18458 +2026-02-23 06:49:05 [WARNING] - 11657 +2026-02-23 06:49:05 [INFO] - 11219 +2026-02-23 06:49:05 [WARNING] - 16763 +2026-02-23 06:49:05 [WARNING] - 14760 +2026-02-23 06:49:05 [WARNING] - 32707 +2026-02-23 06:49:05 [INFO] - 18878 +2026-02-23 06:49:05 [WARNING] - 27562 +2026-02-23 06:49:05 [DEBUG] - 22820 +2026-02-23 06:49:05 [CRITICAL] - 1628 +2026-02-23 06:49:05 [CRITICAL] - 17508 +2026-02-23 06:49:05 [DEBUG] - 7949 +2026-02-23 06:49:05 [WARNING] - 14156 +2026-02-23 06:49:05 [WARNING] - 10273 +2026-02-23 06:49:05 [ERROR] Failed to connect - 21847 +2026-02-23 06:49:05 [DEBUG] - 13713 +2026-02-23 06:49:05 [DEBUG] - 2915 +2026-02-23 06:49:05 [CRITICAL] - 28989 +2026-02-23 06:49:05 [ERROR] Segmentation fault - 30030 +2026-02-23 06:49:05 [INFO] - 13954 +2026-02-23 06:49:05 [INFO] - 9944 +2026-02-23 06:49:05 [INFO] - 17041 +2026-02-23 06:49:05 [WARNING] - 24170 +2026-02-23 06:49:05 [CRITICAL] - 7534 +2026-02-23 06:49:05 [INFO] - 12227 +2026-02-23 06:49:05 [DEBUG] - 25500 +2026-02-23 06:49:05 [INFO] - 31192 +2026-02-23 06:49:05 [CRITICAL] - 6656 +2026-02-23 06:49:05 [WARNING] - 20177 +2026-02-23 06:49:05 [WARNING] - 4029 +2026-02-23 06:49:05 [WARNING] - 16393 +2026-02-23 06:49:05 [ERROR] Disk full - 15018 +2026-02-23 06:49:05 [CRITICAL] - 25643 +2026-02-23 06:49:05 [CRITICAL] - 28588 +2026-02-23 06:49:05 [INFO] - 17822 +2026-02-23 06:49:05 [ERROR] Out of memory - 24836 +2026-02-23 06:49:05 [DEBUG] - 2071 +2026-02-23 06:49:05 [WARNING] - 25419 +2026-02-23 06:49:05 [INFO] - 17825 +2026-02-23 06:49:05 [ERROR] Segmentation fault - 2927 +2026-02-23 06:49:05 [ERROR] Invalid input - 13742 +2026-02-23 06:49:05 [ERROR] Disk full - 20206 +2026-02-23 06:49:05 [DEBUG] - 18498 +2026-02-23 06:49:05 [CRITICAL] - 25123 +2026-02-23 06:49:05 [ERROR] Out of memory - 8518 +2026-02-23 06:49:05 [WARNING] - 8041 +2026-02-23 06:49:05 [ERROR] Failed to connect - 1975 +2026-02-23 06:49:05 [INFO] - 8228 +2026-02-23 06:49:05 [CRITICAL] - 32276 +2026-02-23 06:49:05 [ERROR] Segmentation fault - 27241 +2026-02-23 06:49:05 [ERROR] Out of memory - 14344 +2026-02-23 06:49:05 [DEBUG] - 24374 +2026-02-23 06:49:05 [ERROR] Failed to connect - 20483 +2026-02-23 06:49:05 [CRITICAL] - 22385 +2026-02-23 06:49:05 [DEBUG] - 3991 +2026-02-23 06:49:05 [ERROR] Disk full - 5587 +2026-02-23 06:49:05 [DEBUG] - 31569 +2026-02-23 06:49:05 [DEBUG] - 45 +2026-02-23 06:49:05 [CRITICAL] - 1293 +2026-02-23 06:49:05 [CRITICAL] - 30316 +2026-02-23 06:49:05 [WARNING] - 19875 +2026-02-23 06:49:05 [WARNING] - 811 +2026-02-23 06:49:05 [WARNING] - 8809 +2026-02-23 06:49:05 [DEBUG] - 26236 +2026-02-23 06:49:05 [CRITICAL] - 15028 +2026-02-23 06:49:05 [WARNING] - 1879 +2026-02-23 06:49:05 [ERROR] Segmentation fault - 11878 +2026-02-23 06:49:05 [CRITICAL] - 10123 +2026-02-23 06:49:05 [ERROR] Invalid input - 11025 +2026-02-23 06:49:05 [ERROR] Segmentation fault - 1762 +2026-02-23 06:49:05 [INFO] - 2213 +2026-02-23 06:49:05 [ERROR] Disk full - 19670 +2026-02-23 06:49:05 [DEBUG] - 12461 +2026-02-23 06:49:05 [DEBUG] - 28229 +2026-02-23 06:49:05 [INFO] - 30798 +2026-02-23 06:49:05 [ERROR] Disk full - 1817 +2026-02-23 06:49:05 [WARNING] - 3914 +2026-02-23 06:49:05 [CRITICAL] - 17816 +2026-02-23 06:49:05 [INFO] - 31566 +2026-02-23 06:49:05 [CRITICAL] - 2686 +2026-02-23 06:49:05 [INFO] - 15476 +2026-02-23 06:49:05 [DEBUG] - 20726 +2026-02-23 06:49:05 [WARNING] - 4821 +2026-02-23 06:49:05 [WARNING] - 6852 +2026-02-23 06:49:05 [INFO] - 25574 +2026-02-23 06:49:05 [DEBUG] - 28711 +2026-02-23 06:49:05 [WARNING] - 29637 +2026-02-23 06:49:05 [DEBUG] - 27020 +2026-02-23 06:49:05 [ERROR] Segmentation fault - 18136 +2026-02-23 06:49:05 [CRITICAL] - 21773 +2026-02-23 06:49:05 [DEBUG] - 23980 +2026-02-23 06:49:05 [DEBUG] - 20 +2026-02-23 06:49:05 [WARNING] - 1521 +2026-02-23 06:49:05 [ERROR] Failed to connect - 22308 +2026-02-23 06:49:05 [CRITICAL] - 26166 +2026-02-23 06:49:05 [INFO] - 10599 +2026-02-23 06:49:05 [WARNING] - 19866 +2026-02-23 06:49:05 [WARNING] - 5561 +2026-02-23 06:49:05 [INFO] - 16954 +2026-02-23 06:49:05 [WARNING] - 17384 +2026-02-23 06:49:05 [WARNING] - 13196 +2026-02-23 06:49:05 [ERROR] Out of memory - 2061 +2026-02-23 06:49:05 [INFO] - 7300 +2026-02-23 06:49:05 [CRITICAL] - 20526 +2026-02-23 06:49:05 [ERROR] Disk full - 29150 +2026-02-23 06:49:05 [CRITICAL] - 26934 +2026-02-23 06:49:05 [INFO] - 11673 +2026-02-23 06:49:05 [INFO] - 669 +2026-02-23 06:49:05 [ERROR] Failed to connect - 27230 +2026-02-23 06:49:05 [DEBUG] - 8460 +2026-02-23 06:49:05 [ERROR] Disk full - 9104 +2026-02-23 06:49:05 [DEBUG] - 29101 +2026-02-23 06:49:05 [ERROR] Disk full - 17200 +2026-02-23 06:49:05 [CRITICAL] - 4717 +2026-02-23 06:49:05 [INFO] - 25889 +2026-02-23 06:49:05 [WARNING] - 5121 +2026-02-23 06:49:05 [WARNING] - 17043 +2026-02-23 06:49:05 [ERROR] Failed to connect - 4501 +2026-02-23 06:49:05 [DEBUG] - 2558 +2026-02-23 06:49:05 [CRITICAL] - 17140 +2026-02-23 06:49:05 [INFO] - 20786 +2026-02-23 06:49:05 [INFO] - 6595 +2026-02-23 06:49:05 [DEBUG] - 15221 +2026-02-23 06:49:05 [ERROR] Segmentation fault - 7169 +2026-02-23 06:49:05 [CRITICAL] - 31929 +2026-02-23 06:49:05 [ERROR] Failed to connect - 17756 +2026-02-23 06:49:05 [INFO] - 16215 +2026-02-23 06:49:05 [INFO] - 30731 +2026-02-23 06:49:05 [INFO] - 28148 +2026-02-23 06:49:05 [INFO] - 22817 +2026-02-23 06:49:05 [WARNING] - 21591 +2026-02-23 06:49:05 [CRITICAL] - 10528 +2026-02-23 06:49:05 [DEBUG] - 31924 +2026-02-23 06:49:05 [INFO] - 25320 +2026-02-23 06:49:05 [CRITICAL] - 17954 +2026-02-23 06:49:05 [WARNING] - 8015 +2026-02-23 06:49:05 [ERROR] Disk full - 30081 +2026-02-23 06:49:05 [INFO] - 25915 +2026-02-23 06:49:05 [WARNING] - 1488 +2026-02-23 06:49:05 [ERROR] Segmentation fault - 20391 +2026-02-23 06:49:05 [INFO] - 8326 +2026-02-23 06:49:05 [WARNING] - 20873 +2026-02-23 06:49:05 [DEBUG] - 19119 +2026-02-23 06:49:05 [CRITICAL] - 20723 +2026-02-23 06:49:05 [CRITICAL] - 31780 +2026-02-23 06:49:05 [ERROR] Failed to connect - 8211 +2026-02-23 06:49:05 [CRITICAL] - 23214 +2026-02-23 06:49:05 [WARNING] - 5040 +2026-02-23 06:49:05 [WARNING] - 28551 +2026-02-23 06:49:05 [INFO] - 19761 +2026-02-23 06:49:05 [ERROR] Segmentation fault - 31215 +2026-02-23 06:49:05 [WARNING] - 2613 +2026-02-23 06:49:05 [ERROR] Out of memory - 22909 +2026-02-23 06:49:05 [CRITICAL] - 25900 +2026-02-23 06:49:05 [ERROR] Segmentation fault - 9462 +2026-02-23 06:49:05 [WARNING] - 19908 +2026-02-23 06:49:05 [ERROR] Disk full - 5273 +2026-02-23 06:49:05 [INFO] - 7954 +2026-02-23 06:49:05 [INFO] - 5597 +2026-02-23 06:49:05 [CRITICAL] - 9889 +2026-02-23 06:49:05 [WARNING] - 12955 +2026-02-23 06:49:05 [DEBUG] - 14755 +2026-02-23 06:49:05 [DEBUG] - 3715 +2026-02-23 06:49:05 [ERROR] Disk full - 31638 +2026-02-23 06:49:05 [DEBUG] - 17673 +2026-02-23 06:49:05 [WARNING] - 32749 +2026-02-23 06:49:05 [INFO] - 27830 +2026-02-23 06:49:05 [INFO] - 31810 +2026-02-23 06:49:05 [WARNING] - 14545 +2026-02-23 06:49:05 [CRITICAL] - 5740 +2026-02-23 06:49:05 [INFO] - 22969 +2026-02-23 06:49:05 [ERROR] Segmentation fault - 1299 +2026-02-23 06:49:05 [ERROR] Disk full - 19397 +2026-02-23 06:49:05 [ERROR] Segmentation fault - 28741 +2026-02-23 06:49:05 [CRITICAL] - 15263 +2026-02-23 06:49:05 [DEBUG] - 25381 +2026-02-23 06:49:05 [INFO] - 23135 +2026-02-23 06:49:05 [DEBUG] - 6574 +2026-02-23 06:49:05 [DEBUG] - 30380 +2026-02-23 06:49:05 [CRITICAL] - 5509 +2026-02-23 06:49:05 [INFO] - 7942 +2026-02-23 06:49:05 [INFO] - 30257 +2026-02-23 06:49:05 [WARNING] - 10241 +2026-02-23 06:49:05 [DEBUG] - 18945 +2026-02-23 06:49:05 [ERROR] Disk full - 7216 +2026-02-23 06:49:05 [WARNING] - 17379 +2026-02-23 06:49:05 [CRITICAL] - 18344 +2026-02-23 06:49:05 [ERROR] Segmentation fault - 9673 +2026-02-23 06:49:05 [CRITICAL] - 30614 +2026-02-23 06:49:05 [WARNING] - 11574 +2026-02-23 06:49:05 [INFO] - 5810 +2026-02-23 06:49:05 [CRITICAL] - 16517 +2026-02-23 06:49:05 [INFO] - 12872 +2026-02-23 06:49:05 [INFO] - 5493 +2026-02-23 06:49:05 [INFO] - 8614 +2026-02-23 06:49:05 [CRITICAL] - 5337 +2026-02-23 06:49:05 [CRITICAL] - 1428 +2026-02-23 06:49:05 [CRITICAL] - 28071 +2026-02-23 06:49:05 [CRITICAL] - 22594 +2026-02-23 06:49:05 [DEBUG] - 3448 +2026-02-23 06:49:05 [INFO] - 14910 +2026-02-23 06:49:05 [CRITICAL] - 29142 +2026-02-23 06:49:05 [ERROR] Out of memory - 31631 +2026-02-23 06:49:05 [ERROR] Failed to connect - 12016 +2026-02-23 06:49:05 [ERROR] Disk full - 14105 +2026-02-23 06:49:05 [ERROR] Failed to connect - 3264 +2026-02-23 06:49:05 [WARNING] - 19304 +2026-02-23 06:49:05 [ERROR] Out of memory - 29554 +2026-02-23 06:49:05 [DEBUG] - 7850 +2026-02-23 06:49:05 [CRITICAL] - 15053 +2026-02-23 06:49:05 [ERROR] Invalid input - 15314 +2026-02-23 06:49:05 [ERROR] Failed to connect - 31200 +2026-02-23 06:49:05 [DEBUG] - 22416 +2026-02-23 06:49:05 [WARNING] - 447 +2026-02-23 06:49:05 [CRITICAL] - 293 +2026-02-23 06:49:05 [ERROR] Segmentation fault - 3283 +2026-02-23 06:49:05 [CRITICAL] - 21495 +2026-02-23 06:49:05 [DEBUG] - 4803 +2026-02-23 06:49:05 [WARNING] - 513 +2026-02-23 06:49:05 [ERROR] Segmentation fault - 17743 +2026-02-23 06:49:05 [CRITICAL] - 2828 +2026-02-23 06:49:05 [ERROR] Segmentation fault - 27870 +2026-02-23 06:49:05 [ERROR] Disk full - 32085 +2026-02-23 06:49:05 [ERROR] Invalid input - 18432 +2026-02-23 06:49:05 [DEBUG] - 32010 +2026-02-23 06:49:05 [DEBUG] - 12179 +2026-02-23 06:49:05 [INFO] - 10905 +2026-02-23 06:49:05 [ERROR] Out of memory - 2114 +2026-02-23 06:49:05 [DEBUG] - 29687 +2026-02-23 06:49:05 [INFO] - 19068 +2026-02-23 06:49:05 [DEBUG] - 14921 +2026-02-23 06:49:05 [DEBUG] - 5803 +2026-02-23 06:49:05 [ERROR] Invalid input - 5921 +2026-02-23 06:49:05 [INFO] - 21445 +2026-02-23 06:49:05 [ERROR] Disk full - 3418 +2026-02-23 06:49:05 [DEBUG] - 17514 +2026-02-23 06:49:05 [ERROR] Invalid input - 5782 +2026-02-23 06:49:05 [INFO] - 5309 +2026-02-23 06:49:05 [ERROR] Invalid input - 18010 +2026-02-23 06:49:05 [DEBUG] - 4233 +2026-02-23 06:49:05 [DEBUG] - 10184 +2026-02-23 06:49:05 [ERROR] Invalid input - 17055 +2026-02-23 06:49:05 [ERROR] Failed to connect - 25188 +2026-02-23 06:49:05 [DEBUG] - 15812 +2026-02-23 06:49:05 [DEBUG] - 19649 +2026-02-23 06:49:05 [DEBUG] - 26797 +2026-02-23 06:49:05 [CRITICAL] - 7991 +2026-02-23 06:49:05 [ERROR] Segmentation fault - 20436 +2026-02-23 06:49:05 [ERROR] Segmentation fault - 20530 +2026-02-23 06:49:05 [INFO] - 16922 +2026-02-23 06:49:05 [ERROR] Invalid input - 30540 +2026-02-23 06:49:05 [WARNING] - 29543 +2026-02-23 06:49:05 [DEBUG] - 27262 +2026-02-23 06:49:05 [INFO] - 19804 +2026-02-23 06:49:05 [INFO] - 19076 +2026-02-23 06:49:05 [CRITICAL] - 11459 +2026-02-23 06:49:05 [CRITICAL] - 6750 +2026-02-23 06:49:05 [ERROR] Out of memory - 12739 +2026-02-23 06:49:05 [ERROR] Failed to connect - 19593 +2026-02-23 06:49:05 [DEBUG] - 3561 +2026-02-23 06:49:05 [ERROR] Failed to connect - 23725 +2026-02-23 06:49:05 [WARNING] - 29166 +2026-02-23 06:49:05 [DEBUG] - 21691 +2026-02-23 06:49:05 [WARNING] - 23712 +2026-02-23 06:49:05 [WARNING] - 17630 +2026-02-23 06:49:05 [WARNING] - 2152 +2026-02-23 06:49:05 [CRITICAL] - 16018 +2026-02-23 06:49:05 [DEBUG] - 23587 +2026-02-23 06:49:05 [CRITICAL] - 4270 +2026-02-23 06:49:05 [WARNING] - 22409 +2026-02-23 06:49:05 [INFO] - 24591 +2026-02-23 06:49:05 [CRITICAL] - 9332 +2026-02-23 06:49:05 [DEBUG] - 16135 +2026-02-23 06:49:05 [WARNING] - 25472 +2026-02-23 06:49:05 [DEBUG] - 16024 +2026-02-23 06:49:05 [ERROR] Segmentation fault - 23155 +2026-02-23 06:49:05 [WARNING] - 5718 +2026-02-23 06:49:05 [INFO] - 2059 +2026-02-23 06:49:05 [INFO] - 16412 +2026-02-23 06:49:05 [DEBUG] - 31272 +2026-02-23 06:49:05 [WARNING] - 9237 +2026-02-23 06:49:05 [DEBUG] - 24889 +2026-02-23 06:49:05 [INFO] - 6880 +2026-02-23 06:49:05 [ERROR] Disk full - 17501 +2026-02-23 06:49:05 [CRITICAL] - 24315 +2026-02-23 06:49:05 [CRITICAL] - 5926 +2026-02-23 06:49:05 [DEBUG] - 26109 +2026-02-23 06:49:05 [WARNING] - 19343 +2026-02-23 06:49:05 [INFO] - 11957 +2026-02-23 06:49:05 [WARNING] - 10452 +2026-02-23 06:49:06 [WARNING] - 19888 +2026-02-23 06:49:06 [DEBUG] - 18532 +2026-02-23 06:49:06 [WARNING] - 23623 +2026-02-23 06:49:06 [ERROR] Disk full - 26214 +2026-02-23 06:49:06 [INFO] - 21675 +2026-02-23 06:49:06 [ERROR] Failed to connect - 30044 +2026-02-23 06:49:06 [ERROR] Invalid input - 1565 +2026-02-23 06:49:06 [DEBUG] - 32123 +2026-02-23 06:49:06 [DEBUG] - 20175 +2026-02-23 06:49:06 [CRITICAL] - 25390 +2026-02-23 06:49:06 [WARNING] - 16964 +2026-02-23 06:49:06 [ERROR] Failed to connect - 29064 +2026-02-23 06:49:06 [WARNING] - 31515 +2026-02-23 06:49:06 [WARNING] - 29244 +2026-02-23 06:49:06 [DEBUG] - 25305 +2026-02-23 06:49:06 [DEBUG] - 29894 +2026-02-23 06:49:06 [ERROR] Segmentation fault - 28435 +2026-02-23 06:49:06 [ERROR] Segmentation fault - 11267 +2026-02-23 06:49:06 [DEBUG] - 28430 +2026-02-23 06:49:06 [INFO] - 2862 +2026-02-23 06:49:06 [DEBUG] - 3127 +2026-02-23 06:49:06 [WARNING] - 11454 +2026-02-23 06:49:06 [INFO] - 408 +2026-02-23 06:49:06 [CRITICAL] - 22317 +2026-02-23 06:49:06 [CRITICAL] - 5772 +2026-02-23 06:49:06 [ERROR] Failed to connect - 30198 +2026-02-23 06:49:06 [INFO] - 7961 +2026-02-23 06:49:06 [WARNING] - 3735 +2026-02-23 06:49:06 [CRITICAL] - 5561 +2026-02-23 06:49:06 [ERROR] Segmentation fault - 11786 +2026-02-23 06:49:06 [DEBUG] - 9884 +2026-02-23 06:49:06 [DEBUG] - 4455 +2026-02-23 06:49:06 [INFO] - 14336 +2026-02-23 06:49:06 [WARNING] - 28011 +2026-02-23 06:49:06 [CRITICAL] - 32514 +2026-02-23 06:49:06 [INFO] - 19697 +2026-02-23 06:49:06 [DEBUG] - 22667 +2026-02-23 06:49:06 [INFO] - 17282 +2026-02-23 06:49:06 [CRITICAL] - 12545 +2026-02-23 06:49:06 [ERROR] Segmentation fault - 20012 +2026-02-23 06:49:06 [INFO] - 11736 +2026-02-23 06:49:06 [DEBUG] - 18832 +2026-02-23 06:49:06 [INFO] - 26918 +2026-02-23 06:49:06 [WARNING] - 10266 +2026-02-23 06:49:06 [ERROR] Segmentation fault - 2388 +2026-02-23 06:49:06 [DEBUG] - 30963 +2026-02-23 06:49:06 [DEBUG] - 11345 +2026-02-23 06:49:06 [ERROR] Invalid input - 21009 +2026-02-23 06:49:06 [CRITICAL] - 14110 +2026-02-23 06:49:06 [DEBUG] - 30740 +2026-02-23 06:49:06 [INFO] - 18411 +2026-02-23 06:49:06 [WARNING] - 27550 +2026-02-23 06:49:06 [ERROR] Out of memory - 5786 +2026-02-23 06:49:06 [DEBUG] - 2962 +2026-02-23 06:49:06 [DEBUG] - 7166 +2026-02-23 06:49:06 [DEBUG] - 2167 +2026-02-23 06:49:06 [DEBUG] - 8374 +2026-02-23 06:49:06 [DEBUG] - 9307 +2026-02-23 06:49:06 [ERROR] Failed to connect - 15985 +2026-02-23 06:49:06 [DEBUG] - 5666 +2026-02-23 06:49:06 [ERROR] Out of memory - 20732 +2026-02-23 06:49:06 [CRITICAL] - 16355 +2026-02-23 06:49:06 [INFO] - 10757 +2026-02-23 06:49:06 [ERROR] Disk full - 23331 +2026-02-23 06:49:06 [CRITICAL] - 10542 +2026-02-23 06:49:06 [CRITICAL] - 15956 +2026-02-23 06:49:06 [WARNING] - 31510 +2026-02-23 06:49:06 [WARNING] - 7773 +2026-02-23 06:49:06 [WARNING] - 25213 +2026-02-23 06:49:06 [INFO] - 5617 +2026-02-23 06:49:06 [CRITICAL] - 14731 +2026-02-23 06:49:06 [WARNING] - 9777 +2026-02-23 06:49:06 [ERROR] Failed to connect - 23410 +2026-02-23 06:49:06 [ERROR] Segmentation fault - 30372 +2026-02-23 06:49:06 [CRITICAL] - 26873 +2026-02-23 06:49:06 [INFO] - 24937 +2026-02-23 06:49:06 [INFO] - 6159 +2026-02-23 06:49:06 [INFO] - 4081 +2026-02-23 06:49:06 [WARNING] - 9112 +2026-02-23 06:49:06 [CRITICAL] - 10330 +2026-02-23 06:49:06 [INFO] - 8082 +2026-02-23 06:49:06 [ERROR] Out of memory - 7317 +2026-02-23 06:49:06 [CRITICAL] - 17349 +2026-02-23 06:49:06 [WARNING] - 28743 +2026-02-23 06:49:06 [INFO] - 9197 +2026-02-23 06:49:06 [ERROR] Failed to connect - 15500 +2026-02-23 06:49:06 [DEBUG] - 3140 +2026-02-23 06:49:06 [INFO] - 32604 +2026-02-23 06:49:06 [INFO] - 24689 +2026-02-23 06:49:06 [CRITICAL] - 436 +2026-02-23 06:49:06 [ERROR] Disk full - 24577 +2026-02-23 06:49:06 [DEBUG] - 8898 +2026-02-23 06:49:06 [CRITICAL] - 21826 +2026-02-23 06:49:06 [CRITICAL] - 14684 +2026-02-23 06:49:06 [DEBUG] - 14149 +2026-02-23 06:49:06 [ERROR] Failed to connect - 23152 +2026-02-23 06:49:06 [DEBUG] - 31260 +2026-02-23 06:49:06 [CRITICAL] - 26106 +2026-02-23 06:49:06 [CRITICAL] - 14474 +2026-02-23 06:49:06 [DEBUG] - 1626 +2026-02-23 06:49:06 [ERROR] Out of memory - 10703 +2026-02-23 06:49:06 [CRITICAL] - 13209 +2026-02-23 06:49:06 [ERROR] Failed to connect - 7733 +2026-02-23 06:49:06 [WARNING] - 32154 +2026-02-23 06:49:06 [WARNING] - 2607 +2026-02-23 06:49:06 [INFO] - 4429 +2026-02-23 06:49:06 [ERROR] Out of memory - 13846 +2026-02-23 06:49:06 [INFO] - 1675 +2026-02-23 06:49:06 [INFO] - 8827 +2026-02-23 06:49:06 [INFO] - 27753 +2026-02-23 06:49:06 [WARNING] - 24912 +2026-02-23 06:49:06 [DEBUG] - 9231 +2026-02-23 06:49:06 [ERROR] Out of memory - 19286 +2026-02-23 06:49:06 [DEBUG] - 15019 +2026-02-23 06:49:06 [INFO] - 32646 +2026-02-23 06:49:06 [ERROR] Failed to connect - 7495 +2026-02-23 06:49:06 [ERROR] Out of memory - 11804 +2026-02-23 06:49:06 [ERROR] Invalid input - 12881 +2026-02-23 06:49:06 [CRITICAL] - 29702 +2026-02-23 06:49:06 [INFO] - 20848 +2026-02-23 06:49:06 [WARNING] - 14146 +2026-02-23 06:49:06 [WARNING] - 31465 +2026-02-23 06:49:06 [CRITICAL] - 2081 +2026-02-23 06:49:06 [DEBUG] - 166 +2026-02-23 06:49:06 [DEBUG] - 19883 +2026-02-23 06:49:06 [INFO] - 29029 +2026-02-23 06:49:06 [WARNING] - 18493 +2026-02-23 06:49:06 [INFO] - 7610 +2026-02-23 06:49:06 [INFO] - 9945 +2026-02-23 06:49:06 [DEBUG] - 19859 +2026-02-23 06:49:06 [DEBUG] - 11999 +2026-02-23 06:49:06 [ERROR] Failed to connect - 15572 +2026-02-23 06:49:06 [INFO] - 1269 +2026-02-23 06:49:06 [WARNING] - 19890 +2026-02-23 06:49:06 [WARNING] - 3197 +2026-02-23 06:49:06 [ERROR] Segmentation fault - 15864 +2026-02-23 06:49:06 [ERROR] Out of memory - 23898 +2026-02-23 06:49:06 [INFO] - 4071 +2026-02-23 06:49:06 [CRITICAL] - 829 +2026-02-23 06:49:06 [INFO] - 32713 +2026-02-23 06:49:06 [DEBUG] - 24508 +2026-02-23 06:49:06 [INFO] - 22144 +2026-02-23 06:49:06 [CRITICAL] - 20798 +2026-02-23 06:49:06 [DEBUG] - 5404 +2026-02-23 06:49:06 [ERROR] Segmentation fault - 23547 +2026-02-23 06:49:06 [CRITICAL] - 26603 +2026-02-23 06:49:06 [CRITICAL] - 28030 +2026-02-23 06:49:06 [DEBUG] - 6500 +2026-02-23 06:49:06 [WARNING] - 2287 +2026-02-23 06:49:06 [INFO] - 5085 +2026-02-23 06:49:06 [CRITICAL] - 18204 +2026-02-23 06:49:06 [WARNING] - 6130 +2026-02-23 06:49:06 [INFO] - 23138 +2026-02-23 06:49:06 [DEBUG] - 11887 +2026-02-23 06:49:06 [WARNING] - 25398 +2026-02-23 06:49:06 [CRITICAL] - 9508 +2026-02-23 06:49:06 [CRITICAL] - 11950 +2026-02-23 06:49:06 [WARNING] - 21121 +2026-02-23 06:49:06 [ERROR] Segmentation fault - 9678 +2026-02-23 06:49:06 [CRITICAL] - 6472 +2026-02-23 06:49:06 [WARNING] - 10115 +2026-02-23 06:49:06 [CRITICAL] - 19802 +2026-02-23 06:49:06 [ERROR] Invalid input - 24055 +2026-02-23 06:49:06 [WARNING] - 31002 +2026-02-23 06:49:06 [ERROR] Failed to connect - 10521 +2026-02-23 06:49:06 [ERROR] Failed to connect - 3252 +2026-02-23 06:49:06 [WARNING] - 31270 +2026-02-23 06:49:06 [INFO] - 4118 +2026-02-23 06:49:06 [ERROR] Segmentation fault - 25259 +2026-02-23 06:49:06 [DEBUG] - 22839 +2026-02-23 06:49:06 [ERROR] Disk full - 18728 +2026-02-23 06:49:06 [DEBUG] - 25412 +2026-02-23 06:49:06 [WARNING] - 13949 +2026-02-23 06:49:06 [DEBUG] - 22943 +2026-02-23 06:49:06 [WARNING] - 3341 +2026-02-23 06:49:06 [DEBUG] - 15755 +2026-02-23 06:49:06 [DEBUG] - 1236 +2026-02-23 06:49:06 [CRITICAL] - 9377 +2026-02-23 06:49:06 [DEBUG] - 5442 +2026-02-23 06:49:06 [DEBUG] - 23294 +2026-02-23 06:49:06 [CRITICAL] - 4576 +2026-02-23 06:49:06 [CRITICAL] - 9385 +2026-02-23 06:49:06 [CRITICAL] - 1976 +2026-02-23 06:49:06 [CRITICAL] - 1163 +2026-02-23 06:49:06 [INFO] - 1786 +2026-02-23 06:49:06 [INFO] - 11712 +2026-02-23 06:49:06 [ERROR] Disk full - 8363 +2026-02-23 06:49:06 [INFO] - 13311 +2026-02-23 06:49:06 [INFO] - 23695 +2026-02-23 06:49:06 [ERROR] Segmentation fault - 21148 +2026-02-23 06:49:06 [INFO] - 21983 +2026-02-23 06:49:06 [WARNING] - 13485 +2026-02-23 06:49:06 [INFO] - 17611 +2026-02-23 06:49:06 [INFO] - 22724 +2026-02-23 06:49:06 [ERROR] Segmentation fault - 23580 +2026-02-23 06:49:06 [WARNING] - 19121 +2026-02-23 06:49:06 [CRITICAL] - 25966 +2026-02-23 06:49:06 [CRITICAL] - 7657 +2026-02-23 06:49:06 [INFO] - 21657 +2026-02-23 06:49:06 [ERROR] Invalid input - 3587 +2026-02-23 06:49:06 [ERROR] Out of memory - 2973 +2026-02-23 06:49:06 [CRITICAL] - 26875 +2026-02-23 06:49:06 [ERROR] Segmentation fault - 11089 +2026-02-23 06:49:06 [ERROR] Out of memory - 11996 +2026-02-23 06:49:06 [DEBUG] - 28311 +2026-02-23 06:49:06 [CRITICAL] - 13250 +2026-02-23 06:49:06 [INFO] - 16304 +2026-02-23 06:49:06 [CRITICAL] - 3243 +2026-02-23 06:49:06 [INFO] - 8986 +2026-02-23 06:49:06 [CRITICAL] - 8302 +2026-02-23 06:49:06 [DEBUG] - 2263 +2026-02-23 06:49:06 [WARNING] - 31041 +2026-02-23 06:49:06 [INFO] - 17938 +2026-02-23 06:49:06 [ERROR] Segmentation fault - 2693 +2026-02-23 06:49:06 [ERROR] Out of memory - 27746 +2026-02-23 06:49:06 [INFO] - 20640 +2026-02-23 06:49:06 [ERROR] Disk full - 20248 +2026-02-23 06:49:06 [INFO] - 16609 +2026-02-23 06:49:06 [INFO] - 15241 +2026-02-23 06:49:06 [DEBUG] - 16213 +2026-02-23 06:49:06 [CRITICAL] - 18449 +2026-02-23 06:49:06 [INFO] - 8989 +2026-02-23 06:49:06 [INFO] - 31979 +2026-02-23 06:49:06 [ERROR] Disk full - 31934 +2026-02-23 06:49:06 [WARNING] - 20114 +2026-02-23 06:49:06 [ERROR] Invalid input - 24883 +2026-02-23 06:49:06 [ERROR] Out of memory - 21773 +2026-02-23 06:49:06 [CRITICAL] - 13266 +2026-02-23 06:49:06 [WARNING] - 25248 +2026-02-23 06:49:06 [INFO] - 14781 +2026-02-23 06:49:06 [DEBUG] - 16396 +2026-02-23 06:49:06 [WARNING] - 20601 +2026-02-23 06:49:06 [CRITICAL] - 14562 +2026-02-23 06:49:06 [WARNING] - 6188 +2026-02-23 06:49:06 [DEBUG] - 19117 +2026-02-23 06:49:06 [INFO] - 17573 +2026-02-23 06:49:06 [DEBUG] - 2731 +2026-02-23 06:49:06 [CRITICAL] - 11409 +2026-02-23 06:49:06 [DEBUG] - 5853 +2026-02-23 06:49:06 [INFO] - 20717 +2026-02-23 06:49:06 [WARNING] - 14445 +2026-02-23 06:49:06 [INFO] - 31114 +2026-02-23 06:49:06 [DEBUG] - 8414 +2026-02-23 06:49:06 [ERROR] Disk full - 12339 +2026-02-23 06:49:06 [WARNING] - 6340 +2026-02-23 06:49:06 [INFO] - 6659 +2026-02-23 06:49:06 [ERROR] Disk full - 15799 +2026-02-23 06:49:06 [CRITICAL] - 24288 +2026-02-23 06:49:06 [WARNING] - 5187 +2026-02-23 06:49:06 [DEBUG] - 6480 +2026-02-23 06:49:06 [CRITICAL] - 26120 +2026-02-23 06:49:06 [INFO] - 14513 +2026-02-23 06:49:06 [CRITICAL] - 17930 +2026-02-23 06:49:06 [INFO] - 25606 +2026-02-23 06:49:06 [ERROR] Invalid input - 25276 +2026-02-23 06:49:06 [INFO] - 32183 +2026-02-23 06:49:06 [DEBUG] - 4664 +2026-02-23 06:49:06 [CRITICAL] - 14174 +2026-02-23 06:49:06 [ERROR] Invalid input - 5502 +2026-02-23 06:49:06 [DEBUG] - 16277 +2026-02-23 06:49:06 [DEBUG] - 17114 +2026-02-23 06:49:06 [CRITICAL] - 30499 +2026-02-23 06:49:06 [INFO] - 32242 +2026-02-23 06:49:06 [WARNING] - 7849 +2026-02-23 06:49:06 [INFO] - 29624 +2026-02-23 06:49:06 [DEBUG] - 6568 +2026-02-23 06:49:06 [ERROR] Out of memory - 9598 +2026-02-23 06:49:06 [DEBUG] - 13996 +2026-02-23 06:49:06 [ERROR] Disk full - 17894 +2026-02-23 06:49:06 [ERROR] Segmentation fault - 16606 +2026-02-23 06:49:06 [INFO] - 22705 +2026-02-23 06:49:06 [WARNING] - 13764 +2026-02-23 06:49:06 [WARNING] - 19418 +2026-02-23 06:49:06 [DEBUG] - 31147 +2026-02-23 06:49:06 [WARNING] - 5115 +2026-02-23 06:49:06 [WARNING] - 27385 +2026-02-23 06:49:06 [DEBUG] - 27718 +2026-02-23 06:49:06 [DEBUG] - 1461 +2026-02-23 06:49:06 [WARNING] - 3890 +2026-02-23 06:49:06 [ERROR] Disk full - 19739 +2026-02-23 06:49:06 [ERROR] Out of memory - 19753 +2026-02-23 06:49:06 [CRITICAL] - 13461 +2026-02-23 06:49:06 [INFO] - 19902 +2026-02-23 06:49:06 [WARNING] - 7686 +2026-02-23 06:49:06 [WARNING] - 23671 +2026-02-23 06:49:06 [WARNING] - 11219 +2026-02-23 06:49:06 [INFO] - 7730 +2026-02-23 06:49:06 [ERROR] Segmentation fault - 29047 +2026-02-23 06:49:06 [DEBUG] - 16681 +2026-02-23 06:49:06 [INFO] - 23116 +2026-02-23 06:49:06 [ERROR] Failed to connect - 1277 +2026-02-23 06:49:06 [INFO] - 10625 +2026-02-23 06:49:06 [WARNING] - 17723 +2026-02-23 06:49:06 [CRITICAL] - 25118 +2026-02-23 06:49:06 [ERROR] Failed to connect - 1048 +2026-02-23 06:49:06 [INFO] - 22832 +2026-02-23 06:49:06 [DEBUG] - 22131 +2026-02-23 06:49:06 [DEBUG] - 6031 +2026-02-23 06:49:06 [WARNING] - 22146 +2026-02-23 06:49:06 [INFO] - 31069 +2026-02-23 06:49:06 [WARNING] - 6730 +2026-02-23 06:49:06 [ERROR] Failed to connect - 21473 +2026-02-23 06:49:06 [CRITICAL] - 1833 +2026-02-23 06:49:06 [WARNING] - 27799 +2026-02-23 06:49:06 [INFO] - 5435 +2026-02-23 06:49:06 [INFO] - 26136 +2026-02-23 06:49:06 [DEBUG] - 4957 +2026-02-23 06:49:06 [INFO] - 3789 +2026-02-23 06:49:06 [WARNING] - 21491 +2026-02-23 06:49:06 [CRITICAL] - 10315 +2026-02-23 06:49:06 [DEBUG] - 24563 +2026-02-23 06:49:06 [DEBUG] - 6581 +2026-02-23 06:49:06 [DEBUG] - 675 +2026-02-23 06:49:06 [ERROR] Invalid input - 15352 +2026-02-23 06:49:06 [INFO] - 24418 +2026-02-23 06:49:06 [WARNING] - 19268 +2026-02-23 06:49:06 [INFO] - 10523 +2026-02-23 06:49:06 [WARNING] - 26527 +2026-02-23 06:49:06 [INFO] - 1639 +2026-02-23 06:49:06 [DEBUG] - 17211 +2026-02-23 06:49:06 [INFO] - 25597 +2026-02-23 06:49:06 [WARNING] - 19112 +2026-02-23 06:49:06 [WARNING] - 16085 +2026-02-23 06:49:06 [DEBUG] - 2606 +2026-02-23 06:49:06 [CRITICAL] - 13735 +2026-02-23 06:49:06 [DEBUG] - 23381 +2026-02-23 06:49:06 [ERROR] Invalid input - 15922 +2026-02-23 06:49:06 [CRITICAL] - 22586 +2026-02-23 06:49:06 [DEBUG] - 18685 +2026-02-23 06:49:06 [WARNING] - 22970 +2026-02-23 06:49:06 [DEBUG] - 6374 +2026-02-23 06:49:06 [INFO] - 30752 +2026-02-23 06:49:06 [INFO] - 7975 +2026-02-23 06:49:06 [ERROR] Out of memory - 19167 +2026-02-23 06:49:06 [WARNING] - 427 +2026-02-23 06:49:06 [INFO] - 2662 +2026-02-23 06:49:06 [WARNING] - 32369 +2026-02-23 06:49:06 [DEBUG] - 12150 +2026-02-23 06:49:06 [CRITICAL] - 6630 +2026-02-23 06:49:06 [DEBUG] - 8396 +2026-02-23 06:49:06 [CRITICAL] - 25838 +2026-02-23 06:49:06 [WARNING] - 12853 +2026-02-23 06:49:06 [WARNING] - 21754 +2026-02-23 06:49:06 [DEBUG] - 25676 +2026-02-23 06:49:06 [CRITICAL] - 22423 +2026-02-23 06:49:06 [ERROR] Segmentation fault - 959 +2026-02-23 06:49:06 [DEBUG] - 23988 +2026-02-23 06:49:06 [INFO] - 18663 +2026-02-23 06:49:06 [ERROR] Segmentation fault - 22509 +2026-02-23 06:49:06 [ERROR] Invalid input - 18018 +2026-02-23 06:49:06 [WARNING] - 4677 +2026-02-23 06:49:06 [DEBUG] - 15647 +2026-02-23 06:49:06 [INFO] - 27814 +2026-02-23 06:49:06 [WARNING] - 1667 +2026-02-23 06:49:06 [CRITICAL] - 22719 +2026-02-23 06:49:06 [WARNING] - 10321 +2026-02-23 06:49:06 [CRITICAL] - 6288 +2026-02-23 06:49:06 [WARNING] - 23418 +2026-02-23 06:49:06 [ERROR] Out of memory - 20275 +2026-02-23 06:49:06 [CRITICAL] - 30715 +2026-02-23 06:49:06 [INFO] - 17998 +2026-02-23 06:49:06 [ERROR] Segmentation fault - 20822 +2026-02-23 06:49:06 [CRITICAL] - 31343 +2026-02-23 06:49:06 [ERROR] Out of memory - 31192 +2026-02-23 06:49:06 [DEBUG] - 27222 +2026-02-23 06:49:06 [INFO] - 17130 +2026-02-23 06:49:06 [DEBUG] - 6655 +2026-02-23 06:49:06 [CRITICAL] - 14124 +2026-02-23 06:49:06 [WARNING] - 26951 +2026-02-23 06:49:06 [INFO] - 18687 +2026-02-23 06:49:06 [DEBUG] - 19443 +2026-02-23 06:49:06 [DEBUG] - 22932 +2026-02-23 06:49:06 [INFO] - 13537 +2026-02-23 06:49:06 [ERROR] Out of memory - 16219 +2026-02-23 06:49:06 [WARNING] - 19808 +2026-02-23 06:49:06 [CRITICAL] - 12168 +2026-02-23 06:49:06 [WARNING] - 7340 +2026-02-23 06:49:06 [WARNING] - 23497 +2026-02-23 06:49:06 [DEBUG] - 23426 +2026-02-23 06:49:06 [ERROR] Out of memory - 17141 +2026-02-23 06:49:06 [CRITICAL] - 6380 +2026-02-23 06:49:06 [WARNING] - 2999 +2026-02-23 06:49:06 [ERROR] Out of memory - 18985 +2026-02-23 06:49:06 [ERROR] Out of memory - 16342 +2026-02-23 06:49:06 [WARNING] - 2813 +2026-02-23 06:49:06 [DEBUG] - 24912 +2026-02-23 06:49:06 [INFO] - 25929 +2026-02-23 06:49:06 [WARNING] - 13282 +2026-02-23 06:49:06 [WARNING] - 8435 +2026-02-23 06:49:06 [ERROR] Invalid input - 17778 +2026-02-23 06:49:06 [ERROR] Failed to connect - 32087 +2026-02-23 06:49:06 [INFO] - 13402 +2026-02-23 06:49:06 [CRITICAL] - 12791 +2026-02-23 06:49:06 [CRITICAL] - 7159 +2026-02-23 06:49:06 [DEBUG] - 8994 +2026-02-23 06:49:06 [DEBUG] - 26007 +2026-02-23 06:49:06 [DEBUG] - 29493 +2026-02-23 06:49:06 [ERROR] Out of memory - 16737 +2026-02-23 06:49:06 [WARNING] - 3456 +2026-02-23 06:49:06 [WARNING] - 10316 +2026-02-23 06:49:06 [DEBUG] - 30109 +2026-02-23 06:49:06 [ERROR] Disk full - 21539 +2026-02-23 06:49:06 [ERROR] Failed to connect - 11502 +2026-02-23 06:49:06 [INFO] - 23028 +2026-02-23 06:49:06 [ERROR] Failed to connect - 11368 +2026-02-23 06:49:06 [DEBUG] - 17858 +2026-02-23 06:49:06 [WARNING] - 845 +2026-02-23 06:49:06 [WARNING] - 20283 +2026-02-23 06:49:06 [WARNING] - 9297 +2026-02-23 06:49:06 [DEBUG] - 26314 +2026-02-23 06:49:06 [INFO] - 13267 +2026-02-23 06:49:06 [INFO] - 1978 +2026-02-23 06:49:06 [INFO] - 13166 +2026-02-23 06:49:06 [INFO] - 3703 +2026-02-23 06:49:06 [DEBUG] - 13510 +2026-02-23 06:49:06 [ERROR] Segmentation fault - 26947 +2026-02-23 06:49:06 [DEBUG] - 29453 +2026-02-23 06:49:06 [WARNING] - 4944 +2026-02-23 06:49:06 [INFO] - 10717 +2026-02-23 06:49:06 [INFO] - 28860 +2026-02-23 06:49:06 [WARNING] - 3170 +2026-02-23 06:49:06 [DEBUG] - 22541 +2026-02-23 06:49:06 [INFO] - 15700 +2026-02-23 06:49:06 [CRITICAL] - 13217 +2026-02-23 06:49:06 [INFO] - 7752 +2026-02-23 06:49:06 [ERROR] Segmentation fault - 21809 +2026-02-23 06:49:06 [DEBUG] - 4308 +2026-02-23 06:49:06 [ERROR] Out of memory - 8808 +2026-02-23 06:49:06 [INFO] - 24837 +2026-02-23 06:49:06 [DEBUG] - 21366 +2026-02-23 06:49:06 [CRITICAL] - 9902 +2026-02-23 06:49:06 [ERROR] Disk full - 17786 +2026-02-23 06:49:06 [CRITICAL] - 8992 +2026-02-23 06:49:06 [DEBUG] - 3479 +2026-02-23 06:49:06 [INFO] - 15893 +2026-02-23 06:49:06 [ERROR] Failed to connect - 9165 +2026-02-23 06:49:06 [INFO] - 6529 +2026-02-23 06:49:06 [ERROR] Invalid input - 22647 +2026-02-23 06:49:06 [WARNING] - 15529 +2026-02-23 06:49:06 [WARNING] - 16675 +2026-02-23 06:49:06 [DEBUG] - 18233 +2026-02-23 06:49:06 [CRITICAL] - 24197 +2026-02-23 06:49:06 [WARNING] - 19271 +2026-02-23 06:49:06 [INFO] - 2345 +2026-02-23 06:49:06 [ERROR] Failed to connect - 22964 +2026-02-23 06:49:06 [WARNING] - 7676 +2026-02-23 06:49:06 [ERROR] Failed to connect - 9835 +2026-02-23 06:49:06 [INFO] - 21978 +2026-02-23 06:49:06 [CRITICAL] - 2852 +2026-02-23 06:49:06 [ERROR] Disk full - 9881 +2026-02-23 06:49:06 [WARNING] - 31250 +2026-02-23 06:49:06 [WARNING] - 14317 +2026-02-23 06:49:06 [CRITICAL] - 30610 +2026-02-23 06:49:06 [CRITICAL] - 13540 +2026-02-23 06:49:06 [INFO] - 3385 +2026-02-23 06:49:06 [CRITICAL] - 20625 +2026-02-23 06:49:06 [INFO] - 17157 +2026-02-23 06:49:06 [DEBUG] - 3108 +2026-02-23 06:49:06 [INFO] - 27336 +2026-02-23 06:49:06 [INFO] - 19128 +2026-02-23 06:49:06 [DEBUG] - 599 +2026-02-23 06:49:06 [DEBUG] - 1539 +2026-02-23 06:49:06 [INFO] - 9582 +2026-02-23 06:49:06 [DEBUG] - 3683 +2026-02-23 06:49:06 [WARNING] - 18006 +2026-02-23 06:49:06 [CRITICAL] - 9105 +2026-02-23 06:49:06 [INFO] - 8031 +2026-02-23 06:49:06 [ERROR] Failed to connect - 8687 +2026-02-23 06:49:06 [INFO] - 30674 +2026-02-23 06:49:06 [CRITICAL] - 9161 +2026-02-23 06:49:06 [DEBUG] - 21149 +2026-02-23 06:49:06 [CRITICAL] - 17601 +2026-02-23 06:49:06 [CRITICAL] - 11199 +2026-02-23 06:49:06 [CRITICAL] - 24997 +2026-02-23 06:49:06 [DEBUG] - 28826 +2026-02-23 06:49:06 [WARNING] - 21330 +2026-02-23 06:49:06 [DEBUG] - 16944 +2026-02-23 06:49:06 [DEBUG] - 8299 +2026-02-23 06:49:06 [CRITICAL] - 27357 +2026-02-23 06:49:06 [WARNING] - 5193 +2026-02-23 06:49:06 [DEBUG] - 1653 +2026-02-23 06:49:06 [WARNING] - 29016 +2026-02-23 06:49:06 [ERROR] Segmentation fault - 22315 +2026-02-23 06:49:06 [INFO] - 8388 +2026-02-23 06:49:06 [CRITICAL] - 13539 +2026-02-23 06:49:06 [WARNING] - 24676 +2026-02-23 06:49:06 [ERROR] Segmentation fault - 28310 +2026-02-23 06:49:06 [INFO] - 3416 +2026-02-23 06:49:06 [DEBUG] - 10560 +2026-02-23 06:49:06 [WARNING] - 15117 +2026-02-23 06:49:06 [ERROR] Segmentation fault - 26270 +2026-02-23 06:49:06 [DEBUG] - 24169 +2026-02-23 06:49:06 [CRITICAL] - 10874 +2026-02-23 06:49:06 [INFO] - 25661 +2026-02-23 06:49:06 [INFO] - 20340 +2026-02-23 06:49:06 [ERROR] Failed to connect - 15855 +2026-02-23 06:49:06 [WARNING] - 14238 +2026-02-23 06:49:06 [DEBUG] - 30105 +2026-02-23 06:49:06 [DEBUG] - 15341 +2026-02-23 06:49:06 [DEBUG] - 30953 +2026-02-23 06:49:06 [ERROR] Invalid input - 12795 +2026-02-23 06:49:06 [DEBUG] - 3122 +2026-02-23 06:49:06 [INFO] - 27277 +2026-02-23 06:49:06 [DEBUG] - 15949 +2026-02-23 06:49:06 [ERROR] Invalid input - 25168 +2026-02-23 06:49:06 [ERROR] Failed to connect - 12729 +2026-02-23 06:49:06 [CRITICAL] - 14185 +2026-02-23 06:49:06 [ERROR] Disk full - 24980 +2026-02-23 06:49:06 [INFO] - 3032 +2026-02-23 06:49:06 [ERROR] Disk full - 11447 +2026-02-23 06:49:06 [WARNING] - 6236 +2026-02-23 06:49:06 [CRITICAL] - 31789 +2026-02-23 06:49:06 [ERROR] Disk full - 7121 +2026-02-23 06:49:06 [CRITICAL] - 21375 +2026-02-23 06:49:06 [DEBUG] - 12611 +2026-02-23 06:49:06 [WARNING] - 2860 +2026-02-23 06:49:06 [DEBUG] - 11740 +2026-02-23 06:49:06 [INFO] - 21150 +2026-02-23 06:49:06 [CRITICAL] - 30972 +2026-02-23 06:49:06 [WARNING] - 12168 +2026-02-23 06:49:06 [ERROR] Failed to connect - 896 +2026-02-23 06:49:06 [ERROR] Failed to connect - 20084 +2026-02-23 06:49:06 [DEBUG] - 4147 +2026-02-23 06:49:06 [DEBUG] - 1964 +2026-02-23 06:49:06 [DEBUG] - 6831 +2026-02-23 06:49:06 [WARNING] - 11479 +2026-02-23 06:49:06 [WARNING] - 31738 +2026-02-23 06:49:06 [ERROR] Disk full - 3364 +2026-02-23 06:49:06 [ERROR] Out of memory - 17721 +2026-02-23 06:49:06 [DEBUG] - 1639 +2026-02-23 06:49:06 [CRITICAL] - 22859 +2026-02-23 06:49:06 [ERROR] Invalid input - 6338 +2026-02-23 06:49:06 [CRITICAL] - 8520 +2026-02-23 06:49:06 [CRITICAL] - 28214 +2026-02-23 06:49:06 [DEBUG] - 29192 +2026-02-23 06:49:06 [WARNING] - 24247 +2026-02-23 06:49:06 [DEBUG] - 7985 +2026-02-23 06:49:06 [DEBUG] - 10982 +2026-02-23 06:49:06 [DEBUG] - 24776 +2026-02-23 06:49:06 [CRITICAL] - 14505 +2026-02-23 06:49:06 [CRITICAL] - 28618 +2026-02-23 06:49:06 [CRITICAL] - 31644 +2026-02-23 06:49:06 [WARNING] - 23150 +2026-02-23 06:49:06 [WARNING] - 13801 +2026-02-23 06:49:06 [DEBUG] - 11858 +2026-02-23 06:49:06 [CRITICAL] - 11761 +2026-02-23 06:49:06 [CRITICAL] - 30150 +2026-02-23 06:49:06 [INFO] - 10937 +2026-02-23 06:49:06 [INFO] - 20635 +2026-02-23 06:49:06 [ERROR] Segmentation fault - 4703 +2026-02-23 06:49:06 [ERROR] Out of memory - 5441 +2026-02-23 06:49:06 [ERROR] Disk full - 31421 +2026-02-23 06:49:06 [INFO] - 8059 +2026-02-23 06:49:06 [CRITICAL] - 23362 +2026-02-23 06:49:06 [ERROR] Invalid input - 23600 +2026-02-23 06:49:06 [WARNING] - 27066 +2026-02-23 06:49:06 [CRITICAL] - 18237 +2026-02-23 06:49:06 [DEBUG] - 2811 +2026-02-23 06:49:06 [CRITICAL] - 16074 +2026-02-23 06:49:06 [ERROR] Segmentation fault - 12919 +2026-02-23 06:49:06 [INFO] - 25209 +2026-02-23 06:49:06 [WARNING] - 22478 +2026-02-23 06:49:06 [DEBUG] - 10168 +2026-02-23 06:49:06 [ERROR] Out of memory - 19320 +2026-02-23 06:49:06 [ERROR] Out of memory - 28557 +2026-02-23 06:49:06 [DEBUG] - 5756 +2026-02-23 06:49:06 [WARNING] - 8572 +2026-02-23 06:49:06 [CRITICAL] - 26878 +2026-02-23 06:49:06 [WARNING] - 12161 +2026-02-23 06:49:06 [CRITICAL] - 4825 +2026-02-23 06:49:06 [DEBUG] - 19438 +2026-02-23 06:49:06 [WARNING] - 714 +2026-02-23 06:49:06 [ERROR] Out of memory - 7138 +2026-02-23 06:49:06 [INFO] - 5220 +2026-02-23 06:49:06 [CRITICAL] - 21185 +2026-02-23 06:49:06 [INFO] - 13961 +2026-02-23 06:49:06 [WARNING] - 29752 +2026-02-23 06:49:06 [CRITICAL] - 14449 +2026-02-23 06:49:06 [INFO] - 30521 +2026-02-23 06:49:06 [ERROR] Disk full - 18091 +2026-02-23 06:49:06 [DEBUG] - 5353 +2026-02-23 06:49:06 [WARNING] - 8992 +2026-02-23 06:49:06 [DEBUG] - 28644 +2026-02-23 06:49:06 [INFO] - 12911 +2026-02-23 06:49:06 [WARNING] - 19925 +2026-02-23 06:49:06 [WARNING] - 20271 +2026-02-23 06:49:06 [DEBUG] - 10454 +2026-02-23 06:49:06 [WARNING] - 8766 +2026-02-23 06:49:06 [ERROR] Disk full - 19349 +2026-02-23 06:49:06 [ERROR] Disk full - 13181 +2026-02-23 06:49:06 [CRITICAL] - 29998 +2026-02-23 06:49:06 [DEBUG] - 13688 +2026-02-23 06:49:06 [WARNING] - 26244 +2026-02-23 06:49:06 [WARNING] - 17739 +2026-02-23 06:49:06 [WARNING] - 22832 +2026-02-23 06:49:06 [CRITICAL] - 14440 +2026-02-23 06:49:06 [ERROR] Invalid input - 1914 +2026-02-23 06:49:06 [DEBUG] - 3025 +2026-02-23 06:49:06 [INFO] - 17506 +2026-02-23 06:49:06 [ERROR] Out of memory - 31486 +2026-02-23 06:49:06 [INFO] - 22740 +2026-02-23 06:49:06 [WARNING] - 2071 +2026-02-23 06:49:06 [ERROR] Failed to connect - 23244 +2026-02-23 06:49:06 [CRITICAL] - 24499 +2026-02-23 06:49:06 [INFO] - 14853 +2026-02-23 06:49:06 [INFO] - 28100 +2026-02-23 06:49:06 [CRITICAL] - 1167 +2026-02-23 06:49:06 [ERROR] Disk full - 3955 +2026-02-23 06:49:06 [WARNING] - 29043 +2026-02-23 06:49:06 [ERROR] Disk full - 7018 +2026-02-23 06:49:06 [WARNING] - 6848 +2026-02-23 06:49:06 [ERROR] Out of memory - 10373 +2026-02-23 06:49:06 [DEBUG] - 11737 +2026-02-23 06:49:06 [INFO] - 20907 +2026-02-23 06:49:06 [INFO] - 24038 +2026-02-23 06:49:06 [ERROR] Segmentation fault - 27873 +2026-02-23 06:49:06 [ERROR] Failed to connect - 10189 +2026-02-23 06:49:06 [CRITICAL] - 9483 +2026-02-23 06:49:06 [DEBUG] - 15556 +2026-02-23 06:49:06 [DEBUG] - 15781 +2026-02-23 06:49:06 [WARNING] - 10894 +2026-02-23 06:49:06 [WARNING] - 17114 +2026-02-23 06:49:06 [WARNING] - 10107 +2026-02-23 06:49:06 [DEBUG] - 32560 +2026-02-23 06:49:06 [DEBUG] - 11384 +2026-02-23 06:49:06 [WARNING] - 24015 +2026-02-23 06:49:06 [INFO] - 15278 +2026-02-23 06:49:06 [INFO] - 30217 +2026-02-23 06:49:06 [CRITICAL] - 24830 +2026-02-23 06:49:06 [ERROR] Disk full - 23997 +2026-02-23 06:49:06 [CRITICAL] - 16214 +2026-02-23 06:49:06 [CRITICAL] - 10046 +2026-02-23 06:49:06 [WARNING] - 23726 +2026-02-23 06:49:06 [DEBUG] - 22787 +2026-02-23 06:49:06 [CRITICAL] - 8969 +2026-02-23 06:49:06 [ERROR] Invalid input - 11021 +2026-02-23 06:49:06 [DEBUG] - 15275 +2026-02-23 06:49:06 [WARNING] - 27502 +2026-02-23 06:49:06 [INFO] - 15634 +2026-02-23 06:49:06 [CRITICAL] - 30943 +2026-02-23 06:49:06 [CRITICAL] - 4542 +2026-02-23 06:49:06 [WARNING] - 16838 +2026-02-23 06:49:06 [WARNING] - 7191 +2026-02-23 06:49:06 [DEBUG] - 10422 +2026-02-23 06:49:06 [CRITICAL] - 1359 +2026-02-23 06:49:06 [DEBUG] - 22009 +2026-02-23 06:49:06 [CRITICAL] - 29581 +2026-02-23 06:49:06 [INFO] - 17468 +2026-02-23 06:49:06 [WARNING] - 23465 +2026-02-23 06:49:06 [ERROR] Disk full - 16745 +2026-02-23 06:49:06 [ERROR] Segmentation fault - 20303 +2026-02-23 06:49:06 [WARNING] - 30882 +2026-02-23 06:49:06 [WARNING] - 17342 +2026-02-23 06:49:06 [ERROR] Segmentation fault - 25780 +2026-02-23 06:49:06 [DEBUG] - 17342 +2026-02-23 06:49:06 [CRITICAL] - 2453 +2026-02-23 06:49:06 [ERROR] Out of memory - 869 +2026-02-23 06:49:06 [DEBUG] - 1772 +2026-02-23 06:49:06 [WARNING] - 22192 +2026-02-23 06:49:06 [DEBUG] - 8312 +2026-02-23 06:49:06 [ERROR] Invalid input - 340 +2026-02-23 06:49:06 [WARNING] - 15982 +2026-02-23 06:49:06 [CRITICAL] - 6758 +2026-02-23 06:49:06 [ERROR] Failed to connect - 24118 +2026-02-23 06:49:06 [DEBUG] - 28283 +2026-02-23 06:49:06 [CRITICAL] - 22655 +2026-02-23 06:49:06 [ERROR] Disk full - 21002 +2026-02-23 06:49:06 [DEBUG] - 6778 +2026-02-23 06:49:06 [WARNING] - 27377 +2026-02-23 06:49:06 [ERROR] Disk full - 32198 +2026-02-23 06:49:06 [INFO] - 30053 +2026-02-23 06:49:06 [INFO] - 24326 +2026-02-23 06:49:06 [INFO] - 17115 +2026-02-23 06:49:06 [INFO] - 28838 +2026-02-23 06:49:06 [CRITICAL] - 11936 +2026-02-23 06:49:06 [INFO] - 30038 +2026-02-23 06:49:06 [INFO] - 27930 +2026-02-23 06:49:06 [INFO] - 4200 +2026-02-23 06:49:06 [ERROR] Segmentation fault - 15063 +2026-02-23 06:49:06 [ERROR] Invalid input - 25071 +2026-02-23 06:49:06 [ERROR] Failed to connect - 31151 +2026-02-23 06:49:06 [DEBUG] - 32408 +2026-02-23 06:49:06 [INFO] - 9668 +2026-02-23 06:49:06 [WARNING] - 10833 +2026-02-23 06:49:06 [WARNING] - 27044 +2026-02-23 06:49:06 [INFO] - 10122 +2026-02-23 06:49:06 [WARNING] - 9323 +2026-02-23 06:49:06 [DEBUG] - 18906 +2026-02-23 06:49:06 [DEBUG] - 29187 +2026-02-23 06:49:06 [ERROR] Disk full - 7160 +2026-02-23 06:49:06 [INFO] - 31934 +2026-02-23 06:49:06 [CRITICAL] - 4700 +2026-02-23 06:49:06 [ERROR] Invalid input - 16942 +2026-02-23 06:49:06 [INFO] - 11533 +2026-02-23 06:49:06 [ERROR] Out of memory - 12187 +2026-02-23 06:49:06 [CRITICAL] - 14948 +2026-02-23 06:49:06 [CRITICAL] - 22560 +2026-02-23 06:49:06 [WARNING] - 18257 +2026-02-23 06:49:06 [ERROR] Disk full - 1850 +2026-02-23 06:49:06 [CRITICAL] - 18457 +2026-02-23 06:49:06 [DEBUG] - 30260 +2026-02-23 06:49:06 [DEBUG] - 903 +2026-02-23 06:49:06 [DEBUG] - 30914 +2026-02-23 06:49:06 [INFO] - 27109 +2026-02-23 06:49:06 [WARNING] - 28602 +2026-02-23 06:49:06 [ERROR] Out of memory - 26162 +2026-02-23 06:49:06 [INFO] - 21993 +2026-02-23 06:49:06 [CRITICAL] - 16791 +2026-02-23 06:49:06 [ERROR] Disk full - 19344 +2026-02-23 06:49:06 [INFO] - 31731 +2026-02-23 06:49:06 [CRITICAL] - 24038 +2026-02-23 06:49:06 [CRITICAL] - 1187 +2026-02-23 06:49:06 [WARNING] - 4579 +2026-02-23 06:49:06 [WARNING] - 18062 +2026-02-23 06:49:06 [ERROR] Segmentation fault - 29049 +2026-02-23 06:49:06 [ERROR] Failed to connect - 18028 +2026-02-23 06:49:06 [CRITICAL] - 7667 +2026-02-23 06:49:06 [DEBUG] - 27886 +2026-02-23 06:49:06 [INFO] - 26564 +2026-02-23 06:49:06 [CRITICAL] - 22576 +2026-02-23 06:49:06 [WARNING] - 8507 +2026-02-23 06:49:06 [CRITICAL] - 23915 +2026-02-23 06:49:06 [WARNING] - 3620 +2026-02-23 06:49:06 [WARNING] - 6860 +2026-02-23 06:49:06 [WARNING] - 10114 +2026-02-23 06:49:06 [CRITICAL] - 11679 +2026-02-23 06:49:06 [INFO] - 2358 +2026-02-23 06:49:06 [DEBUG] - 20693 +2026-02-23 06:49:06 [CRITICAL] - 18328 +2026-02-23 06:49:06 [INFO] - 12513 +2026-02-23 06:49:06 [DEBUG] - 26759 +2026-02-23 06:49:06 [INFO] - 16957 +2026-02-23 06:49:06 [ERROR] Failed to connect - 5781 +2026-02-23 06:49:06 [DEBUG] - 15943 +2026-02-23 06:49:07 [DEBUG] - 6507 +2026-02-23 06:49:07 [INFO] - 5413 +2026-02-23 06:49:07 [ERROR] Out of memory - 6213 +2026-02-23 06:49:07 [DEBUG] - 4702 +2026-02-23 06:49:07 [WARNING] - 21704 +2026-02-23 06:49:07 [ERROR] Segmentation fault - 3163 +2026-02-23 06:49:07 [WARNING] - 2493 +2026-02-23 06:49:07 [ERROR] Segmentation fault - 16598 +2026-02-23 06:49:07 [CRITICAL] - 23117 +2026-02-23 06:49:07 [INFO] - 10303 +2026-02-23 06:49:07 [INFO] - 19773 +2026-02-23 06:49:07 [INFO] - 1247 +2026-02-23 06:49:07 [DEBUG] - 23709 +2026-02-23 06:49:07 [ERROR] Out of memory - 32568 +2026-02-23 06:49:07 [DEBUG] - 6299 +2026-02-23 06:49:07 [CRITICAL] - 24770 +2026-02-23 06:49:07 [CRITICAL] - 13496 +2026-02-23 06:49:07 [INFO] - 20436 +2026-02-23 06:49:07 [INFO] - 28343 +2026-02-23 06:49:07 [ERROR] Invalid input - 15887 +2026-02-23 06:49:07 [CRITICAL] - 13471 +2026-02-23 06:49:07 [INFO] - 15727 +2026-02-23 06:49:07 [DEBUG] - 3217 +2026-02-23 06:49:07 [DEBUG] - 1667 +2026-02-23 06:49:07 [INFO] - 18216 +2026-02-23 06:49:07 [ERROR] Segmentation fault - 28041 +2026-02-23 06:49:07 [ERROR] Disk full - 19832 +2026-02-23 06:49:07 [INFO] - 29046 +2026-02-23 06:49:07 [ERROR] Failed to connect - 19011 +2026-02-23 06:49:07 [CRITICAL] - 7999 +2026-02-23 06:49:07 [INFO] - 2682 +2026-02-23 06:49:07 [CRITICAL] - 4368 +2026-02-23 06:49:07 [ERROR] Out of memory - 28776 +2026-02-23 06:49:07 [WARNING] - 22480 +2026-02-23 06:49:07 [CRITICAL] - 31252 +2026-02-23 06:49:07 [DEBUG] - 9227 +2026-02-23 06:49:07 [ERROR] Disk full - 731 +2026-02-23 06:49:07 [WARNING] - 7681 +2026-02-23 06:49:07 [ERROR] Disk full - 12460 +2026-02-23 06:49:07 [ERROR] Segmentation fault - 21096 +2026-02-23 06:49:07 [WARNING] - 7355 +2026-02-23 06:49:07 [CRITICAL] - 15597 +2026-02-23 06:49:07 [CRITICAL] - 15644 +2026-02-23 06:49:07 [INFO] - 5168 +2026-02-23 06:49:07 [INFO] - 5527 +2026-02-23 06:49:07 [ERROR] Invalid input - 9970 +2026-02-23 06:49:07 [CRITICAL] - 30094 +2026-02-23 06:49:07 [CRITICAL] - 28638 +2026-02-23 06:49:07 [DEBUG] - 10549 +2026-02-23 06:49:07 [DEBUG] - 30870 +2026-02-23 06:49:07 [ERROR] Segmentation fault - 187 +2026-02-23 06:49:07 [DEBUG] - 19098 +2026-02-23 06:49:07 [CRITICAL] - 26298 +2026-02-23 06:49:07 [DEBUG] - 24544 +2026-02-23 06:49:07 [DEBUG] - 18873 +2026-02-23 06:49:07 [DEBUG] - 9529 +2026-02-23 06:49:07 [INFO] - 9972 +2026-02-23 06:49:07 [INFO] - 8672 +2026-02-23 06:49:07 [CRITICAL] - 17480 +2026-02-23 06:49:07 [INFO] - 9669 +2026-02-23 06:49:07 [WARNING] - 14688 +2026-02-23 06:49:07 [ERROR] Failed to connect - 20526 +2026-02-23 06:49:07 [WARNING] - 30823 +2026-02-23 06:49:07 [INFO] - 28683 +2026-02-23 06:49:07 [WARNING] - 23513 +2026-02-23 06:49:07 [CRITICAL] - 15543 +2026-02-23 06:49:07 [DEBUG] - 14590 +2026-02-23 06:49:07 [CRITICAL] - 12836 +2026-02-23 06:49:07 [WARNING] - 18233 +2026-02-23 06:49:07 [ERROR] Invalid input - 26473 +2026-02-23 06:49:07 [DEBUG] - 28583 +2026-02-23 06:49:07 [CRITICAL] - 30358 +2026-02-23 06:49:07 [WARNING] - 8561 +2026-02-23 06:49:07 [INFO] - 6931 +2026-02-23 06:49:07 [DEBUG] - 3687 +2026-02-23 06:49:07 [INFO] - 474 +2026-02-23 06:49:07 [INFO] - 5515 +2026-02-23 06:49:07 [DEBUG] - 27011 +2026-02-23 06:49:07 [ERROR] Failed to connect - 25436 +2026-02-23 06:49:07 [ERROR] Disk full - 18449 +2026-02-23 06:49:07 [CRITICAL] - 7030 +2026-02-23 06:49:07 [WARNING] - 15238 +2026-02-23 06:49:07 [INFO] - 6150 +2026-02-23 06:49:07 [INFO] - 20526 +2026-02-23 06:49:07 [DEBUG] - 7255 +2026-02-23 06:49:07 [WARNING] - 1766 +2026-02-23 06:49:07 [INFO] - 14752 +2026-02-23 06:49:07 [WARNING] - 2154 +2026-02-23 06:49:07 [WARNING] - 13990 +2026-02-23 06:49:07 [ERROR] Segmentation fault - 2866 +2026-02-23 06:49:07 [ERROR] Disk full - 12255 +2026-02-23 06:49:07 [DEBUG] - 22558 +2026-02-23 06:49:07 [DEBUG] - 6662 +2026-02-23 06:49:07 [ERROR] Out of memory - 23284 +2026-02-23 06:49:07 [DEBUG] - 10521 +2026-02-23 06:49:07 [INFO] - 20536 +2026-02-23 06:49:07 [ERROR] Out of memory - 8171 +2026-02-23 06:49:07 [WARNING] - 3076 +2026-02-23 06:49:07 [WARNING] - 7924 +2026-02-23 06:49:07 [CRITICAL] - 32743 +2026-02-23 06:49:07 [ERROR] Failed to connect - 14730 +2026-02-23 06:49:07 [DEBUG] - 28596 +2026-02-23 06:49:07 [CRITICAL] - 28006 +2026-02-23 06:49:07 [ERROR] Segmentation fault - 10228 +2026-02-23 06:49:07 [CRITICAL] - 26883 +2026-02-23 06:49:07 [WARNING] - 14134 +2026-02-23 06:49:07 [INFO] - 18881 +2026-02-23 06:49:07 [CRITICAL] - 16948 +2026-02-23 06:49:07 [ERROR] Disk full - 3527 +2026-02-23 06:49:07 [WARNING] - 13821 +2026-02-23 06:49:07 [CRITICAL] - 4158 +2026-02-23 06:49:07 [INFO] - 9642 +2026-02-23 06:49:07 [ERROR] Out of memory - 14085 +2026-02-23 06:49:07 [CRITICAL] - 31676 +2026-02-23 06:49:07 [CRITICAL] - 15346 +2026-02-23 06:49:07 [ERROR] Invalid input - 32333 +2026-02-23 06:49:07 [DEBUG] - 11215 +2026-02-23 06:49:07 [CRITICAL] - 10340 +2026-02-23 06:49:07 [CRITICAL] - 30413 +2026-02-23 06:49:07 [WARNING] - 19768 +2026-02-23 06:49:07 [ERROR] Failed to connect - 13215 +2026-02-23 06:49:07 [WARNING] - 7607 +2026-02-23 06:49:07 [ERROR] Failed to connect - 5494 +2026-02-23 06:49:07 [WARNING] - 30381 +2026-02-23 06:49:07 [CRITICAL] - 25180 +2026-02-23 06:49:07 [WARNING] - 14339 +2026-02-23 06:49:07 [CRITICAL] - 10439 +2026-02-23 06:49:07 [CRITICAL] - 19834 +2026-02-23 06:49:07 [ERROR] Invalid input - 22569 +2026-02-23 06:49:07 [CRITICAL] - 2833 +2026-02-23 06:49:07 [DEBUG] - 28839 +2026-02-23 06:49:07 [ERROR] Disk full - 30834 +2026-02-23 06:49:07 [WARNING] - 12596 +2026-02-23 06:49:07 [WARNING] - 32244 +2026-02-23 06:49:07 [ERROR] Out of memory - 12651 +2026-02-23 06:49:07 [ERROR] Disk full - 2145 +2026-02-23 06:49:07 [DEBUG] - 14265 +2026-02-23 06:49:07 [DEBUG] - 1551 +2026-02-23 06:49:07 [DEBUG] - 14923 +2026-02-23 06:49:07 [WARNING] - 32368 +2026-02-23 06:49:07 [DEBUG] - 11658 +2026-02-23 06:49:07 [DEBUG] - 12555 +2026-02-23 06:49:07 [DEBUG] - 20964 +2026-02-23 06:49:07 [WARNING] - 26852 +2026-02-23 06:49:07 [WARNING] - 17126 +2026-02-23 06:49:07 [ERROR] Failed to connect - 28732 +2026-02-23 06:49:07 [DEBUG] - 3300 +2026-02-23 06:49:07 [WARNING] - 6614 +2026-02-23 06:49:07 [CRITICAL] - 11485 +2026-02-23 06:49:07 [CRITICAL] - 14146 +2026-02-23 06:49:07 [CRITICAL] - 14491 +2026-02-23 06:49:07 [DEBUG] - 697 +2026-02-23 06:49:07 [ERROR] Out of memory - 5319 +2026-02-23 06:49:07 [INFO] - 1714 +2026-02-23 06:49:07 [WARNING] - 12244 +2026-02-23 06:49:07 [INFO] - 25886 +2026-02-23 06:49:07 [WARNING] - 1536 +2026-02-23 06:49:07 [ERROR] Failed to connect - 1183 +2026-02-23 06:49:07 [INFO] - 5116 +2026-02-23 06:49:07 [WARNING] - 17116 +2026-02-23 06:49:07 [ERROR] Failed to connect - 24304 +2026-02-23 06:49:07 [CRITICAL] - 14964 +2026-02-23 06:49:07 [DEBUG] - 23420 +2026-02-23 06:49:07 [CRITICAL] - 22310 +2026-02-23 06:49:07 [WARNING] - 6831 +2026-02-23 06:49:07 [ERROR] Out of memory - 5628 +2026-02-23 06:49:07 [INFO] - 18007 +2026-02-23 06:49:07 [ERROR] Failed to connect - 28092 +2026-02-23 06:49:07 [CRITICAL] - 23256 +2026-02-23 06:49:07 [INFO] - 15192 +2026-02-23 06:49:07 [WARNING] - 1636 +2026-02-23 06:49:07 [CRITICAL] - 20024 +2026-02-23 06:49:07 [INFO] - 328 +2026-02-23 06:49:07 [ERROR] Invalid input - 7883 +2026-02-23 06:49:07 [CRITICAL] - 3425 +2026-02-23 06:49:07 [DEBUG] - 8128 +2026-02-23 06:49:07 [WARNING] - 12239 +2026-02-23 06:49:07 [CRITICAL] - 9535 +2026-02-23 06:49:07 [ERROR] Segmentation fault - 29026 +2026-02-23 06:49:07 [DEBUG] - 11838 +2026-02-23 06:49:07 [CRITICAL] - 20634 +2026-02-23 06:49:07 [INFO] - 29173 +2026-02-23 06:49:07 [ERROR] Segmentation fault - 25658 +2026-02-23 06:49:07 [CRITICAL] - 30490 +2026-02-23 06:49:07 [INFO] - 2829 +2026-02-23 06:49:07 [ERROR] Segmentation fault - 8646 +2026-02-23 06:49:07 [ERROR] Invalid input - 2051 +2026-02-23 06:49:07 [INFO] - 29592 +2026-02-23 06:49:07 [DEBUG] - 13984 +2026-02-23 06:49:07 [WARNING] - 21133 +2026-02-23 06:49:07 [CRITICAL] - 5933 +2026-02-23 06:49:07 [ERROR] Out of memory - 26957 +2026-02-23 06:49:07 [ERROR] Out of memory - 2573 +2026-02-23 06:49:07 [CRITICAL] - 7916 +2026-02-23 06:49:07 [DEBUG] - 10777 +2026-02-23 06:49:07 [CRITICAL] - 29662 +2026-02-23 06:49:07 [CRITICAL] - 23797 +2026-02-23 06:49:07 [INFO] - 8332 +2026-02-23 06:49:07 [ERROR] Failed to connect - 29499 +2026-02-23 06:49:07 [ERROR] Out of memory - 29410 +2026-02-23 06:49:07 [CRITICAL] - 13602 +2026-02-23 06:49:07 [INFO] - 14203 +2026-02-23 06:49:07 [DEBUG] - 4307 +2026-02-23 06:49:07 [DEBUG] - 1697 +2026-02-23 06:49:07 [WARNING] - 3796 +2026-02-23 06:49:07 [ERROR] Disk full - 22461 +2026-02-23 06:49:07 [CRITICAL] - 633 +2026-02-23 06:49:07 [WARNING] - 4360 +2026-02-23 06:49:07 [CRITICAL] - 31303 +2026-02-23 06:49:07 [WARNING] - 737 +2026-02-23 06:49:07 [DEBUG] - 5140 +2026-02-23 06:49:07 [DEBUG] - 25499 +2026-02-23 06:49:07 [CRITICAL] - 25878 +2026-02-23 06:49:07 [WARNING] - 12186 +2026-02-23 06:49:07 [ERROR] Out of memory - 25596 +2026-02-23 06:49:07 [WARNING] - 28720 +2026-02-23 06:49:07 [INFO] - 10939 +2026-02-23 06:49:07 [WARNING] - 16671 +2026-02-23 06:49:07 [INFO] - 19649 +2026-02-23 06:49:07 [CRITICAL] - 12151 +2026-02-23 06:49:07 [DEBUG] - 30280 +2026-02-23 06:49:07 [WARNING] - 3811 +2026-02-23 06:49:07 [INFO] - 23585 +2026-02-23 06:49:07 [DEBUG] - 32714 +2026-02-23 06:49:07 [INFO] - 19645 +2026-02-23 06:49:07 [INFO] - 31105 +2026-02-23 06:49:07 [INFO] - 18630 +2026-02-23 06:49:07 [DEBUG] - 26294 +2026-02-23 06:49:07 [INFO] - 28058 +2026-02-23 06:49:07 [ERROR] Out of memory - 28417 +2026-02-23 06:49:07 [INFO] - 31787 +2026-02-23 06:49:07 [ERROR] Disk full - 9244 +2026-02-23 06:49:07 [ERROR] Segmentation fault - 26853 +2026-02-23 06:49:07 [ERROR] Disk full - 3872 +2026-02-23 06:49:07 [CRITICAL] - 10159 +2026-02-23 06:49:07 [CRITICAL] - 32111 +2026-02-23 06:49:07 [WARNING] - 8273 +2026-02-23 06:49:07 [DEBUG] - 10178 +2026-02-23 06:49:07 [CRITICAL] - 16218 +2026-02-23 06:49:07 [INFO] - 31447 +2026-02-23 06:49:07 [ERROR] Disk full - 23958 +2026-02-23 06:49:07 [WARNING] - 30049 +2026-02-23 06:49:07 [DEBUG] - 23784 +2026-02-23 06:49:07 [CRITICAL] - 24515 +2026-02-23 06:49:07 [DEBUG] - 25874 +2026-02-23 06:49:07 [CRITICAL] - 29389 +2026-02-23 06:49:07 [ERROR] Disk full - 23700 +2026-02-23 06:49:07 [WARNING] - 28882 +2026-02-23 06:49:07 [DEBUG] - 18951 +2026-02-23 06:49:07 [DEBUG] - 8688 +2026-02-23 06:49:07 [WARNING] - 52 +2026-02-23 06:49:07 [ERROR] Disk full - 13300 +2026-02-23 06:49:07 [INFO] - 751 +2026-02-23 06:49:07 [CRITICAL] - 7756 +2026-02-23 06:49:07 [DEBUG] - 10164 +2026-02-23 06:49:07 [CRITICAL] - 4817 +2026-02-23 06:49:07 [DEBUG] - 32351 +2026-02-23 06:49:07 [INFO] - 1258 +2026-02-23 06:49:07 [INFO] - 23751 +2026-02-23 06:49:07 [INFO] - 21179 +2026-02-23 06:49:07 [INFO] - 1676 +2026-02-23 06:49:07 [CRITICAL] - 72 +2026-02-23 06:49:07 [WARNING] - 443 +2026-02-23 06:49:07 [DEBUG] - 26997 +2026-02-23 06:49:07 [INFO] - 17221 +2026-02-23 06:49:07 [WARNING] - 32266 +2026-02-23 06:49:07 [INFO] - 19222 +2026-02-23 06:49:07 [ERROR] Invalid input - 15790 +2026-02-23 06:49:07 [DEBUG] - 10898 +2026-02-23 06:49:07 [CRITICAL] - 3091 +2026-02-23 06:49:07 [INFO] - 7086 +2026-02-23 06:49:07 [WARNING] - 14473 +2026-02-23 06:49:07 [DEBUG] - 15828 +2026-02-23 06:49:07 [WARNING] - 431 +2026-02-23 06:49:07 [CRITICAL] - 14960 +2026-02-23 06:49:07 [INFO] - 5966 +2026-02-23 06:49:07 [CRITICAL] - 30686 +2026-02-23 06:49:07 [ERROR] Segmentation fault - 25588 +2026-02-23 06:49:07 [DEBUG] - 23220 +2026-02-23 06:49:07 [WARNING] - 32600 +2026-02-23 06:49:07 [DEBUG] - 28001 +2026-02-23 06:49:07 [DEBUG] - 22968 +2026-02-23 06:49:07 [DEBUG] - 24076 +2026-02-23 06:49:07 [DEBUG] - 3244 +2026-02-23 06:49:07 [ERROR] Disk full - 5146 +2026-02-23 06:49:07 [CRITICAL] - 24697 +2026-02-23 06:49:07 [WARNING] - 19814 +2026-02-23 06:49:07 [WARNING] - 26927 +2026-02-23 06:49:07 [ERROR] Invalid input - 16173 +2026-02-23 06:49:07 [ERROR] Out of memory - 30724 +2026-02-23 06:49:07 [ERROR] Invalid input - 16201 +2026-02-23 06:49:07 [INFO] - 13744 +2026-02-23 06:49:07 [WARNING] - 6311 +2026-02-23 06:49:07 [DEBUG] - 32007 +2026-02-23 06:49:07 [INFO] - 26018 +2026-02-23 06:49:07 [ERROR] Failed to connect - 29155 +2026-02-23 06:49:07 [INFO] - 3455 +2026-02-23 06:49:07 [WARNING] - 17177 +2026-02-23 06:49:07 [CRITICAL] - 10283 +2026-02-23 06:49:07 [ERROR] Segmentation fault - 12751 +2026-02-23 06:49:07 [WARNING] - 13076 +2026-02-23 06:49:07 [CRITICAL] - 8609 +2026-02-23 06:49:07 [INFO] - 25235 +2026-02-23 06:49:07 [CRITICAL] - 16891 +2026-02-23 06:49:07 [WARNING] - 11429 +2026-02-23 06:49:07 [ERROR] Failed to connect - 12820 +2026-02-23 06:49:07 [CRITICAL] - 13327 +2026-02-23 06:49:07 [WARNING] - 27579 +2026-02-23 06:49:07 [ERROR] Out of memory - 27572 +2026-02-23 06:49:07 [DEBUG] - 18263 +2026-02-23 06:49:07 [WARNING] - 29866 +2026-02-23 06:49:07 [WARNING] - 8066 +2026-02-23 06:49:07 [WARNING] - 28293 +2026-02-23 06:49:07 [CRITICAL] - 16104 +2026-02-23 06:49:07 [CRITICAL] - 394 +2026-02-23 06:49:07 [INFO] - 10883 +2026-02-23 06:49:07 [DEBUG] - 22277 +2026-02-23 06:49:07 [DEBUG] - 10955 +2026-02-23 06:49:07 [INFO] - 13468 +2026-02-23 06:49:07 [ERROR] Segmentation fault - 2866 +2026-02-23 06:49:07 [INFO] - 30886 +2026-02-23 06:49:07 [WARNING] - 30518 +2026-02-23 06:49:07 [WARNING] - 27193 +2026-02-23 06:49:07 [DEBUG] - 21433 +2026-02-23 06:49:07 [WARNING] - 18348 +2026-02-23 06:49:07 [WARNING] - 14089 +2026-02-23 06:49:07 [WARNING] - 8393 +2026-02-23 06:49:07 [INFO] - 7783 +2026-02-23 06:49:07 [INFO] - 31671 +2026-02-23 06:49:07 [INFO] - 11245 +2026-02-23 06:49:07 [CRITICAL] - 10522 +2026-02-23 06:49:07 [CRITICAL] - 22257 +2026-02-23 06:49:07 [DEBUG] - 15127 +2026-02-23 06:49:07 [ERROR] Invalid input - 7190 +2026-02-23 06:49:07 [WARNING] - 16893 +2026-02-23 06:49:07 [WARNING] - 24764 +2026-02-23 06:49:07 [CRITICAL] - 20703 +2026-02-23 06:49:07 [DEBUG] - 25267 +2026-02-23 06:49:07 [DEBUG] - 13814 +2026-02-23 06:49:07 [INFO] - 5335 +2026-02-23 06:49:07 [INFO] - 9250 +2026-02-23 06:49:07 [CRITICAL] - 2938 +2026-02-23 06:49:07 [CRITICAL] - 16085 +2026-02-23 06:49:07 [WARNING] - 837 +2026-02-23 06:49:07 [ERROR] Disk full - 13241 +2026-02-23 06:49:07 [WARNING] - 29088 +2026-02-23 06:49:07 [CRITICAL] - 19856 +2026-02-23 06:49:07 [INFO] - 29057 +2026-02-23 06:49:07 [WARNING] - 7949 +2026-02-23 06:49:07 [WARNING] - 24363 +2026-02-23 06:49:07 [CRITICAL] - 23764 +2026-02-23 06:49:07 [INFO] - 20228 +2026-02-23 06:49:07 [CRITICAL] - 14875 +2026-02-23 06:49:07 [CRITICAL] - 31724 +2026-02-23 06:49:07 [DEBUG] - 32056 +2026-02-23 06:49:07 [WARNING] - 22707 +2026-02-23 06:49:07 [CRITICAL] - 10369 +2026-02-23 06:49:07 [INFO] - 24471 +2026-02-23 06:49:07 [WARNING] - 20539 +2026-02-23 06:49:07 [WARNING] - 32301 +2026-02-23 06:49:07 [ERROR] Disk full - 18536 +2026-02-23 06:49:07 [WARNING] - 29884 +2026-02-23 06:49:07 [DEBUG] - 20173 +2026-02-23 06:49:07 [ERROR] Invalid input - 3532 +2026-02-23 06:49:07 [CRITICAL] - 16666 +2026-02-23 06:49:07 [DEBUG] - 20985 +2026-02-23 06:49:07 [ERROR] Invalid input - 29876 +2026-02-23 06:49:07 [CRITICAL] - 30547 +2026-02-23 06:49:07 [CRITICAL] - 10395 +2026-02-23 06:49:07 [DEBUG] - 24023 +2026-02-23 06:49:07 [ERROR] Segmentation fault - 17847 +2026-02-23 06:49:07 [WARNING] - 20311 +2026-02-23 06:49:07 [INFO] - 31254 +2026-02-23 06:49:07 [DEBUG] - 2443 +2026-02-23 06:49:07 [INFO] - 30957 +2026-02-23 06:49:07 [CRITICAL] - 24405 +2026-02-23 06:49:07 [ERROR] Out of memory - 8421 +2026-02-23 06:49:07 [DEBUG] - 18216 +2026-02-23 06:49:07 [CRITICAL] - 10825 +2026-02-23 06:49:07 [CRITICAL] - 8739 +2026-02-23 06:49:07 [CRITICAL] - 28106 +2026-02-23 06:49:07 [INFO] - 8382 +2026-02-23 06:49:07 [WARNING] - 5533 +2026-02-23 06:49:07 [INFO] - 1984 +2026-02-23 06:49:07 [WARNING] - 19297 +2026-02-23 06:49:07 [WARNING] - 29214 +2026-02-23 06:49:07 [CRITICAL] - 18821 +2026-02-23 06:49:07 [WARNING] - 8274 +2026-02-23 06:49:07 [INFO] - 10624 +2026-02-23 06:49:07 [ERROR] Out of memory - 10387 +2026-02-23 06:49:07 [WARNING] - 25172 +2026-02-23 06:49:07 [ERROR] Out of memory - 25878 +2026-02-23 06:49:07 [INFO] - 18820 +2026-02-23 06:49:07 [CRITICAL] - 22908 +2026-02-23 06:49:07 [WARNING] - 20012 +2026-02-23 06:49:07 [INFO] - 19534 +2026-02-23 06:49:07 [INFO] - 28901 +2026-02-23 06:49:07 [INFO] - 5227 +2026-02-23 06:49:07 [INFO] - 15675 +2026-02-23 06:49:07 [DEBUG] - 27376 +2026-02-23 06:49:07 [ERROR] Failed to connect - 30036 +2026-02-23 06:49:07 [DEBUG] - 16103 +2026-02-23 06:49:07 [DEBUG] - 22459 +2026-02-23 06:49:07 [ERROR] Out of memory - 26119 +2026-02-23 06:49:07 [INFO] - 15291 +2026-02-23 06:49:07 [INFO] - 29602 +2026-02-23 06:49:07 [CRITICAL] - 31342 +2026-02-23 06:49:07 [ERROR] Out of memory - 23997 +2026-02-23 06:49:07 [INFO] - 22625 +2026-02-23 06:49:07 [INFO] - 1504 +2026-02-23 06:49:07 [CRITICAL] - 6525 +2026-02-23 06:49:07 [DEBUG] - 8869 +2026-02-23 06:49:07 [INFO] - 8347 +2026-02-23 06:49:07 [WARNING] - 15312 +2026-02-23 06:49:07 [ERROR] Failed to connect - 10213 +2026-02-23 06:49:07 [DEBUG] - 24612 +2026-02-23 06:49:07 [INFO] - 11066 +2026-02-23 06:49:07 [DEBUG] - 26867 +2026-02-23 06:49:07 [INFO] - 26118 +2026-02-23 06:49:07 [DEBUG] - 18661 +2026-02-23 06:49:07 [CRITICAL] - 32224 +2026-02-23 06:49:07 [DEBUG] - 30449 +2026-02-23 06:49:07 [ERROR] Failed to connect - 11083 +2026-02-23 06:49:07 [DEBUG] - 29327 +2026-02-23 06:49:07 [INFO] - 7008 +2026-02-23 06:49:07 [INFO] - 7489 +2026-02-23 06:49:07 [WARNING] - 13930 +2026-02-23 06:49:07 [WARNING] - 32736 +2026-02-23 06:49:07 [WARNING] - 5478 +2026-02-23 06:49:07 [DEBUG] - 4663 +2026-02-23 06:49:07 [ERROR] Segmentation fault - 13078 +2026-02-23 06:49:07 [INFO] - 20201 +2026-02-23 06:49:07 [ERROR] Disk full - 17936 +2026-02-23 06:49:07 [ERROR] Failed to connect - 15235 +2026-02-23 06:49:07 [ERROR] Disk full - 12666 +2026-02-23 06:49:07 [WARNING] - 18154 +2026-02-23 06:49:07 [INFO] - 3322 +2026-02-23 06:49:07 [DEBUG] - 30307 +2026-02-23 06:49:07 [CRITICAL] - 28172 +2026-02-23 06:49:07 [ERROR] Out of memory - 19306 +2026-02-23 06:49:07 [WARNING] - 2245 +2026-02-23 06:49:07 [DEBUG] - 4528 +2026-02-23 06:49:07 [WARNING] - 10122 +2026-02-23 06:49:07 [WARNING] - 726 +2026-02-23 06:49:07 [CRITICAL] - 14729 +2026-02-23 06:49:07 [WARNING] - 18700 +2026-02-23 06:49:07 [CRITICAL] - 13466 +2026-02-23 06:49:07 [WARNING] - 424 +2026-02-23 06:49:07 [WARNING] - 16626 +2026-02-23 06:49:07 [ERROR] Out of memory - 29172 +2026-02-23 06:49:07 [INFO] - 6727 +2026-02-23 06:49:07 [WARNING] - 16055 +2026-02-23 06:49:07 [DEBUG] - 29126 +2026-02-23 06:49:07 [INFO] - 29587 +2026-02-23 06:49:07 [DEBUG] - 22606 +2026-02-23 06:49:07 [WARNING] - 9321 +2026-02-23 06:49:07 [WARNING] - 4254 +2026-02-23 06:49:07 [DEBUG] - 21521 +2026-02-23 06:49:07 [DEBUG] - 32055 +2026-02-23 06:49:07 [CRITICAL] - 18326 +2026-02-23 06:49:07 [ERROR] Invalid input - 20780 +2026-02-23 06:49:07 [ERROR] Failed to connect - 11261 +2026-02-23 06:49:07 [WARNING] - 9340 +2026-02-23 06:49:07 [ERROR] Invalid input - 26062 +2026-02-23 06:49:07 [CRITICAL] - 19775 +2026-02-23 06:49:07 [INFO] - 22754 +2026-02-23 06:49:07 [WARNING] - 4121 +2026-02-23 06:49:07 [WARNING] - 17638 +2026-02-23 06:49:07 [INFO] - 177 +2026-02-23 06:49:07 [WARNING] - 16382 +2026-02-23 06:49:07 [INFO] - 32577 +2026-02-23 06:49:07 [DEBUG] - 12809 +2026-02-23 06:49:07 [WARNING] - 29458 +2026-02-23 06:49:07 [WARNING] - 17746 +2026-02-23 06:49:07 [CRITICAL] - 25464 +2026-02-23 06:49:07 [ERROR] Out of memory - 28204 +2026-02-23 06:49:07 [INFO] - 28838 +2026-02-23 06:49:07 [INFO] - 20990 +2026-02-23 06:49:07 [ERROR] Out of memory - 9160 +2026-02-23 06:49:07 [INFO] - 4494 +2026-02-23 06:49:07 [WARNING] - 29915 diff --git a/2026/day-20/scripts/archive/log_report_2026-02-23.txt b/2026/day-20/scripts/archive/log_report_2026-02-23.txt new file mode 100644 index 0000000000..009e88f50f --- /dev/null +++ b/2026/day-20/scripts/archive/log_report_2026-02-23.txt @@ -0,0 +1,2001 @@ +===== Log Analysis Report ===== +Date of Analysis: 2026-02-23 +Log File: /home/ubuntu/log_report_2026-02-23.txt +Total Lines Processed: 2001 +Total ERROR/Failed Count: 7 + +--- Top 5 Error Messages --- + 1 Total ERROR/Failed Count: 2042 + 1 --- Top 5 Error Messages --- + 1 2 [ERROR] Segmentation fault - 2866 + 1 2 [ERROR] Out of memory - 29380 + 1 2 [ERROR] Out of memory - 20090 + +--- Critical Events --- +15:1:2026-02-23 06:48:52 [CRITICAL] - 22197 +16:9:2026-02-23 06:48:52 [CRITICAL] - 2647 +17:20:2026-02-23 06:48:52 [CRITICAL] - 32012 +18:21:2026-02-23 06:48:52 [CRITICAL] - 8191 +19:22:2026-02-23 06:48:52 [CRITICAL] - 29978 +20:28:2026-02-23 06:48:52 [CRITICAL] - 17925 +21:29:2026-02-23 06:48:52 [CRITICAL] - 22595 +22:40:2026-02-23 06:48:52 [CRITICAL] - 12333 +23:42:2026-02-23 06:48:52 [CRITICAL] - 19850 +24:49:2026-02-23 06:48:52 [CRITICAL] - 28277 +25:50:2026-02-23 06:48:52 [CRITICAL] - 21773 +26:52:2026-02-23 06:48:52 [CRITICAL] - 14133 +27:60:2026-02-23 06:48:52 [CRITICAL] - 9247 +28:61:2026-02-23 06:48:52 [CRITICAL] - 18569 +29:62:2026-02-23 06:48:52 [CRITICAL] - 24871 +30:72:2026-02-23 06:48:52 [CRITICAL] - 11366 +31:73:2026-02-23 06:48:52 [CRITICAL] - 521 +32:76:2026-02-23 06:48:52 [CRITICAL] - 5726 +33:77:2026-02-23 06:48:52 [CRITICAL] - 24220 +34:78:2026-02-23 06:48:52 [CRITICAL] - 27448 +35:79:2026-02-23 06:48:52 [CRITICAL] - 1478 +36:89:2026-02-23 06:48:52 [CRITICAL] - 28522 +37:95:2026-02-23 06:48:52 [CRITICAL] - 5719 +38:97:2026-02-23 06:48:52 [CRITICAL] - 22287 +39:100:2026-02-23 06:48:52 [CRITICAL] - 1941 +40:103:2026-02-23 06:48:52 [CRITICAL] - 9770 +41:117:2026-02-23 06:48:52 [CRITICAL] - 4861 +42:131:2026-02-23 06:48:52 [CRITICAL] - 2928 +43:132:2026-02-23 06:48:52 [CRITICAL] - 1953 +44:141:2026-02-23 06:48:52 [CRITICAL] - 5731 +45:148:2026-02-23 06:48:52 [CRITICAL] - 25234 +46:152:2026-02-23 06:48:52 [CRITICAL] - 24265 +47:160:2026-02-23 06:48:52 [CRITICAL] - 20602 +48:161:2026-02-23 06:48:52 [CRITICAL] - 1072 +49:165:2026-02-23 06:48:52 [CRITICAL] - 3067 +50:167:2026-02-23 06:48:52 [CRITICAL] - 749 +51:176:2026-02-23 06:48:52 [CRITICAL] - 3322 +52:184:2026-02-23 06:48:52 [CRITICAL] - 12595 +53:191:2026-02-23 06:48:52 [CRITICAL] - 20379 +54:199:2026-02-23 06:48:52 [CRITICAL] - 4429 +55:200:2026-02-23 06:48:52 [CRITICAL] - 5460 +56:201:2026-02-23 06:48:52 [CRITICAL] - 16836 +57:208:2026-02-23 06:48:52 [CRITICAL] - 3595 +58:210:2026-02-23 06:48:52 [CRITICAL] - 19651 +59:215:2026-02-23 06:48:52 [CRITICAL] - 10514 +60:219:2026-02-23 06:48:52 [CRITICAL] - 3222 +61:225:2026-02-23 06:48:52 [CRITICAL] - 13636 +62:229:2026-02-23 06:48:52 [CRITICAL] - 12137 +63:240:2026-02-23 06:48:52 [CRITICAL] - 24431 +64:242:2026-02-23 06:48:52 [CRITICAL] - 6240 +65:243:2026-02-23 06:48:52 [CRITICAL] - 14965 +66:245:2026-02-23 06:48:52 [CRITICAL] - 19555 +67:252:2026-02-23 06:48:52 [CRITICAL] - 14214 +68:264:2026-02-23 06:48:52 [CRITICAL] - 10173 +69:268:2026-02-23 06:48:52 [CRITICAL] - 7038 +70:272:2026-02-23 06:48:52 [CRITICAL] - 9148 +71:292:2026-02-23 06:48:52 [CRITICAL] - 21173 +72:300:2026-02-23 06:48:52 [CRITICAL] - 30805 +73:314:2026-02-23 06:48:52 [CRITICAL] - 31996 +74:319:2026-02-23 06:48:52 [CRITICAL] - 30711 +75:322:2026-02-23 06:48:52 [CRITICAL] - 32074 +76:325:2026-02-23 06:48:52 [CRITICAL] - 13109 +77:330:2026-02-23 06:48:52 [CRITICAL] - 20745 +78:331:2026-02-23 06:48:52 [CRITICAL] - 21310 +79:344:2026-02-23 06:48:52 [CRITICAL] - 32368 +80:351:2026-02-23 06:48:52 [CRITICAL] - 25364 +81:357:2026-02-23 06:48:52 [CRITICAL] - 12378 +82:367:2026-02-23 06:48:52 [CRITICAL] - 27212 +83:369:2026-02-23 06:48:52 [CRITICAL] - 5075 +84:374:2026-02-23 06:48:52 [CRITICAL] - 21316 +85:377:2026-02-23 06:48:52 [CRITICAL] - 13485 +86:381:2026-02-23 06:48:52 [CRITICAL] - 10125 +87:382:2026-02-23 06:48:52 [CRITICAL] - 13110 +88:388:2026-02-23 06:48:52 [CRITICAL] - 17677 +89:390:2026-02-23 06:48:52 [CRITICAL] - 26113 +90:395:2026-02-23 06:48:52 [CRITICAL] - 13735 +91:400:2026-02-23 06:48:52 [CRITICAL] - 9208 +92:415:2026-02-23 06:48:52 [CRITICAL] - 17943 +93:416:2026-02-23 06:48:52 [CRITICAL] - 32599 +94:423:2026-02-23 06:48:52 [CRITICAL] - 5300 +95:424:2026-02-23 06:48:52 [CRITICAL] - 13776 +96:439:2026-02-23 06:48:52 [CRITICAL] - 17269 +97:449:2026-02-23 06:48:52 [CRITICAL] - 4390 +98:452:2026-02-23 06:48:52 [CRITICAL] - 24193 +99:458:2026-02-23 06:48:52 [CRITICAL] - 11833 +100:459:2026-02-23 06:48:52 [CRITICAL] - 8127 +101:464:2026-02-23 06:48:52 [CRITICAL] - 14518 +102:469:2026-02-23 06:48:52 [CRITICAL] - 6961 +103:472:2026-02-23 06:48:52 [CRITICAL] - 31727 +104:477:2026-02-23 06:48:52 [CRITICAL] - 20170 +105:479:2026-02-23 06:48:52 [CRITICAL] - 31486 +106:494:2026-02-23 06:48:52 [CRITICAL] - 15594 +107:500:2026-02-23 06:48:52 [CRITICAL] - 5367 +108:503:2026-02-23 06:48:52 [CRITICAL] - 23884 +109:509:2026-02-23 06:48:52 [CRITICAL] - 14175 +110:511:2026-02-23 06:48:52 [CRITICAL] - 19134 +111:516:2026-02-23 06:48:52 [CRITICAL] - 30535 +112:519:2026-02-23 06:48:52 [CRITICAL] - 11336 +113:522:2026-02-23 06:48:52 [CRITICAL] - 2104 +114:523:2026-02-23 06:48:52 [CRITICAL] - 425 +115:526:2026-02-23 06:48:52 [CRITICAL] - 22183 +116:527:2026-02-23 06:48:52 [CRITICAL] - 21444 +117:531:2026-02-23 06:48:52 [CRITICAL] - 1369 +118:532:2026-02-23 06:48:52 [CRITICAL] - 5559 +119:533:2026-02-23 06:48:52 [CRITICAL] - 1701 +120:540:2026-02-23 06:48:52 [CRITICAL] - 24731 +121:549:2026-02-23 06:48:53 [CRITICAL] - 26800 +122:556:2026-02-23 06:48:53 [CRITICAL] - 17634 +123:564:2026-02-23 06:48:53 [CRITICAL] - 22800 +124:573:2026-02-23 06:48:53 [CRITICAL] - 807 +125:574:2026-02-23 06:48:53 [CRITICAL] - 7345 +126:578:2026-02-23 06:48:53 [CRITICAL] - 12840 +127:582:2026-02-23 06:48:53 [CRITICAL] - 30125 +128:588:2026-02-23 06:48:53 [CRITICAL] - 7226 +129:605:2026-02-23 06:48:53 [CRITICAL] - 12340 +130:606:2026-02-23 06:48:53 [CRITICAL] - 8725 +131:607:2026-02-23 06:48:53 [CRITICAL] - 4314 +132:610:2026-02-23 06:48:53 [CRITICAL] - 21366 +133:614:2026-02-23 06:48:53 [CRITICAL] - 3236 +134:616:2026-02-23 06:48:53 [CRITICAL] - 22223 +135:617:2026-02-23 06:48:53 [CRITICAL] - 8438 +136:620:2026-02-23 06:48:53 [CRITICAL] - 22541 +137:623:2026-02-23 06:48:53 [CRITICAL] - 16046 +138:628:2026-02-23 06:48:53 [CRITICAL] - 22642 +139:637:2026-02-23 06:48:53 [CRITICAL] - 20465 +140:640:2026-02-23 06:48:53 [CRITICAL] - 5078 +141:643:2026-02-23 06:48:53 [CRITICAL] - 21788 +142:644:2026-02-23 06:48:53 [CRITICAL] - 6961 +143:654:2026-02-23 06:48:53 [CRITICAL] - 12943 +144:655:2026-02-23 06:48:53 [CRITICAL] - 12698 +145:658:2026-02-23 06:48:53 [CRITICAL] - 11053 +146:659:2026-02-23 06:48:53 [CRITICAL] - 16549 +147:660:2026-02-23 06:48:53 [CRITICAL] - 31132 +148:664:2026-02-23 06:48:53 [CRITICAL] - 21373 +149:668:2026-02-23 06:48:53 [CRITICAL] - 11818 +150:681:2026-02-23 06:48:53 [CRITICAL] - 21250 +151:684:2026-02-23 06:48:53 [CRITICAL] - 19841 +152:689:2026-02-23 06:48:53 [CRITICAL] - 20226 +153:691:2026-02-23 06:48:53 [CRITICAL] - 17714 +154:700:2026-02-23 06:48:53 [CRITICAL] - 21360 +155:705:2026-02-23 06:48:53 [CRITICAL] - 5417 +156:733:2026-02-23 06:48:53 [CRITICAL] - 1145 +157:739:2026-02-23 06:48:53 [CRITICAL] - 3886 +158:743:2026-02-23 06:48:53 [CRITICAL] - 28691 +159:750:2026-02-23 06:48:53 [CRITICAL] - 23431 +160:757:2026-02-23 06:48:53 [CRITICAL] - 4978 +161:766:2026-02-23 06:48:53 [CRITICAL] - 5963 +162:768:2026-02-23 06:48:53 [CRITICAL] - 3448 +163:769:2026-02-23 06:48:53 [CRITICAL] - 14322 +164:770:2026-02-23 06:48:53 [CRITICAL] - 12708 +165:775:2026-02-23 06:48:53 [CRITICAL] - 31493 +166:778:2026-02-23 06:48:53 [CRITICAL] - 29058 +167:782:2026-02-23 06:48:53 [CRITICAL] - 10001 +168:793:2026-02-23 06:48:53 [CRITICAL] - 13259 +169:805:2026-02-23 06:48:53 [CRITICAL] - 9253 +170:806:2026-02-23 06:48:53 [CRITICAL] - 19412 +171:810:2026-02-23 06:48:53 [CRITICAL] - 29951 +172:812:2026-02-23 06:48:53 [CRITICAL] - 5205 +173:814:2026-02-23 06:48:53 [CRITICAL] - 27530 +174:816:2026-02-23 06:48:53 [CRITICAL] - 29289 +175:817:2026-02-23 06:48:53 [CRITICAL] - 14162 +176:820:2026-02-23 06:48:53 [CRITICAL] - 7105 +177:827:2026-02-23 06:48:53 [CRITICAL] - 15561 +178:829:2026-02-23 06:48:53 [CRITICAL] - 21238 +179:831:2026-02-23 06:48:53 [CRITICAL] - 16667 +180:832:2026-02-23 06:48:53 [CRITICAL] - 22529 +181:836:2026-02-23 06:48:53 [CRITICAL] - 2723 +182:839:2026-02-23 06:48:53 [CRITICAL] - 13494 +183:853:2026-02-23 06:48:53 [CRITICAL] - 2404 +184:864:2026-02-23 06:48:53 [CRITICAL] - 14824 +185:866:2026-02-23 06:48:53 [CRITICAL] - 4627 +186:873:2026-02-23 06:48:53 [CRITICAL] - 10746 +187:875:2026-02-23 06:48:53 [CRITICAL] - 25722 +188:884:2026-02-23 06:48:53 [CRITICAL] - 9325 +189:886:2026-02-23 06:48:53 [CRITICAL] - 29568 +190:892:2026-02-23 06:48:53 [CRITICAL] - 4387 +191:897:2026-02-23 06:48:53 [CRITICAL] - 16902 +192:901:2026-02-23 06:48:53 [CRITICAL] - 3695 +193:903:2026-02-23 06:48:53 [CRITICAL] - 24506 +194:911:2026-02-23 06:48:53 [CRITICAL] - 23427 +195:925:2026-02-23 06:48:53 [CRITICAL] - 5201 +196:930:2026-02-23 06:48:53 [CRITICAL] - 9578 +197:933:2026-02-23 06:48:53 [CRITICAL] - 15071 +198:946:2026-02-23 06:48:53 [CRITICAL] - 20145 +199:949:2026-02-23 06:48:53 [CRITICAL] - 18765 +200:955:2026-02-23 06:48:53 [CRITICAL] - 22925 +201:962:2026-02-23 06:48:53 [CRITICAL] - 3850 +202:965:2026-02-23 06:48:53 [CRITICAL] - 10420 +203:969:2026-02-23 06:48:53 [CRITICAL] - 32685 +204:971:2026-02-23 06:48:53 [CRITICAL] - 10395 +205:973:2026-02-23 06:48:53 [CRITICAL] - 4980 +206:974:2026-02-23 06:48:53 [CRITICAL] - 86 +207:978:2026-02-23 06:48:53 [CRITICAL] - 30618 +208:984:2026-02-23 06:48:53 [CRITICAL] - 4080 +209:989:2026-02-23 06:48:53 [CRITICAL] - 6240 +210:994:2026-02-23 06:48:53 [CRITICAL] - 3088 +211:1005:2026-02-23 06:48:53 [CRITICAL] - 13777 +212:1012:2026-02-23 06:48:53 [CRITICAL] - 2086 +213:1016:2026-02-23 06:48:53 [CRITICAL] - 15417 +214:1019:2026-02-23 06:48:53 [CRITICAL] - 7767 +215:1028:2026-02-23 06:48:53 [CRITICAL] - 15204 +216:1031:2026-02-23 06:48:53 [CRITICAL] - 12462 +217:1036:2026-02-23 06:48:53 [CRITICAL] - 1655 +218:1044:2026-02-23 06:48:53 [CRITICAL] - 28505 +219:1060:2026-02-23 06:48:53 [CRITICAL] - 12425 +220:1069:2026-02-23 06:48:53 [CRITICAL] - 21103 +221:1075:2026-02-23 06:48:53 [CRITICAL] - 24730 +222:1081:2026-02-23 06:48:53 [CRITICAL] - 16219 +223:1086:2026-02-23 06:48:53 [CRITICAL] - 18627 +224:1087:2026-02-23 06:48:53 [CRITICAL] - 7419 +225:1088:2026-02-23 06:48:53 [CRITICAL] - 32205 +226:1094:2026-02-23 06:48:53 [CRITICAL] - 13682 +227:1100:2026-02-23 06:48:53 [CRITICAL] - 1984 +228:1108:2026-02-23 06:48:53 [CRITICAL] - 5097 +229:1111:2026-02-23 06:48:53 [CRITICAL] - 8675 +230:1116:2026-02-23 06:48:53 [CRITICAL] - 1763 +231:1118:2026-02-23 06:48:53 [CRITICAL] - 13857 +232:1119:2026-02-23 06:48:53 [CRITICAL] - 19895 +233:1121:2026-02-23 06:48:53 [CRITICAL] - 29051 +234:1122:2026-02-23 06:48:53 [CRITICAL] - 8314 +235:1125:2026-02-23 06:48:53 [CRITICAL] - 6357 +236:1130:2026-02-23 06:48:53 [CRITICAL] - 15817 +237:1134:2026-02-23 06:48:53 [CRITICAL] - 9395 +238:1135:2026-02-23 06:48:53 [CRITICAL] - 7016 +239:1141:2026-02-23 06:48:53 [CRITICAL] - 24350 +240:1155:2026-02-23 06:48:53 [CRITICAL] - 12149 +241:1160:2026-02-23 06:48:53 [CRITICAL] - 3467 +242:1164:2026-02-23 06:48:53 [CRITICAL] - 29484 +243:1167:2026-02-23 06:48:53 [CRITICAL] - 13731 +244:1168:2026-02-23 06:48:53 [CRITICAL] - 23788 +245:1187:2026-02-23 06:48:53 [CRITICAL] - 1962 +246:1192:2026-02-23 06:48:53 [CRITICAL] - 551 +247:1197:2026-02-23 06:48:53 [CRITICAL] - 18968 +248:1211:2026-02-23 06:48:53 [CRITICAL] - 17990 +249:1214:2026-02-23 06:48:53 [CRITICAL] - 8999 +250:1219:2026-02-23 06:48:53 [CRITICAL] - 31519 +251:1227:2026-02-23 06:48:53 [CRITICAL] - 7915 +252:1230:2026-02-23 06:48:53 [CRITICAL] - 27873 +253:1234:2026-02-23 06:48:53 [CRITICAL] - 23160 +254:1235:2026-02-23 06:48:53 [CRITICAL] - 13785 +255:1236:2026-02-23 06:48:53 [CRITICAL] - 24830 +256:1237:2026-02-23 06:48:53 [CRITICAL] - 23858 +257:1260:2026-02-23 06:48:53 [CRITICAL] - 1842 +258:1262:2026-02-23 06:48:53 [CRITICAL] - 9336 +259:1266:2026-02-23 06:48:53 [CRITICAL] - 24640 +260:1267:2026-02-23 06:48:53 [CRITICAL] - 28524 +261:1269:2026-02-23 06:48:53 [CRITICAL] - 20515 +262:1274:2026-02-23 06:48:53 [CRITICAL] - 21995 +263:1276:2026-02-23 06:48:53 [CRITICAL] - 12254 +264:1284:2026-02-23 06:48:53 [CRITICAL] - 21129 +265:1287:2026-02-23 06:48:53 [CRITICAL] - 26927 +266:1303:2026-02-23 06:48:54 [CRITICAL] - 20496 +267:1307:2026-02-23 06:48:54 [CRITICAL] - 1187 +268:1328:2026-02-23 06:48:54 [CRITICAL] - 18679 +269:1332:2026-02-23 06:48:54 [CRITICAL] - 18193 +270:1336:2026-02-23 06:48:54 [CRITICAL] - 14389 +271:1340:2026-02-23 06:48:54 [CRITICAL] - 7393 +272:1341:2026-02-23 06:48:54 [CRITICAL] - 1993 +273:1348:2026-02-23 06:48:54 [CRITICAL] - 8645 +274:1350:2026-02-23 06:48:54 [CRITICAL] - 6658 +275:1353:2026-02-23 06:48:54 [CRITICAL] - 22291 +276:1356:2026-02-23 06:48:54 [CRITICAL] - 8960 +277:1360:2026-02-23 06:48:54 [CRITICAL] - 10442 +278:1366:2026-02-23 06:48:54 [CRITICAL] - 30945 +279:1368:2026-02-23 06:48:54 [CRITICAL] - 4288 +280:1376:2026-02-23 06:48:54 [CRITICAL] - 3060 +281:1381:2026-02-23 06:48:54 [CRITICAL] - 20855 +282:1387:2026-02-23 06:48:54 [CRITICAL] - 20137 +283:1407:2026-02-23 06:48:54 [CRITICAL] - 31065 +284:1410:2026-02-23 06:48:54 [CRITICAL] - 24443 +285:1412:2026-02-23 06:48:54 [CRITICAL] - 15597 +286:1414:2026-02-23 06:48:54 [CRITICAL] - 21646 +287:1415:2026-02-23 06:48:54 [CRITICAL] - 27550 +288:1416:2026-02-23 06:48:54 [CRITICAL] - 5660 +289:1417:2026-02-23 06:48:54 [CRITICAL] - 17448 +290:1423:2026-02-23 06:48:54 [CRITICAL] - 19106 +291:1425:2026-02-23 06:48:54 [CRITICAL] - 8755 +292:1428:2026-02-23 06:48:54 [CRITICAL] - 2050 +293:1433:2026-02-23 06:48:54 [CRITICAL] - 16219 +294:1437:2026-02-23 06:48:54 [CRITICAL] - 650 +295:1441:2026-02-23 06:48:54 [CRITICAL] - 26101 +296:1442:2026-02-23 06:48:54 [CRITICAL] - 11103 +297:1451:2026-02-23 06:48:54 [CRITICAL] - 15441 +298:1466:2026-02-23 06:48:54 [CRITICAL] - 16577 +299:1476:2026-02-23 06:48:54 [CRITICAL] - 5508 +300:1477:2026-02-23 06:48:54 [CRITICAL] - 10703 +301:1486:2026-02-23 06:48:54 [CRITICAL] - 18218 +302:1489:2026-02-23 06:48:54 [CRITICAL] - 20467 +303:1491:2026-02-23 06:48:54 [CRITICAL] - 4429 +304:1492:2026-02-23 06:48:54 [CRITICAL] - 17344 +305:1497:2026-02-23 06:48:54 [CRITICAL] - 10510 +306:1498:2026-02-23 06:48:54 [CRITICAL] - 26750 +307:1504:2026-02-23 06:48:54 [CRITICAL] - 18356 +308:1505:2026-02-23 06:48:54 [CRITICAL] - 17324 +309:1506:2026-02-23 06:48:54 [CRITICAL] - 25418 +310:1517:2026-02-23 06:48:54 [CRITICAL] - 3679 +311:1519:2026-02-23 06:48:54 [CRITICAL] - 8340 +312:1538:2026-02-23 06:48:54 [CRITICAL] - 28589 +313:1540:2026-02-23 06:48:54 [CRITICAL] - 18873 +314:1546:2026-02-23 06:48:54 [CRITICAL] - 29398 +315:1552:2026-02-23 06:48:54 [CRITICAL] - 12062 +316:1553:2026-02-23 06:48:54 [CRITICAL] - 11261 +317:1556:2026-02-23 06:48:54 [CRITICAL] - 17670 +318:1562:2026-02-23 06:48:54 [CRITICAL] - 30366 +319:1570:2026-02-23 06:48:54 [CRITICAL] - 24263 +320:1574:2026-02-23 06:48:54 [CRITICAL] - 10399 +321:1577:2026-02-23 06:48:54 [CRITICAL] - 4055 +322:1590:2026-02-23 06:48:54 [CRITICAL] - 17499 +323:1592:2026-02-23 06:48:54 [CRITICAL] - 27422 +324:1595:2026-02-23 06:48:54 [CRITICAL] - 17895 +325:1597:2026-02-23 06:48:54 [CRITICAL] - 543 +326:1604:2026-02-23 06:48:54 [CRITICAL] - 28564 +327:1608:2026-02-23 06:48:54 [CRITICAL] - 15513 +328:1609:2026-02-23 06:48:54 [CRITICAL] - 22401 +329:1612:2026-02-23 06:48:54 [CRITICAL] - 22931 +330:1622:2026-02-23 06:48:54 [CRITICAL] - 12495 +331:1623:2026-02-23 06:48:54 [CRITICAL] - 18582 +332:1628:2026-02-23 06:48:54 [CRITICAL] - 25628 +333:1631:2026-02-23 06:48:54 [CRITICAL] - 7448 +334:1637:2026-02-23 06:48:54 [CRITICAL] - 4650 +335:1640:2026-02-23 06:48:54 [CRITICAL] - 22954 +336:1643:2026-02-23 06:48:54 [CRITICAL] - 156 +337:1648:2026-02-23 06:48:54 [CRITICAL] - 21842 +338:1649:2026-02-23 06:48:54 [CRITICAL] - 12330 +339:1651:2026-02-23 06:48:54 [CRITICAL] - 2575 +340:1659:2026-02-23 06:48:54 [CRITICAL] - 21596 +341:1665:2026-02-23 06:48:54 [CRITICAL] - 25227 +342:1666:2026-02-23 06:48:54 [CRITICAL] - 30437 +343:1674:2026-02-23 06:48:54 [CRITICAL] - 11843 +344:1681:2026-02-23 06:48:54 [CRITICAL] - 19506 +345:1683:2026-02-23 06:48:54 [CRITICAL] - 18894 +346:1689:2026-02-23 06:48:54 [CRITICAL] - 22323 +347:1698:2026-02-23 06:48:54 [CRITICAL] - 12600 +348:1699:2026-02-23 06:48:54 [CRITICAL] - 28941 +349:1706:2026-02-23 06:48:54 [CRITICAL] - 30050 +350:1709:2026-02-23 06:48:54 [CRITICAL] - 27203 +351:1714:2026-02-23 06:48:54 [CRITICAL] - 531 +352:1729:2026-02-23 06:48:54 [CRITICAL] - 21066 +353:1744:2026-02-23 06:48:54 [CRITICAL] - 24736 +354:1750:2026-02-23 06:48:54 [CRITICAL] - 1841 +355:1756:2026-02-23 06:48:54 [CRITICAL] - 29147 +356:1770:2026-02-23 06:48:54 [CRITICAL] - 27171 +357:1780:2026-02-23 06:48:54 [CRITICAL] - 2585 +358:1782:2026-02-23 06:48:54 [CRITICAL] - 24358 +359:1785:2026-02-23 06:48:54 [CRITICAL] - 10042 +360:1788:2026-02-23 06:48:54 [CRITICAL] - 14363 +361:1791:2026-02-23 06:48:54 [CRITICAL] - 26720 +362:1799:2026-02-23 06:48:54 [CRITICAL] - 25255 +363:1808:2026-02-23 06:48:54 [CRITICAL] - 8331 +364:1811:2026-02-23 06:48:54 [CRITICAL] - 1895 +365:1823:2026-02-23 06:48:54 [CRITICAL] - 24918 +366:1824:2026-02-23 06:48:54 [CRITICAL] - 32723 +367:1828:2026-02-23 06:48:54 [CRITICAL] - 15441 +368:1837:2026-02-23 06:48:54 [CRITICAL] - 485 +369:1840:2026-02-23 06:48:54 [CRITICAL] - 9821 +370:1850:2026-02-23 06:48:54 [CRITICAL] - 18654 +371:1857:2026-02-23 06:48:54 [CRITICAL] - 22824 +372:1859:2026-02-23 06:48:54 [CRITICAL] - 22722 +373:1862:2026-02-23 06:48:54 [CRITICAL] - 24142 +374:1867:2026-02-23 06:48:54 [CRITICAL] - 32436 +375:1880:2026-02-23 06:48:54 [CRITICAL] - 29023 +376:1896:2026-02-23 06:48:54 [CRITICAL] - 21253 +377:1898:2026-02-23 06:48:54 [CRITICAL] - 29891 +378:1903:2026-02-23 06:48:54 [CRITICAL] - 29606 +379:1911:2026-02-23 06:48:54 [CRITICAL] - 5625 +380:1912:2026-02-23 06:48:54 [CRITICAL] - 30231 +381:1915:2026-02-23 06:48:54 [CRITICAL] - 10516 +382:1919:2026-02-23 06:48:54 [CRITICAL] - 15818 +383:1926:2026-02-23 06:48:54 [CRITICAL] - 303 +384:1931:2026-02-23 06:48:54 [CRITICAL] - 10529 +385:1935:2026-02-23 06:48:54 [CRITICAL] - 5869 +386:1937:2026-02-23 06:48:54 [CRITICAL] - 29192 +387:1940:2026-02-23 06:48:54 [CRITICAL] - 16705 +388:1954:2026-02-23 06:48:54 [CRITICAL] - 29387 +389:1956:2026-02-23 06:48:54 [CRITICAL] - 13035 +390:1959:2026-02-23 06:48:54 [CRITICAL] - 18782 +391:1963:2026-02-23 06:48:54 [CRITICAL] - 10186 +392:1966:2026-02-23 06:48:54 [CRITICAL] - 3135 +393:1978:2026-02-23 06:48:54 [CRITICAL] - 10367 +394:1980:2026-02-23 06:48:54 [CRITICAL] - 19164 +395:1994:2026-02-23 06:48:54 [CRITICAL] - 1372 +396:2007:2026-02-23 06:48:54 [CRITICAL] - 10178 +397:2013:2026-02-23 06:48:54 [CRITICAL] - 14487 +398:2016:2026-02-23 06:48:54 [CRITICAL] - 12332 +399:2017:2026-02-23 06:48:54 [CRITICAL] - 22192 +400:2018:2026-02-23 06:48:54 [CRITICAL] - 4607 +401:2031:2026-02-23 06:48:54 [CRITICAL] - 9230 +402:2032:2026-02-23 06:48:54 [CRITICAL] - 7182 +403:2042:2026-02-23 06:48:54 [CRITICAL] - 13398 +404:2043:2026-02-23 06:48:54 [CRITICAL] - 8458 +405:2044:2026-02-23 06:48:54 [CRITICAL] - 7474 +406:2059:2026-02-23 06:48:55 [CRITICAL] - 10594 +407:2072:2026-02-23 06:48:55 [CRITICAL] - 22822 +408:2074:2026-02-23 06:48:55 [CRITICAL] - 6505 +409:2079:2026-02-23 06:48:55 [CRITICAL] - 27882 +410:2096:2026-02-23 06:48:55 [CRITICAL] - 9210 +411:2098:2026-02-23 06:48:55 [CRITICAL] - 5756 +412:2103:2026-02-23 06:48:55 [CRITICAL] - 19030 +413:2104:2026-02-23 06:48:55 [CRITICAL] - 29679 +414:2109:2026-02-23 06:48:55 [CRITICAL] - 3123 +415:2112:2026-02-23 06:48:55 [CRITICAL] - 16699 +416:2132:2026-02-23 06:48:55 [CRITICAL] - 32433 +417:2135:2026-02-23 06:48:55 [CRITICAL] - 24840 +418:2140:2026-02-23 06:48:55 [CRITICAL] - 16969 +419:2141:2026-02-23 06:48:55 [CRITICAL] - 31032 +420:2144:2026-02-23 06:48:55 [CRITICAL] - 8953 +421:2146:2026-02-23 06:48:55 [CRITICAL] - 14272 +422:2149:2026-02-23 06:48:55 [CRITICAL] - 11629 +423:2152:2026-02-23 06:48:55 [CRITICAL] - 14414 +424:2162:2026-02-23 06:48:55 [CRITICAL] - 14401 +425:2165:2026-02-23 06:48:55 [CRITICAL] - 4099 +426:2167:2026-02-23 06:48:55 [CRITICAL] - 3656 +427:2168:2026-02-23 06:48:55 [CRITICAL] - 15026 +428:2170:2026-02-23 06:48:55 [CRITICAL] - 2922 +429:2173:2026-02-23 06:48:55 [CRITICAL] - 28336 +430:2177:2026-02-23 06:48:55 [CRITICAL] - 29117 +431:2181:2026-02-23 06:48:55 [CRITICAL] - 24273 +432:2183:2026-02-23 06:48:55 [CRITICAL] - 25774 +433:2185:2026-02-23 06:48:55 [CRITICAL] - 30010 +434:2193:2026-02-23 06:48:55 [CRITICAL] - 31449 +435:2222:2026-02-23 06:48:55 [CRITICAL] - 9517 +436:2226:2026-02-23 06:48:55 [CRITICAL] - 16755 +437:2227:2026-02-23 06:48:55 [CRITICAL] - 29751 +438:2228:2026-02-23 06:48:55 [CRITICAL] - 16545 +439:2232:2026-02-23 06:48:55 [CRITICAL] - 22373 +440:2233:2026-02-23 06:48:55 [CRITICAL] - 30446 +441:2234:2026-02-23 06:48:55 [CRITICAL] - 28494 +442:2235:2026-02-23 06:48:55 [CRITICAL] - 17107 +443:2251:2026-02-23 06:48:55 [CRITICAL] - 20605 +444:2257:2026-02-23 06:48:55 [CRITICAL] - 19971 +445:2264:2026-02-23 06:48:55 [CRITICAL] - 10432 +446:2265:2026-02-23 06:48:55 [CRITICAL] - 12159 +447:2267:2026-02-23 06:48:55 [CRITICAL] - 20374 +448:2269:2026-02-23 06:48:55 [CRITICAL] - 8523 +449:2281:2026-02-23 06:48:55 [CRITICAL] - 6936 +450:2284:2026-02-23 06:48:55 [CRITICAL] - 10347 +451:2292:2026-02-23 06:48:55 [CRITICAL] - 26131 +452:2294:2026-02-23 06:48:55 [CRITICAL] - 18573 +453:2295:2026-02-23 06:48:55 [CRITICAL] - 19157 +454:2309:2026-02-23 06:48:55 [CRITICAL] - 15921 +455:2321:2026-02-23 06:48:55 [CRITICAL] - 14117 +456:2331:2026-02-23 06:48:55 [CRITICAL] - 1188 +457:2342:2026-02-23 06:48:55 [CRITICAL] - 6161 +458:2348:2026-02-23 06:48:55 [CRITICAL] - 7210 +459:2363:2026-02-23 06:48:55 [CRITICAL] - 554 +460:2368:2026-02-23 06:48:55 [CRITICAL] - 19262 +461:2386:2026-02-23 06:48:55 [CRITICAL] - 29347 +462:2400:2026-02-23 06:48:55 [CRITICAL] - 14836 +463:2404:2026-02-23 06:48:55 [CRITICAL] - 1270 +464:2405:2026-02-23 06:48:55 [CRITICAL] - 31155 +465:2407:2026-02-23 06:48:55 [CRITICAL] - 7754 +466:2408:2026-02-23 06:48:55 [CRITICAL] - 391 +467:2412:2026-02-23 06:48:55 [CRITICAL] - 17324 +468:2414:2026-02-23 06:48:55 [CRITICAL] - 364 +469:2419:2026-02-23 06:48:55 [CRITICAL] - 23145 +470:2423:2026-02-23 06:48:55 [CRITICAL] - 24431 +471:2434:2026-02-23 06:48:55 [CRITICAL] - 27361 +472:2435:2026-02-23 06:48:55 [CRITICAL] - 25028 +473:2436:2026-02-23 06:48:55 [CRITICAL] - 28782 +474:2437:2026-02-23 06:48:55 [CRITICAL] - 14435 +475:2444:2026-02-23 06:48:55 [CRITICAL] - 1055 +476:2449:2026-02-23 06:48:55 [CRITICAL] - 8815 +477:2450:2026-02-23 06:48:55 [CRITICAL] - 449 +478:2457:2026-02-23 06:48:55 [CRITICAL] - 16616 +479:2460:2026-02-23 06:48:55 [CRITICAL] - 4160 +480:2462:2026-02-23 06:48:55 [CRITICAL] - 9445 +481:2464:2026-02-23 06:48:55 [CRITICAL] - 12553 +482:2481:2026-02-23 06:48:55 [CRITICAL] - 30893 +483:2511:2026-02-23 06:48:55 [CRITICAL] - 15805 +484:2518:2026-02-23 06:48:55 [CRITICAL] - 26908 +485:2528:2026-02-23 06:48:55 [CRITICAL] - 21399 +486:2529:2026-02-23 06:48:55 [CRITICAL] - 4521 +487:2532:2026-02-23 06:48:55 [CRITICAL] - 8608 +488:2535:2026-02-23 06:48:55 [CRITICAL] - 23106 +489:2540:2026-02-23 06:48:55 [CRITICAL] - 1266 +490:2554:2026-02-23 06:48:55 [CRITICAL] - 18546 +491:2562:2026-02-23 06:48:55 [CRITICAL] - 18003 +492:2565:2026-02-23 06:48:55 [CRITICAL] - 27712 +493:2569:2026-02-23 06:48:55 [CRITICAL] - 5449 +494:2570:2026-02-23 06:48:55 [CRITICAL] - 9391 +495:2579:2026-02-23 06:48:55 [CRITICAL] - 23128 +496:2593:2026-02-23 06:48:55 [CRITICAL] - 19881 +497:2595:2026-02-23 06:48:55 [CRITICAL] - 21842 +498:2603:2026-02-23 06:48:55 [CRITICAL] - 922 +499:2607:2026-02-23 06:48:55 [CRITICAL] - 7339 +500:2615:2026-02-23 06:48:55 [CRITICAL] - 31670 +501:2623:2026-02-23 06:48:55 [CRITICAL] - 30774 +502:2627:2026-02-23 06:48:55 [CRITICAL] - 17814 +503:2634:2026-02-23 06:48:55 [CRITICAL] - 15116 +504:2637:2026-02-23 06:48:55 [CRITICAL] - 9053 +505:2643:2026-02-23 06:48:55 [CRITICAL] - 5897 +506:2644:2026-02-23 06:48:55 [CRITICAL] - 22638 +507:2645:2026-02-23 06:48:55 [CRITICAL] - 20588 +508:2652:2026-02-23 06:48:55 [CRITICAL] - 23138 +509:2653:2026-02-23 06:48:55 [CRITICAL] - 22766 +510:2655:2026-02-23 06:48:55 [CRITICAL] - 18658 +511:2658:2026-02-23 06:48:55 [CRITICAL] - 22670 +512:2659:2026-02-23 06:48:55 [CRITICAL] - 19653 +513:2664:2026-02-23 06:48:55 [CRITICAL] - 28148 +514:2668:2026-02-23 06:48:55 [CRITICAL] - 13643 +515:2670:2026-02-23 06:48:55 [CRITICAL] - 11937 +516:2671:2026-02-23 06:48:55 [CRITICAL] - 13986 +517:2672:2026-02-23 06:48:55 [CRITICAL] - 17264 +518:2673:2026-02-23 06:48:55 [CRITICAL] - 24835 +519:2682:2026-02-23 06:48:55 [CRITICAL] - 18483 +520:2687:2026-02-23 06:48:55 [CRITICAL] - 7821 +521:2691:2026-02-23 06:48:55 [CRITICAL] - 5990 +522:2692:2026-02-23 06:48:55 [CRITICAL] - 20927 +523:2693:2026-02-23 06:48:55 [CRITICAL] - 7271 +524:2694:2026-02-23 06:48:55 [CRITICAL] - 10627 +525:2702:2026-02-23 06:48:55 [CRITICAL] - 18055 +526:2703:2026-02-23 06:48:55 [CRITICAL] - 25073 +527:2706:2026-02-23 06:48:55 [CRITICAL] - 30335 +528:2712:2026-02-23 06:48:55 [CRITICAL] - 2339 +529:2713:2026-02-23 06:48:55 [CRITICAL] - 9815 +530:2717:2026-02-23 06:48:55 [CRITICAL] - 16202 +531:2718:2026-02-23 06:48:55 [CRITICAL] - 28261 +532:2719:2026-02-23 06:48:55 [CRITICAL] - 2834 +533:2728:2026-02-23 06:48:55 [CRITICAL] - 2439 +534:2729:2026-02-23 06:48:55 [CRITICAL] - 21152 +535:2734:2026-02-23 06:48:55 [CRITICAL] - 24820 +536:2740:2026-02-23 06:48:55 [CRITICAL] - 26130 +537:2744:2026-02-23 06:48:55 [CRITICAL] - 29267 +538:2749:2026-02-23 06:48:55 [CRITICAL] - 24247 +539:2752:2026-02-23 06:48:55 [CRITICAL] - 5684 +540:2755:2026-02-23 06:48:55 [CRITICAL] - 9856 +541:2759:2026-02-23 06:48:55 [CRITICAL] - 13103 +542:2760:2026-02-23 06:48:55 [CRITICAL] - 23402 +543:2762:2026-02-23 06:48:55 [CRITICAL] - 918 +544:2763:2026-02-23 06:48:55 [CRITICAL] - 31210 +545:2765:2026-02-23 06:48:55 [CRITICAL] - 5020 +546:2778:2026-02-23 06:48:55 [CRITICAL] - 29005 +547:2780:2026-02-23 06:48:55 [CRITICAL] - 20074 +548:2790:2026-02-23 06:48:56 [CRITICAL] - 13231 +549:2794:2026-02-23 06:48:56 [CRITICAL] - 27750 +550:2795:2026-02-23 06:48:56 [CRITICAL] - 2979 +551:2797:2026-02-23 06:48:56 [CRITICAL] - 17769 +552:2802:2026-02-23 06:48:56 [CRITICAL] - 28646 +553:2803:2026-02-23 06:48:56 [CRITICAL] - 20296 +554:2820:2026-02-23 06:48:56 [CRITICAL] - 25890 +555:2824:2026-02-23 06:48:56 [CRITICAL] - 19553 +556:2841:2026-02-23 06:48:56 [CRITICAL] - 20211 +557:2843:2026-02-23 06:48:56 [CRITICAL] - 7549 +558:2844:2026-02-23 06:48:56 [CRITICAL] - 21813 +559:2846:2026-02-23 06:48:56 [CRITICAL] - 1595 +560:2852:2026-02-23 06:48:56 [CRITICAL] - 13759 +561:2853:2026-02-23 06:48:56 [CRITICAL] - 9252 +562:2856:2026-02-23 06:48:56 [CRITICAL] - 30988 +563:2868:2026-02-23 06:48:56 [CRITICAL] - 26484 +564:2869:2026-02-23 06:48:56 [CRITICAL] - 29813 +565:2871:2026-02-23 06:48:56 [CRITICAL] - 18942 +566:2880:2026-02-23 06:48:56 [CRITICAL] - 13402 +567:2885:2026-02-23 06:48:56 [CRITICAL] - 10319 +568:2887:2026-02-23 06:48:56 [CRITICAL] - 26300 +569:2898:2026-02-23 06:48:56 [CRITICAL] - 2865 +570:2901:2026-02-23 06:48:56 [CRITICAL] - 15247 +571:2904:2026-02-23 06:48:56 [CRITICAL] - 21496 +572:2911:2026-02-23 06:48:56 [CRITICAL] - 5105 +573:2914:2026-02-23 06:48:56 [CRITICAL] - 876 +574:2916:2026-02-23 06:48:56 [CRITICAL] - 9256 +575:2919:2026-02-23 06:48:56 [CRITICAL] - 11973 +576:2923:2026-02-23 06:48:56 [CRITICAL] - 17935 +577:2937:2026-02-23 06:48:56 [CRITICAL] - 16674 +578:2938:2026-02-23 06:48:56 [CRITICAL] - 28688 +579:2941:2026-02-23 06:48:56 [CRITICAL] - 6750 +580:2942:2026-02-23 06:48:56 [CRITICAL] - 210 +581:2947:2026-02-23 06:48:56 [CRITICAL] - 3358 +582:2950:2026-02-23 06:48:56 [CRITICAL] - 13241 +583:2952:2026-02-23 06:48:56 [CRITICAL] - 351 +584:2961:2026-02-23 06:48:56 [CRITICAL] - 16530 +585:2968:2026-02-23 06:48:56 [CRITICAL] - 21980 +586:2976:2026-02-23 06:48:56 [CRITICAL] - 7319 +587:2984:2026-02-23 06:48:56 [CRITICAL] - 27846 +588:2985:2026-02-23 06:48:56 [CRITICAL] - 3146 +589:2992:2026-02-23 06:48:56 [CRITICAL] - 22561 +590:2996:2026-02-23 06:48:56 [CRITICAL] - 11222 +591:3002:2026-02-23 06:48:56 [CRITICAL] - 15236 +592:3003:2026-02-23 06:48:56 [CRITICAL] - 22922 +593:3018:2026-02-23 06:48:56 [CRITICAL] - 9222 +594:3026:2026-02-23 06:48:56 [CRITICAL] - 23241 +595:3028:2026-02-23 06:48:56 [CRITICAL] - 13597 +596:3033:2026-02-23 06:48:56 [CRITICAL] - 28126 +597:3039:2026-02-23 06:48:56 [CRITICAL] - 4533 +598:3040:2026-02-23 06:48:56 [CRITICAL] - 7908 +599:3047:2026-02-23 06:48:56 [CRITICAL] - 29257 +600:3050:2026-02-23 06:48:56 [CRITICAL] - 26919 +601:3052:2026-02-23 06:48:56 [CRITICAL] - 3358 +602:3056:2026-02-23 06:48:56 [CRITICAL] - 17612 +603:3061:2026-02-23 06:48:56 [CRITICAL] - 28840 +604:3062:2026-02-23 06:48:56 [CRITICAL] - 3066 +605:3064:2026-02-23 06:48:56 [CRITICAL] - 25806 +606:3068:2026-02-23 06:48:56 [CRITICAL] - 28339 +607:3091:2026-02-23 06:48:56 [CRITICAL] - 8346 +608:3099:2026-02-23 06:48:56 [CRITICAL] - 6450 +609:3100:2026-02-23 06:48:56 [CRITICAL] - 12299 +610:3105:2026-02-23 06:48:56 [CRITICAL] - 11501 +611:3110:2026-02-23 06:48:56 [CRITICAL] - 30752 +612:3117:2026-02-23 06:48:56 [CRITICAL] - 26570 +613:3125:2026-02-23 06:48:56 [CRITICAL] - 4335 +614:3130:2026-02-23 06:48:56 [CRITICAL] - 24309 +615:3131:2026-02-23 06:48:56 [CRITICAL] - 21494 +616:3143:2026-02-23 06:48:56 [CRITICAL] - 1763 +617:3145:2026-02-23 06:48:56 [CRITICAL] - 25100 +618:3147:2026-02-23 06:48:56 [CRITICAL] - 23755 +619:3151:2026-02-23 06:48:56 [CRITICAL] - 9867 +620:3154:2026-02-23 06:48:56 [CRITICAL] - 29280 +621:3158:2026-02-23 06:48:56 [CRITICAL] - 12341 +622:3159:2026-02-23 06:48:56 [CRITICAL] - 10766 +623:3170:2026-02-23 06:48:56 [CRITICAL] - 17826 +624:3174:2026-02-23 06:48:56 [CRITICAL] - 31327 +625:3190:2026-02-23 06:48:56 [CRITICAL] - 29897 +626:3203:2026-02-23 06:48:56 [CRITICAL] - 52 +627:3211:2026-02-23 06:48:56 [CRITICAL] - 19379 +628:3217:2026-02-23 06:48:56 [CRITICAL] - 26319 +629:3223:2026-02-23 06:48:56 [CRITICAL] - 20723 +630:3224:2026-02-23 06:48:56 [CRITICAL] - 26600 +631:3230:2026-02-23 06:48:56 [CRITICAL] - 2553 +632:3236:2026-02-23 06:48:56 [CRITICAL] - 22798 +633:3241:2026-02-23 06:48:56 [CRITICAL] - 25381 +634:3242:2026-02-23 06:48:56 [CRITICAL] - 9004 +635:3245:2026-02-23 06:48:56 [CRITICAL] - 10316 +636:3249:2026-02-23 06:48:56 [CRITICAL] - 18653 +637:3252:2026-02-23 06:48:56 [CRITICAL] - 31670 +638:3253:2026-02-23 06:48:56 [CRITICAL] - 18820 +639:3255:2026-02-23 06:48:56 [CRITICAL] - 24442 +640:3262:2026-02-23 06:48:56 [CRITICAL] - 2378 +641:3266:2026-02-23 06:48:56 [CRITICAL] - 19853 +642:3269:2026-02-23 06:48:56 [CRITICAL] - 2986 +643:3272:2026-02-23 06:48:56 [CRITICAL] - 11667 +644:3274:2026-02-23 06:48:56 [CRITICAL] - 27308 +645:3276:2026-02-23 06:48:56 [CRITICAL] - 24736 +646:3280:2026-02-23 06:48:56 [CRITICAL] - 2016 +647:3286:2026-02-23 06:48:56 [CRITICAL] - 2884 +648:3288:2026-02-23 06:48:56 [CRITICAL] - 25817 +649:3289:2026-02-23 06:48:56 [CRITICAL] - 21500 +650:3293:2026-02-23 06:48:56 [CRITICAL] - 31117 +651:3295:2026-02-23 06:48:56 [CRITICAL] - 1228 +652:3299:2026-02-23 06:48:56 [CRITICAL] - 28157 +653:3305:2026-02-23 06:48:56 [CRITICAL] - 17459 +654:3306:2026-02-23 06:48:56 [CRITICAL] - 30601 +655:3308:2026-02-23 06:48:56 [CRITICAL] - 13384 +656:3312:2026-02-23 06:48:56 [CRITICAL] - 12629 +657:3313:2026-02-23 06:48:56 [CRITICAL] - 31141 +658:3319:2026-02-23 06:48:56 [CRITICAL] - 19718 +659:3324:2026-02-23 06:48:56 [CRITICAL] - 10662 +660:3326:2026-02-23 06:48:56 [CRITICAL] - 25999 +661:3327:2026-02-23 06:48:56 [CRITICAL] - 19931 +662:3328:2026-02-23 06:48:56 [CRITICAL] - 16906 +663:3338:2026-02-23 06:48:56 [CRITICAL] - 11244 +664:3350:2026-02-23 06:48:56 [CRITICAL] - 14638 +665:3353:2026-02-23 06:48:56 [CRITICAL] - 10607 +666:3360:2026-02-23 06:48:56 [CRITICAL] - 30428 +667:3364:2026-02-23 06:48:56 [CRITICAL] - 16095 +668:3372:2026-02-23 06:48:56 [CRITICAL] - 1070 +669:3374:2026-02-23 06:48:56 [CRITICAL] - 14509 +670:3376:2026-02-23 06:48:56 [CRITICAL] - 8217 +671:3385:2026-02-23 06:48:56 [CRITICAL] - 31327 +672:3390:2026-02-23 06:48:56 [CRITICAL] - 27274 +673:3391:2026-02-23 06:48:56 [CRITICAL] - 21463 +674:3393:2026-02-23 06:48:56 [CRITICAL] - 8024 +675:3398:2026-02-23 06:48:56 [CRITICAL] - 17818 +676:3399:2026-02-23 06:48:56 [CRITICAL] - 23911 +677:3405:2026-02-23 06:48:56 [CRITICAL] - 18502 +678:3426:2026-02-23 06:48:56 [CRITICAL] - 5109 +679:3454:2026-02-23 06:48:56 [CRITICAL] - 17920 +680:3458:2026-02-23 06:48:56 [CRITICAL] - 22122 +681:3459:2026-02-23 06:48:56 [CRITICAL] - 21246 +682:3460:2026-02-23 06:48:56 [CRITICAL] - 7591 +683:3467:2026-02-23 06:48:56 [CRITICAL] - 22657 +684:3471:2026-02-23 06:48:56 [CRITICAL] - 28266 +685:3473:2026-02-23 06:48:56 [CRITICAL] - 10945 +686:3480:2026-02-23 06:48:56 [CRITICAL] - 13395 +687:3494:2026-02-23 06:48:56 [CRITICAL] - 24056 +688:3504:2026-02-23 06:48:56 [CRITICAL] - 17810 +689:3514:2026-02-23 06:48:56 [CRITICAL] - 24251 +690:3517:2026-02-23 06:48:56 [CRITICAL] - 28875 +691:3522:2026-02-23 06:48:56 [CRITICAL] - 26283 +692:3523:2026-02-23 06:48:56 [CRITICAL] - 5290 +693:3531:2026-02-23 06:48:56 [CRITICAL] - 30610 +694:3533:2026-02-23 06:48:56 [CRITICAL] - 12186 +695:3535:2026-02-23 06:48:56 [CRITICAL] - 20945 +696:3537:2026-02-23 06:48:56 [CRITICAL] - 29478 +697:3547:2026-02-23 06:48:57 [CRITICAL] - 18879 +698:3564:2026-02-23 06:48:57 [CRITICAL] - 23536 +699:3578:2026-02-23 06:48:57 [CRITICAL] - 26809 +700:3582:2026-02-23 06:48:57 [CRITICAL] - 23212 +701:3584:2026-02-23 06:48:57 [CRITICAL] - 24737 +702:3588:2026-02-23 06:48:57 [CRITICAL] - 5414 +703:3594:2026-02-23 06:48:57 [CRITICAL] - 30624 +704:3601:2026-02-23 06:48:57 [CRITICAL] - 9787 +705:3610:2026-02-23 06:48:57 [CRITICAL] - 15363 +706:3611:2026-02-23 06:48:57 [CRITICAL] - 30613 +707:3614:2026-02-23 06:48:57 [CRITICAL] - 20835 +708:3617:2026-02-23 06:48:57 [CRITICAL] - 15963 +709:3619:2026-02-23 06:48:57 [CRITICAL] - 26023 +710:3621:2026-02-23 06:48:57 [CRITICAL] - 30026 +711:3622:2026-02-23 06:48:57 [CRITICAL] - 5859 +712:3623:2026-02-23 06:48:57 [CRITICAL] - 31847 +713:3637:2026-02-23 06:48:57 [CRITICAL] - 14545 +714:3638:2026-02-23 06:48:57 [CRITICAL] - 7178 +715:3639:2026-02-23 06:48:57 [CRITICAL] - 124 +716:3651:2026-02-23 06:48:57 [CRITICAL] - 8741 +717:3652:2026-02-23 06:48:57 [CRITICAL] - 4285 +718:3654:2026-02-23 06:48:57 [CRITICAL] - 7453 +719:3657:2026-02-23 06:48:57 [CRITICAL] - 26214 +720:3661:2026-02-23 06:48:57 [CRITICAL] - 19725 +721:3664:2026-02-23 06:48:57 [CRITICAL] - 32023 +722:3668:2026-02-23 06:48:57 [CRITICAL] - 7096 +723:3670:2026-02-23 06:48:57 [CRITICAL] - 30082 +724:3673:2026-02-23 06:48:57 [CRITICAL] - 21795 +725:3674:2026-02-23 06:48:57 [CRITICAL] - 27898 +726:3677:2026-02-23 06:48:57 [CRITICAL] - 22654 +727:3682:2026-02-23 06:48:57 [CRITICAL] - 22570 +728:3686:2026-02-23 06:48:57 [CRITICAL] - 13287 +729:3697:2026-02-23 06:48:57 [CRITICAL] - 8791 +730:3701:2026-02-23 06:48:57 [CRITICAL] - 29496 +731:3702:2026-02-23 06:48:57 [CRITICAL] - 840 +732:3703:2026-02-23 06:48:57 [CRITICAL] - 1698 +733:3707:2026-02-23 06:48:57 [CRITICAL] - 12395 +734:3712:2026-02-23 06:48:57 [CRITICAL] - 23924 +735:3716:2026-02-23 06:48:57 [CRITICAL] - 24455 +736:3717:2026-02-23 06:48:57 [CRITICAL] - 19788 +737:3720:2026-02-23 06:48:57 [CRITICAL] - 5902 +738:3722:2026-02-23 06:48:57 [CRITICAL] - 29999 +739:3727:2026-02-23 06:48:57 [CRITICAL] - 5231 +740:3734:2026-02-23 06:48:57 [CRITICAL] - 12960 +741:3741:2026-02-23 06:48:57 [CRITICAL] - 22717 +742:3749:2026-02-23 06:48:57 [CRITICAL] - 16495 +743:3750:2026-02-23 06:48:57 [CRITICAL] - 26240 +744:3761:2026-02-23 06:48:57 [CRITICAL] - 15667 +745:3763:2026-02-23 06:48:57 [CRITICAL] - 27165 +746:3774:2026-02-23 06:48:57 [CRITICAL] - 21933 +747:3780:2026-02-23 06:48:57 [CRITICAL] - 5931 +748:3781:2026-02-23 06:48:57 [CRITICAL] - 25437 +749:3794:2026-02-23 06:48:57 [CRITICAL] - 31546 +750:3802:2026-02-23 06:48:57 [CRITICAL] - 21966 +751:3803:2026-02-23 06:48:57 [CRITICAL] - 31806 +752:3804:2026-02-23 06:48:57 [CRITICAL] - 30181 +753:3811:2026-02-23 06:48:57 [CRITICAL] - 17140 +754:3815:2026-02-23 06:48:57 [CRITICAL] - 20739 +755:3822:2026-02-23 06:48:57 [CRITICAL] - 18543 +756:3828:2026-02-23 06:48:57 [CRITICAL] - 24277 +757:3832:2026-02-23 06:48:57 [CRITICAL] - 6292 +758:3833:2026-02-23 06:48:57 [CRITICAL] - 14075 +759:3849:2026-02-23 06:48:57 [CRITICAL] - 7367 +760:3852:2026-02-23 06:48:57 [CRITICAL] - 12529 +761:3854:2026-02-23 06:48:57 [CRITICAL] - 22922 +762:3860:2026-02-23 06:48:57 [CRITICAL] - 9281 +763:3865:2026-02-23 06:48:57 [CRITICAL] - 31067 +764:3867:2026-02-23 06:48:57 [CRITICAL] - 25102 +765:3868:2026-02-23 06:48:57 [CRITICAL] - 21156 +766:3869:2026-02-23 06:48:57 [CRITICAL] - 10853 +767:3874:2026-02-23 06:48:57 [CRITICAL] - 11247 +768:3887:2026-02-23 06:48:57 [CRITICAL] - 24105 +769:3891:2026-02-23 06:48:57 [CRITICAL] - 29773 +770:3897:2026-02-23 06:48:57 [CRITICAL] - 30983 +771:3898:2026-02-23 06:48:57 [CRITICAL] - 4324 +772:3899:2026-02-23 06:48:57 [CRITICAL] - 26988 +773:3911:2026-02-23 06:48:57 [CRITICAL] - 23261 +774:3912:2026-02-23 06:48:57 [CRITICAL] - 24760 +775:3914:2026-02-23 06:48:57 [CRITICAL] - 19972 +776:3916:2026-02-23 06:48:57 [CRITICAL] - 30242 +777:3920:2026-02-23 06:48:57 [CRITICAL] - 442 +778:3934:2026-02-23 06:48:57 [CRITICAL] - 16208 +779:3935:2026-02-23 06:48:57 [CRITICAL] - 22786 +780:3942:2026-02-23 06:48:57 [CRITICAL] - 14079 +781:3947:2026-02-23 06:48:57 [CRITICAL] - 7287 +782:3953:2026-02-23 06:48:57 [CRITICAL] - 24446 +783:3956:2026-02-23 06:48:57 [CRITICAL] - 11213 +784:3957:2026-02-23 06:48:57 [CRITICAL] - 27562 +785:3964:2026-02-23 06:48:57 [CRITICAL] - 16200 +786:3966:2026-02-23 06:48:57 [CRITICAL] - 20545 +787:3975:2026-02-23 06:48:57 [CRITICAL] - 5682 +788:3982:2026-02-23 06:48:57 [CRITICAL] - 15409 +789:3986:2026-02-23 06:48:57 [CRITICAL] - 17408 +790:3990:2026-02-23 06:48:57 [CRITICAL] - 11000 +791:3995:2026-02-23 06:48:57 [CRITICAL] - 6899 +792:3998:2026-02-23 06:48:57 [CRITICAL] - 9611 +793:3999:2026-02-23 06:48:57 [CRITICAL] - 17044 +794:4000:2026-02-23 06:48:57 [CRITICAL] - 15987 +795:4005:2026-02-23 06:48:57 [CRITICAL] - 18887 +796:4010:2026-02-23 06:48:57 [CRITICAL] - 29947 +797:4011:2026-02-23 06:48:57 [CRITICAL] - 22105 +798:4013:2026-02-23 06:48:57 [CRITICAL] - 32627 +799:4021:2026-02-23 06:48:57 [CRITICAL] - 29271 +800:4023:2026-02-23 06:48:57 [CRITICAL] - 19377 +801:4025:2026-02-23 06:48:57 [CRITICAL] - 11497 +802:4026:2026-02-23 06:48:57 [CRITICAL] - 31802 +803:4031:2026-02-23 06:48:57 [CRITICAL] - 10006 +804:4032:2026-02-23 06:48:57 [CRITICAL] - 3341 +805:4035:2026-02-23 06:48:57 [CRITICAL] - 18855 +806:4037:2026-02-23 06:48:57 [CRITICAL] - 12882 +807:4040:2026-02-23 06:48:57 [CRITICAL] - 28718 +808:4041:2026-02-23 06:48:57 [CRITICAL] - 20800 +809:4045:2026-02-23 06:48:57 [CRITICAL] - 8602 +810:4046:2026-02-23 06:48:57 [CRITICAL] - 15996 +811:4057:2026-02-23 06:48:57 [CRITICAL] - 5875 +812:4060:2026-02-23 06:48:57 [CRITICAL] - 15107 +813:4064:2026-02-23 06:48:57 [CRITICAL] - 22705 +814:4066:2026-02-23 06:48:57 [CRITICAL] - 10076 +815:4075:2026-02-23 06:48:57 [CRITICAL] - 6419 +816:4081:2026-02-23 06:48:57 [CRITICAL] - 31314 +817:4085:2026-02-23 06:48:57 [CRITICAL] - 19405 +818:4087:2026-02-23 06:48:57 [CRITICAL] - 20700 +819:4093:2026-02-23 06:48:57 [CRITICAL] - 26041 +820:4095:2026-02-23 06:48:57 [CRITICAL] - 27895 +821:4096:2026-02-23 06:48:57 [CRITICAL] - 30989 +822:4100:2026-02-23 06:48:57 [CRITICAL] - 16761 +823:4109:2026-02-23 06:48:57 [CRITICAL] - 13233 +824:4113:2026-02-23 06:48:57 [CRITICAL] - 3151 +825:4120:2026-02-23 06:48:57 [CRITICAL] - 14633 +826:4123:2026-02-23 06:48:57 [CRITICAL] - 12972 +827:4125:2026-02-23 06:48:57 [CRITICAL] - 27973 +828:4127:2026-02-23 06:48:57 [CRITICAL] - 23527 +829:4135:2026-02-23 06:48:57 [CRITICAL] - 4051 +830:4138:2026-02-23 06:48:57 [CRITICAL] - 21448 +831:4139:2026-02-23 06:48:57 [CRITICAL] - 23436 +832:4146:2026-02-23 06:48:57 [CRITICAL] - 22558 +833:4147:2026-02-23 06:48:57 [CRITICAL] - 25494 +834:4150:2026-02-23 06:48:57 [CRITICAL] - 24062 +835:4159:2026-02-23 06:48:57 [CRITICAL] - 10161 +836:4161:2026-02-23 06:48:57 [CRITICAL] - 18048 +837:4169:2026-02-23 06:48:57 [CRITICAL] - 32669 +838:4172:2026-02-23 06:48:57 [CRITICAL] - 29364 +839:4174:2026-02-23 06:48:57 [CRITICAL] - 21227 +840:4179:2026-02-23 06:48:57 [CRITICAL] - 1518 +841:4183:2026-02-23 06:48:57 [CRITICAL] - 29345 +842:4186:2026-02-23 06:48:57 [CRITICAL] - 22290 +843:4188:2026-02-23 06:48:57 [CRITICAL] - 13703 +844:4191:2026-02-23 06:48:57 [CRITICAL] - 21914 +845:4202:2026-02-23 06:48:57 [CRITICAL] - 8429 +846:4210:2026-02-23 06:48:57 [CRITICAL] - 376 +847:4211:2026-02-23 06:48:57 [CRITICAL] - 4635 +848:4225:2026-02-23 06:48:57 [CRITICAL] - 7914 +849:4227:2026-02-23 06:48:57 [CRITICAL] - 2977 +850:4229:2026-02-23 06:48:57 [CRITICAL] - 29974 +851:4230:2026-02-23 06:48:57 [CRITICAL] - 31152 +852:4239:2026-02-23 06:48:57 [CRITICAL] - 9499 +853:4244:2026-02-23 06:48:57 [CRITICAL] - 1983 +854:4250:2026-02-23 06:48:57 [CRITICAL] - 12260 +855:4252:2026-02-23 06:48:57 [CRITICAL] - 27362 +856:4253:2026-02-23 06:48:57 [CRITICAL] - 22803 +857:4255:2026-02-23 06:48:57 [CRITICAL] - 26508 +858:4258:2026-02-23 06:48:57 [CRITICAL] - 17960 +859:4259:2026-02-23 06:48:57 [CRITICAL] - 27442 +860:4262:2026-02-23 06:48:57 [CRITICAL] - 5803 +861:4263:2026-02-23 06:48:57 [CRITICAL] - 18191 +862:4267:2026-02-23 06:48:57 [CRITICAL] - 16048 +863:4268:2026-02-23 06:48:57 [CRITICAL] - 24312 +864:4269:2026-02-23 06:48:57 [CRITICAL] - 21452 +865:4272:2026-02-23 06:48:57 [CRITICAL] - 32393 +866:4278:2026-02-23 06:48:57 [CRITICAL] - 1419 +867:4283:2026-02-23 06:48:57 [CRITICAL] - 32035 +868:4286:2026-02-23 06:48:57 [CRITICAL] - 13653 +869:4291:2026-02-23 06:48:57 [CRITICAL] - 15474 +870:4293:2026-02-23 06:48:57 [CRITICAL] - 11778 +871:4297:2026-02-23 06:48:58 [CRITICAL] - 28105 +872:4299:2026-02-23 06:48:58 [CRITICAL] - 24067 +873:4300:2026-02-23 06:48:58 [CRITICAL] - 32487 +874:4303:2026-02-23 06:48:58 [CRITICAL] - 22871 +875:4305:2026-02-23 06:48:58 [CRITICAL] - 7515 +876:4324:2026-02-23 06:48:58 [CRITICAL] - 31828 +877:4325:2026-02-23 06:48:58 [CRITICAL] - 18140 +878:4342:2026-02-23 06:48:58 [CRITICAL] - 847 +879:4343:2026-02-23 06:48:58 [CRITICAL] - 15806 +880:4350:2026-02-23 06:48:58 [CRITICAL] - 20457 +881:4354:2026-02-23 06:48:58 [CRITICAL] - 23728 +882:4361:2026-02-23 06:48:58 [CRITICAL] - 2879 +883:4376:2026-02-23 06:48:58 [CRITICAL] - 21644 +884:4379:2026-02-23 06:48:58 [CRITICAL] - 15092 +885:4380:2026-02-23 06:48:58 [CRITICAL] - 8650 +886:4391:2026-02-23 06:48:58 [CRITICAL] - 8517 +887:4393:2026-02-23 06:48:58 [CRITICAL] - 29958 +888:4404:2026-02-23 06:48:58 [CRITICAL] - 16187 +889:4406:2026-02-23 06:48:58 [CRITICAL] - 24428 +890:4410:2026-02-23 06:48:58 [CRITICAL] - 3700 +891:4417:2026-02-23 06:48:58 [CRITICAL] - 30886 +892:4424:2026-02-23 06:48:58 [CRITICAL] - 24637 +893:4429:2026-02-23 06:48:58 [CRITICAL] - 28197 +894:4437:2026-02-23 06:48:58 [CRITICAL] - 11535 +895:4444:2026-02-23 06:48:58 [CRITICAL] - 28933 +896:4448:2026-02-23 06:48:58 [CRITICAL] - 32258 +897:4454:2026-02-23 06:48:58 [CRITICAL] - 1653 +898:4460:2026-02-23 06:48:58 [CRITICAL] - 4375 +899:4461:2026-02-23 06:48:58 [CRITICAL] - 11747 +900:4466:2026-02-23 06:48:58 [CRITICAL] - 32409 +901:4467:2026-02-23 06:48:58 [CRITICAL] - 32316 +902:4471:2026-02-23 06:48:58 [CRITICAL] - 7166 +903:4472:2026-02-23 06:48:58 [CRITICAL] - 7261 +904:4473:2026-02-23 06:48:58 [CRITICAL] - 4689 +905:4479:2026-02-23 06:48:58 [CRITICAL] - 22298 +906:4480:2026-02-23 06:48:58 [CRITICAL] - 18786 +907:4483:2026-02-23 06:48:58 [CRITICAL] - 5533 +908:4489:2026-02-23 06:48:58 [CRITICAL] - 15243 +909:4499:2026-02-23 06:48:58 [CRITICAL] - 13725 +910:4503:2026-02-23 06:48:58 [CRITICAL] - 16690 +911:4504:2026-02-23 06:48:58 [CRITICAL] - 24990 +912:4507:2026-02-23 06:48:58 [CRITICAL] - 5500 +913:4516:2026-02-23 06:48:58 [CRITICAL] - 4594 +914:4518:2026-02-23 06:48:58 [CRITICAL] - 10654 +915:4522:2026-02-23 06:48:58 [CRITICAL] - 5068 +916:4524:2026-02-23 06:48:58 [CRITICAL] - 14215 +917:4525:2026-02-23 06:48:58 [CRITICAL] - 12040 +918:4526:2026-02-23 06:48:58 [CRITICAL] - 27604 +919:4529:2026-02-23 06:48:58 [CRITICAL] - 19056 +920:4535:2026-02-23 06:48:58 [CRITICAL] - 18705 +921:4545:2026-02-23 06:48:58 [CRITICAL] - 21475 +922:4546:2026-02-23 06:48:58 [CRITICAL] - 13952 +923:4551:2026-02-23 06:48:58 [CRITICAL] - 16252 +924:4554:2026-02-23 06:48:58 [CRITICAL] - 1573 +925:4556:2026-02-23 06:48:58 [CRITICAL] - 9592 +926:4559:2026-02-23 06:48:58 [CRITICAL] - 22005 +927:4561:2026-02-23 06:48:58 [CRITICAL] - 18774 +928:4566:2026-02-23 06:48:58 [CRITICAL] - 959 +929:4568:2026-02-23 06:48:58 [CRITICAL] - 12181 +930:4580:2026-02-23 06:48:58 [CRITICAL] - 8349 +931:4582:2026-02-23 06:48:58 [CRITICAL] - 25750 +932:4592:2026-02-23 06:48:58 [CRITICAL] - 3557 +933:4597:2026-02-23 06:48:58 [CRITICAL] - 30405 +934:4603:2026-02-23 06:48:58 [CRITICAL] - 13716 +935:4615:2026-02-23 06:48:58 [CRITICAL] - 299 +936:4620:2026-02-23 06:48:58 [CRITICAL] - 5923 +937:4624:2026-02-23 06:48:58 [CRITICAL] - 21577 +938:4625:2026-02-23 06:48:58 [CRITICAL] - 19305 +939:4630:2026-02-23 06:48:58 [CRITICAL] - 12944 +940:4631:2026-02-23 06:48:58 [CRITICAL] - 16120 +941:4638:2026-02-23 06:48:58 [CRITICAL] - 1932 +942:4641:2026-02-23 06:48:58 [CRITICAL] - 23678 +943:4643:2026-02-23 06:48:58 [CRITICAL] - 2664 +944:4645:2026-02-23 06:48:58 [CRITICAL] - 27015 +945:4647:2026-02-23 06:48:58 [CRITICAL] - 29336 +946:4667:2026-02-23 06:48:58 [CRITICAL] - 29153 +947:4669:2026-02-23 06:48:58 [CRITICAL] - 19922 +948:4671:2026-02-23 06:48:58 [CRITICAL] - 29647 +949:4675:2026-02-23 06:48:58 [CRITICAL] - 7028 +950:4676:2026-02-23 06:48:58 [CRITICAL] - 30257 +951:4684:2026-02-23 06:48:58 [CRITICAL] - 27850 +952:4687:2026-02-23 06:48:58 [CRITICAL] - 28089 +953:4690:2026-02-23 06:48:58 [CRITICAL] - 5071 +954:4693:2026-02-23 06:48:58 [CRITICAL] - 17830 +955:4694:2026-02-23 06:48:58 [CRITICAL] - 16624 +956:4697:2026-02-23 06:48:58 [CRITICAL] - 17811 +957:4701:2026-02-23 06:48:58 [CRITICAL] - 19861 +958:4703:2026-02-23 06:48:58 [CRITICAL] - 27196 +959:4708:2026-02-23 06:48:58 [CRITICAL] - 14531 +960:4709:2026-02-23 06:48:58 [CRITICAL] - 2053 +961:4712:2026-02-23 06:48:58 [CRITICAL] - 15834 +962:4719:2026-02-23 06:48:58 [CRITICAL] - 11285 +963:4722:2026-02-23 06:48:58 [CRITICAL] - 30251 +964:4728:2026-02-23 06:48:58 [CRITICAL] - 27479 +965:4732:2026-02-23 06:48:58 [CRITICAL] - 12476 +966:4736:2026-02-23 06:48:58 [CRITICAL] - 11002 +967:4743:2026-02-23 06:48:58 [CRITICAL] - 12743 +968:4746:2026-02-23 06:48:58 [CRITICAL] - 25734 +969:4753:2026-02-23 06:48:58 [CRITICAL] - 19528 +970:4754:2026-02-23 06:48:58 [CRITICAL] - 31845 +971:4756:2026-02-23 06:48:58 [CRITICAL] - 7529 +972:4773:2026-02-23 06:48:58 [CRITICAL] - 15376 +973:4774:2026-02-23 06:48:58 [CRITICAL] - 8393 +974:4781:2026-02-23 06:48:58 [CRITICAL] - 6585 +975:4796:2026-02-23 06:48:58 [CRITICAL] - 27953 +976:4800:2026-02-23 06:48:58 [CRITICAL] - 16145 +977:4804:2026-02-23 06:48:58 [CRITICAL] - 9506 +978:4808:2026-02-23 06:48:58 [CRITICAL] - 6523 +979:4811:2026-02-23 06:48:58 [CRITICAL] - 24133 +980:4816:2026-02-23 06:48:58 [CRITICAL] - 15956 +981:4820:2026-02-23 06:48:58 [CRITICAL] - 16453 +982:4834:2026-02-23 06:48:58 [CRITICAL] - 11260 +983:4839:2026-02-23 06:48:58 [CRITICAL] - 8394 +984:4841:2026-02-23 06:48:58 [CRITICAL] - 9333 +985:4844:2026-02-23 06:48:58 [CRITICAL] - 11525 +986:4854:2026-02-23 06:48:58 [CRITICAL] - 5881 +987:4875:2026-02-23 06:48:58 [CRITICAL] - 31434 +988:4884:2026-02-23 06:48:58 [CRITICAL] - 9982 +989:4890:2026-02-23 06:48:58 [CRITICAL] - 19283 +990:4891:2026-02-23 06:48:58 [CRITICAL] - 18380 +991:4904:2026-02-23 06:48:58 [CRITICAL] - 10725 +992:4913:2026-02-23 06:48:58 [CRITICAL] - 2126 +993:4917:2026-02-23 06:48:58 [CRITICAL] - 21823 +994:4918:2026-02-23 06:48:58 [CRITICAL] - 6547 +995:4921:2026-02-23 06:48:58 [CRITICAL] - 9597 +996:4925:2026-02-23 06:48:58 [CRITICAL] - 6241 +997:4926:2026-02-23 06:48:58 [CRITICAL] - 10563 +998:4928:2026-02-23 06:48:58 [CRITICAL] - 5050 +999:4935:2026-02-23 06:48:58 [CRITICAL] - 6482 +1000:4943:2026-02-23 06:48:58 [CRITICAL] - 3968 +1001:4951:2026-02-23 06:48:58 [CRITICAL] - 13711 +1002:4956:2026-02-23 06:48:58 [CRITICAL] - 10508 +1003:4964:2026-02-23 06:48:58 [CRITICAL] - 21594 +1004:4972:2026-02-23 06:48:58 [CRITICAL] - 21346 +1005:4975:2026-02-23 06:48:58 [CRITICAL] - 16576 +1006:4979:2026-02-23 06:48:58 [CRITICAL] - 21483 +1007:4981:2026-02-23 06:48:58 [CRITICAL] - 14108 +1008:4986:2026-02-23 06:48:58 [CRITICAL] - 31747 +1009:4987:2026-02-23 06:48:58 [CRITICAL] - 13887 +1010:4993:2026-02-23 06:48:58 [CRITICAL] - 26183 +1011:4997:2026-02-23 06:48:58 [CRITICAL] - 31126 +1012:5002:2026-02-23 06:48:58 [CRITICAL] - 24171 +1013:5008:2026-02-23 06:48:58 [CRITICAL] - 30790 +1014:5013:2026-02-23 06:48:58 [CRITICAL] - 19843 +1015:5015:2026-02-23 06:48:58 [CRITICAL] - 18790 +1016:5020:2026-02-23 06:48:58 [CRITICAL] - 26687 +1017:5027:2026-02-23 06:48:58 [CRITICAL] - 24376 +1018:5047:2026-02-23 06:48:59 [CRITICAL] - 18813 +1019:5050:2026-02-23 06:48:59 [CRITICAL] - 27176 +1020:5056:2026-02-23 06:48:59 [CRITICAL] - 12925 +1021:5061:2026-02-23 06:48:59 [CRITICAL] - 18517 +1022:5072:2026-02-23 06:48:59 [CRITICAL] - 17022 +1023:5085:2026-02-23 06:48:59 [CRITICAL] - 14896 +1024:5087:2026-02-23 06:48:59 [CRITICAL] - 437 +1025:5090:2026-02-23 06:48:59 [CRITICAL] - 161 +1026:5091:2026-02-23 06:48:59 [CRITICAL] - 19598 +1027:5096:2026-02-23 06:48:59 [CRITICAL] - 17790 +1028:5100:2026-02-23 06:48:59 [CRITICAL] - 29459 +1029:5105:2026-02-23 06:48:59 [CRITICAL] - 18145 +1030:5106:2026-02-23 06:48:59 [CRITICAL] - 11736 +1031:5112:2026-02-23 06:48:59 [CRITICAL] - 3904 +1032:5113:2026-02-23 06:48:59 [CRITICAL] - 21863 +1033:5117:2026-02-23 06:48:59 [CRITICAL] - 10841 +1034:5118:2026-02-23 06:48:59 [CRITICAL] - 4936 +1035:5120:2026-02-23 06:48:59 [CRITICAL] - 23861 +1036:5142:2026-02-23 06:48:59 [CRITICAL] - 21058 +1037:5150:2026-02-23 06:48:59 [CRITICAL] - 5453 +1038:5156:2026-02-23 06:48:59 [CRITICAL] - 9866 +1039:5158:2026-02-23 06:48:59 [CRITICAL] - 11216 +1040:5163:2026-02-23 06:48:59 [CRITICAL] - 30963 +1041:5174:2026-02-23 06:48:59 [CRITICAL] - 22246 +1042:5176:2026-02-23 06:48:59 [CRITICAL] - 11133 +1043:5177:2026-02-23 06:48:59 [CRITICAL] - 8909 +1044:5179:2026-02-23 06:48:59 [CRITICAL] - 17688 +1045:5180:2026-02-23 06:48:59 [CRITICAL] - 29313 +1046:5182:2026-02-23 06:48:59 [CRITICAL] - 18969 +1047:5185:2026-02-23 06:48:59 [CRITICAL] - 26557 +1048:5188:2026-02-23 06:48:59 [CRITICAL] - 15565 +1049:5189:2026-02-23 06:48:59 [CRITICAL] - 17068 +1050:5192:2026-02-23 06:48:59 [CRITICAL] - 13530 +1051:5193:2026-02-23 06:48:59 [CRITICAL] - 8319 +1052:5198:2026-02-23 06:48:59 [CRITICAL] - 13084 +1053:5205:2026-02-23 06:48:59 [CRITICAL] - 15287 +1054:5208:2026-02-23 06:48:59 [CRITICAL] - 5403 +1055:5215:2026-02-23 06:48:59 [CRITICAL] - 28976 +1056:5228:2026-02-23 06:48:59 [CRITICAL] - 28747 +1057:5235:2026-02-23 06:48:59 [CRITICAL] - 29630 +1058:5240:2026-02-23 06:48:59 [CRITICAL] - 25955 +1059:5242:2026-02-23 06:48:59 [CRITICAL] - 1731 +1060:5253:2026-02-23 06:48:59 [CRITICAL] - 10519 +1061:5260:2026-02-23 06:48:59 [CRITICAL] - 24795 +1062:5274:2026-02-23 06:48:59 [CRITICAL] - 20029 +1063:5279:2026-02-23 06:48:59 [CRITICAL] - 30511 +1064:5286:2026-02-23 06:48:59 [CRITICAL] - 6146 +1065:5287:2026-02-23 06:48:59 [CRITICAL] - 20804 +1066:5290:2026-02-23 06:48:59 [CRITICAL] - 31999 +1067:5292:2026-02-23 06:48:59 [CRITICAL] - 18012 +1068:5296:2026-02-23 06:48:59 [CRITICAL] - 10012 +1069:5301:2026-02-23 06:48:59 [CRITICAL] - 31243 +1070:5304:2026-02-23 06:48:59 [CRITICAL] - 4406 +1071:5306:2026-02-23 06:48:59 [CRITICAL] - 19697 +1072:5325:2026-02-23 06:48:59 [CRITICAL] - 13018 +1073:5336:2026-02-23 06:48:59 [CRITICAL] - 30900 +1074:5342:2026-02-23 06:48:59 [CRITICAL] - 8300 +1075:5348:2026-02-23 06:48:59 [CRITICAL] - 8752 +1076:5354:2026-02-23 06:48:59 [CRITICAL] - 16757 +1077:5355:2026-02-23 06:48:59 [CRITICAL] - 30215 +1078:5359:2026-02-23 06:48:59 [CRITICAL] - 6635 +1079:5361:2026-02-23 06:48:59 [CRITICAL] - 27935 +1080:5367:2026-02-23 06:48:59 [CRITICAL] - 14276 +1081:5370:2026-02-23 06:48:59 [CRITICAL] - 29865 +1082:5373:2026-02-23 06:48:59 [CRITICAL] - 23271 +1083:5377:2026-02-23 06:48:59 [CRITICAL] - 21420 +1084:5384:2026-02-23 06:48:59 [CRITICAL] - 25311 +1085:5386:2026-02-23 06:48:59 [CRITICAL] - 19131 +1086:5387:2026-02-23 06:48:59 [CRITICAL] - 9197 +1087:5393:2026-02-23 06:48:59 [CRITICAL] - 7245 +1088:5400:2026-02-23 06:48:59 [CRITICAL] - 4129 +1089:5403:2026-02-23 06:48:59 [CRITICAL] - 24366 +1090:5404:2026-02-23 06:48:59 [CRITICAL] - 13000 +1091:5407:2026-02-23 06:48:59 [CRITICAL] - 32282 +1092:5422:2026-02-23 06:48:59 [CRITICAL] - 3729 +1093:5434:2026-02-23 06:48:59 [CRITICAL] - 27362 +1094:5440:2026-02-23 06:48:59 [CRITICAL] - 27631 +1095:5443:2026-02-23 06:48:59 [CRITICAL] - 28948 +1096:5450:2026-02-23 06:48:59 [CRITICAL] - 16749 +1097:5451:2026-02-23 06:48:59 [CRITICAL] - 10337 +1098:5454:2026-02-23 06:48:59 [CRITICAL] - 12676 +1099:5462:2026-02-23 06:48:59 [CRITICAL] - 23154 +1100:5466:2026-02-23 06:48:59 [CRITICAL] - 6208 +1101:5468:2026-02-23 06:48:59 [CRITICAL] - 6696 +1102:5472:2026-02-23 06:48:59 [CRITICAL] - 3437 +1103:5483:2026-02-23 06:48:59 [CRITICAL] - 13868 +1104:5489:2026-02-23 06:48:59 [CRITICAL] - 15019 +1105:5498:2026-02-23 06:48:59 [CRITICAL] - 14859 +1106:5499:2026-02-23 06:48:59 [CRITICAL] - 17821 +1107:5504:2026-02-23 06:48:59 [CRITICAL] - 10277 +1108:5508:2026-02-23 06:48:59 [CRITICAL] - 27973 +1109:5511:2026-02-23 06:48:59 [CRITICAL] - 28361 +1110:5516:2026-02-23 06:48:59 [CRITICAL] - 12374 +1111:5518:2026-02-23 06:48:59 [CRITICAL] - 25074 +1112:5521:2026-02-23 06:48:59 [CRITICAL] - 25844 +1113:5535:2026-02-23 06:48:59 [CRITICAL] - 8409 +1114:5542:2026-02-23 06:48:59 [CRITICAL] - 9718 +1115:5546:2026-02-23 06:48:59 [CRITICAL] - 24097 +1116:5550:2026-02-23 06:48:59 [CRITICAL] - 9417 +1117:5558:2026-02-23 06:48:59 [CRITICAL] - 25057 +1118:5559:2026-02-23 06:48:59 [CRITICAL] - 14264 +1119:5573:2026-02-23 06:48:59 [CRITICAL] - 6035 +1120:5576:2026-02-23 06:48:59 [CRITICAL] - 31645 +1121:5580:2026-02-23 06:48:59 [CRITICAL] - 31487 +1122:5582:2026-02-23 06:48:59 [CRITICAL] - 19476 +1123:5583:2026-02-23 06:48:59 [CRITICAL] - 21130 +1124:5586:2026-02-23 06:48:59 [CRITICAL] - 20556 +1125:5587:2026-02-23 06:48:59 [CRITICAL] - 9860 +1126:5593:2026-02-23 06:48:59 [CRITICAL] - 3692 +1127:5594:2026-02-23 06:48:59 [CRITICAL] - 30768 +1128:5597:2026-02-23 06:48:59 [CRITICAL] - 22035 +1129:5605:2026-02-23 06:48:59 [CRITICAL] - 11401 +1130:5607:2026-02-23 06:48:59 [CRITICAL] - 18211 +1131:5609:2026-02-23 06:48:59 [CRITICAL] - 12317 +1132:5612:2026-02-23 06:48:59 [CRITICAL] - 18374 +1133:5621:2026-02-23 06:48:59 [CRITICAL] - 25127 +1134:5623:2026-02-23 06:48:59 [CRITICAL] - 4083 +1135:5626:2026-02-23 06:48:59 [CRITICAL] - 10914 +1136:5632:2026-02-23 06:48:59 [CRITICAL] - 30620 +1137:5633:2026-02-23 06:48:59 [CRITICAL] - 24606 +1138:5635:2026-02-23 06:48:59 [CRITICAL] - 4094 +1139:5637:2026-02-23 06:48:59 [CRITICAL] - 29656 +1140:5648:2026-02-23 06:48:59 [CRITICAL] - 1341 +1141:5651:2026-02-23 06:48:59 [CRITICAL] - 29988 +1142:5652:2026-02-23 06:48:59 [CRITICAL] - 26422 +1143:5657:2026-02-23 06:48:59 [CRITICAL] - 24548 +1144:5658:2026-02-23 06:48:59 [CRITICAL] - 22135 +1145:5661:2026-02-23 06:48:59 [CRITICAL] - 20690 +1146:5663:2026-02-23 06:48:59 [CRITICAL] - 795 +1147:5669:2026-02-23 06:48:59 [CRITICAL] - 30426 +1148:5670:2026-02-23 06:48:59 [CRITICAL] - 12521 +1149:5672:2026-02-23 06:48:59 [CRITICAL] - 25111 +1150:5675:2026-02-23 06:48:59 [CRITICAL] - 15294 +1151:5678:2026-02-23 06:48:59 [CRITICAL] - 9246 +1152:5681:2026-02-23 06:48:59 [CRITICAL] - 9922 +1153:5684:2026-02-23 06:48:59 [CRITICAL] - 27468 +1154:5688:2026-02-23 06:48:59 [CRITICAL] - 32405 +1155:5689:2026-02-23 06:48:59 [CRITICAL] - 17283 +1156:5705:2026-02-23 06:48:59 [CRITICAL] - 23684 +1157:5708:2026-02-23 06:48:59 [CRITICAL] - 21205 +1158:5713:2026-02-23 06:48:59 [CRITICAL] - 24252 +1159:5715:2026-02-23 06:48:59 [CRITICAL] - 24088 +1160:5716:2026-02-23 06:48:59 [CRITICAL] - 19671 +1161:5717:2026-02-23 06:48:59 [CRITICAL] - 3677 +1162:5722:2026-02-23 06:48:59 [CRITICAL] - 419 +1163:5730:2026-02-23 06:48:59 [CRITICAL] - 975 +1164:5740:2026-02-23 06:48:59 [CRITICAL] - 13196 +1165:5750:2026-02-23 06:48:59 [CRITICAL] - 24551 +1166:5751:2026-02-23 06:48:59 [CRITICAL] - 21936 +1167:5753:2026-02-23 06:48:59 [CRITICAL] - 4053 +1168:5755:2026-02-23 06:48:59 [CRITICAL] - 29353 +1169:5758:2026-02-23 06:48:59 [CRITICAL] - 24972 +1170:5763:2026-02-23 06:48:59 [CRITICAL] - 18867 +1171:5764:2026-02-23 06:48:59 [CRITICAL] - 27331 +1172:5791:2026-02-23 06:48:59 [CRITICAL] - 22503 +1173:5794:2026-02-23 06:48:59 [CRITICAL] - 20212 +1174:5797:2026-02-23 06:48:59 [CRITICAL] - 2497 +1175:5800:2026-02-23 06:48:59 [CRITICAL] - 22314 +1176:5818:2026-02-23 06:49:00 [CRITICAL] - 31846 +1177:5822:2026-02-23 06:49:00 [CRITICAL] - 18180 +1178:5824:2026-02-23 06:49:00 [CRITICAL] - 14154 +1179:5826:2026-02-23 06:49:00 [CRITICAL] - 7982 +1180:5830:2026-02-23 06:49:00 [CRITICAL] - 30164 +1181:5832:2026-02-23 06:49:00 [CRITICAL] - 30867 +1182:5839:2026-02-23 06:49:00 [CRITICAL] - 30857 +1183:5843:2026-02-23 06:49:00 [CRITICAL] - 2771 +1184:5854:2026-02-23 06:49:00 [CRITICAL] - 28895 +1185:5855:2026-02-23 06:49:00 [CRITICAL] - 19711 +1186:5856:2026-02-23 06:49:00 [CRITICAL] - 16879 +1187:5866:2026-02-23 06:49:00 [CRITICAL] - 32131 +1188:5869:2026-02-23 06:49:00 [CRITICAL] - 8641 +1189:5870:2026-02-23 06:49:00 [CRITICAL] - 105 +1190:5886:2026-02-23 06:49:00 [CRITICAL] - 26218 +1191:5896:2026-02-23 06:49:00 [CRITICAL] - 1575 +1192:5897:2026-02-23 06:49:00 [CRITICAL] - 1679 +1193:5901:2026-02-23 06:49:00 [CRITICAL] - 9797 +1194:5906:2026-02-23 06:49:00 [CRITICAL] - 18296 +1195:5908:2026-02-23 06:49:00 [CRITICAL] - 11519 +1196:5911:2026-02-23 06:49:00 [CRITICAL] - 4656 +1197:5926:2026-02-23 06:49:00 [CRITICAL] - 24174 +1198:5928:2026-02-23 06:49:00 [CRITICAL] - 17090 +1199:5934:2026-02-23 06:49:00 [CRITICAL] - 30938 +1200:5937:2026-02-23 06:49:00 [CRITICAL] - 29582 +1201:5941:2026-02-23 06:49:00 [CRITICAL] - 21118 +1202:5943:2026-02-23 06:49:00 [CRITICAL] - 30808 +1203:5953:2026-02-23 06:49:00 [CRITICAL] - 6575 +1204:5959:2026-02-23 06:49:00 [CRITICAL] - 23809 +1205:5976:2026-02-23 06:49:00 [CRITICAL] - 11847 +1206:5983:2026-02-23 06:49:00 [CRITICAL] - 26897 +1207:5986:2026-02-23 06:49:00 [CRITICAL] - 15736 +1208:5989:2026-02-23 06:49:00 [CRITICAL] - 17998 +1209:5999:2026-02-23 06:49:00 [CRITICAL] - 10120 +1210:6004:2026-02-23 06:49:00 [CRITICAL] - 29861 +1211:6006:2026-02-23 06:49:00 [CRITICAL] - 7438 +1212:6008:2026-02-23 06:49:00 [CRITICAL] - 7014 +1213:6009:2026-02-23 06:49:00 [CRITICAL] - 13660 +1214:6010:2026-02-23 06:49:00 [CRITICAL] - 11760 +1215:6014:2026-02-23 06:49:00 [CRITICAL] - 6729 +1216:6021:2026-02-23 06:49:00 [CRITICAL] - 7189 +1217:6038:2026-02-23 06:49:00 [CRITICAL] - 20901 +1218:6040:2026-02-23 06:49:00 [CRITICAL] - 23208 +1219:6045:2026-02-23 06:49:00 [CRITICAL] - 20464 +1220:6052:2026-02-23 06:49:00 [CRITICAL] - 18444 +1221:6057:2026-02-23 06:49:00 [CRITICAL] - 14409 +1222:6059:2026-02-23 06:49:00 [CRITICAL] - 17559 +1223:6060:2026-02-23 06:49:00 [CRITICAL] - 30633 +1224:6061:2026-02-23 06:49:00 [CRITICAL] - 32673 +1225:6062:2026-02-23 06:49:00 [CRITICAL] - 12973 +1226:6065:2026-02-23 06:49:00 [CRITICAL] - 27601 +1227:6066:2026-02-23 06:49:00 [CRITICAL] - 7616 +1228:6068:2026-02-23 06:49:00 [CRITICAL] - 1719 +1229:6074:2026-02-23 06:49:00 [CRITICAL] - 31390 +1230:6090:2026-02-23 06:49:00 [CRITICAL] - 21757 +1231:6093:2026-02-23 06:49:00 [CRITICAL] - 10895 +1232:6100:2026-02-23 06:49:00 [CRITICAL] - 1574 +1233:6104:2026-02-23 06:49:00 [CRITICAL] - 11286 +1234:6114:2026-02-23 06:49:00 [CRITICAL] - 3444 +1235:6115:2026-02-23 06:49:00 [CRITICAL] - 5386 +1236:6131:2026-02-23 06:49:00 [CRITICAL] - 7778 +1237:6138:2026-02-23 06:49:00 [CRITICAL] - 15209 +1238:6154:2026-02-23 06:49:00 [CRITICAL] - 18446 +1239:6161:2026-02-23 06:49:00 [CRITICAL] - 6493 +1240:6168:2026-02-23 06:49:00 [CRITICAL] - 25577 +1241:6171:2026-02-23 06:49:00 [CRITICAL] - 11966 +1242:6172:2026-02-23 06:49:00 [CRITICAL] - 24871 +1243:6174:2026-02-23 06:49:00 [CRITICAL] - 15245 +1244:6178:2026-02-23 06:49:00 [CRITICAL] - 12548 +1245:6179:2026-02-23 06:49:00 [CRITICAL] - 29934 +1246:6181:2026-02-23 06:49:00 [CRITICAL] - 92 +1247:6184:2026-02-23 06:49:00 [CRITICAL] - 8860 +1248:6185:2026-02-23 06:49:00 [CRITICAL] - 1 +1249:6186:2026-02-23 06:49:00 [CRITICAL] - 22502 +1250:6187:2026-02-23 06:49:00 [CRITICAL] - 27603 +1251:6188:2026-02-23 06:49:00 [CRITICAL] - 22918 +1252:6191:2026-02-23 06:49:00 [CRITICAL] - 9192 +1253:6196:2026-02-23 06:49:00 [CRITICAL] - 21543 +1254:6197:2026-02-23 06:49:00 [CRITICAL] - 6193 +1255:6200:2026-02-23 06:49:00 [CRITICAL] - 14675 +1256:6203:2026-02-23 06:49:00 [CRITICAL] - 19347 +1257:6205:2026-02-23 06:49:00 [CRITICAL] - 9516 +1258:6207:2026-02-23 06:49:00 [CRITICAL] - 5491 +1259:6213:2026-02-23 06:49:00 [CRITICAL] - 26868 +1260:6214:2026-02-23 06:49:00 [CRITICAL] - 3899 +1261:6215:2026-02-23 06:49:00 [CRITICAL] - 24681 +1262:6216:2026-02-23 06:49:00 [CRITICAL] - 14581 +1263:6220:2026-02-23 06:49:00 [CRITICAL] - 19331 +1264:6235:2026-02-23 06:49:00 [CRITICAL] - 26100 +1265:6237:2026-02-23 06:49:00 [CRITICAL] - 13151 +1266:6252:2026-02-23 06:49:00 [CRITICAL] - 7595 +1267:6254:2026-02-23 06:49:00 [CRITICAL] - 30305 +1268:6256:2026-02-23 06:49:00 [CRITICAL] - 25041 +1269:6260:2026-02-23 06:49:00 [CRITICAL] - 5641 +1270:6264:2026-02-23 06:49:00 [CRITICAL] - 24776 +1271:6267:2026-02-23 06:49:00 [CRITICAL] - 7085 +1272:6273:2026-02-23 06:49:00 [CRITICAL] - 17784 +1273:6280:2026-02-23 06:49:00 [CRITICAL] - 8852 +1274:6281:2026-02-23 06:49:00 [CRITICAL] - 22793 +1275:6282:2026-02-23 06:49:00 [CRITICAL] - 11635 +1276:6290:2026-02-23 06:49:00 [CRITICAL] - 32303 +1277:6292:2026-02-23 06:49:00 [CRITICAL] - 21140 +1278:6294:2026-02-23 06:49:00 [CRITICAL] - 11638 +1279:6296:2026-02-23 06:49:00 [CRITICAL] - 5184 +1280:6306:2026-02-23 06:49:00 [CRITICAL] - 31231 +1281:6311:2026-02-23 06:49:00 [CRITICAL] - 4384 +1282:6312:2026-02-23 06:49:00 [CRITICAL] - 11879 +1283:6314:2026-02-23 06:49:00 [CRITICAL] - 30052 +1284:6321:2026-02-23 06:49:00 [CRITICAL] - 24726 +1285:6326:2026-02-23 06:49:00 [CRITICAL] - 19166 +1286:6327:2026-02-23 06:49:00 [CRITICAL] - 28857 +1287:6329:2026-02-23 06:49:00 [CRITICAL] - 16924 +1288:6331:2026-02-23 06:49:00 [CRITICAL] - 4986 +1289:6341:2026-02-23 06:49:00 [CRITICAL] - 3209 +1290:6345:2026-02-23 06:49:00 [CRITICAL] - 12435 +1291:6348:2026-02-23 06:49:00 [CRITICAL] - 12385 +1292:6351:2026-02-23 06:49:00 [CRITICAL] - 4171 +1293:6352:2026-02-23 06:49:00 [CRITICAL] - 15487 +1294:6354:2026-02-23 06:49:00 [CRITICAL] - 29696 +1295:6361:2026-02-23 06:49:00 [CRITICAL] - 22065 +1296:6373:2026-02-23 06:49:00 [CRITICAL] - 16970 +1297:6374:2026-02-23 06:49:00 [CRITICAL] - 13386 +1298:6383:2026-02-23 06:49:00 [CRITICAL] - 21151 +1299:6386:2026-02-23 06:49:00 [CRITICAL] - 4876 +1300:6387:2026-02-23 06:49:00 [CRITICAL] - 18677 +1301:6396:2026-02-23 06:49:00 [CRITICAL] - 24878 +1302:6398:2026-02-23 06:49:00 [CRITICAL] - 32307 +1303:6405:2026-02-23 06:49:00 [CRITICAL] - 29825 +1304:6430:2026-02-23 06:49:00 [CRITICAL] - 11944 +1305:6431:2026-02-23 06:49:00 [CRITICAL] - 6390 +1306:6449:2026-02-23 06:49:00 [CRITICAL] - 20890 +1307:6450:2026-02-23 06:49:00 [CRITICAL] - 20675 +1308:6459:2026-02-23 06:49:00 [CRITICAL] - 2080 +1309:6460:2026-02-23 06:49:00 [CRITICAL] - 22459 +1310:6466:2026-02-23 06:49:00 [CRITICAL] - 27434 +1311:6472:2026-02-23 06:49:00 [CRITICAL] - 26906 +1312:6474:2026-02-23 06:49:00 [CRITICAL] - 21432 +1313:6475:2026-02-23 06:49:00 [CRITICAL] - 27987 +1314:6481:2026-02-23 06:49:00 [CRITICAL] - 26083 +1315:6489:2026-02-23 06:49:01 [CRITICAL] - 9401 +1316:6492:2026-02-23 06:49:01 [CRITICAL] - 22946 +1317:6495:2026-02-23 06:49:01 [CRITICAL] - 21943 +1318:6502:2026-02-23 06:49:01 [CRITICAL] - 9204 +1319:6503:2026-02-23 06:49:01 [CRITICAL] - 12573 +1320:6507:2026-02-23 06:49:01 [CRITICAL] - 16931 +1321:6514:2026-02-23 06:49:01 [CRITICAL] - 9678 +1322:6516:2026-02-23 06:49:01 [CRITICAL] - 3317 +1323:6525:2026-02-23 06:49:01 [CRITICAL] - 3390 +1324:6529:2026-02-23 06:49:01 [CRITICAL] - 29133 +1325:6534:2026-02-23 06:49:01 [CRITICAL] - 24501 +1326:6539:2026-02-23 06:49:01 [CRITICAL] - 6577 +1327:6540:2026-02-23 06:49:01 [CRITICAL] - 24850 +1328:6541:2026-02-23 06:49:01 [CRITICAL] - 454 +1329:6548:2026-02-23 06:49:01 [CRITICAL] - 24674 +1330:6549:2026-02-23 06:49:01 [CRITICAL] - 17017 +1331:6550:2026-02-23 06:49:01 [CRITICAL] - 23402 +1332:6562:2026-02-23 06:49:01 [CRITICAL] - 901 +1333:6567:2026-02-23 06:49:01 [CRITICAL] - 27915 +1334:6568:2026-02-23 06:49:01 [CRITICAL] - 3469 +1335:6569:2026-02-23 06:49:01 [CRITICAL] - 10515 +1336:6572:2026-02-23 06:49:01 [CRITICAL] - 19073 +1337:6576:2026-02-23 06:49:01 [CRITICAL] - 14712 +1338:6579:2026-02-23 06:49:01 [CRITICAL] - 32624 +1339:6580:2026-02-23 06:49:01 [CRITICAL] - 6122 +1340:6587:2026-02-23 06:49:01 [CRITICAL] - 26865 +1341:6588:2026-02-23 06:49:01 [CRITICAL] - 27363 +1342:6594:2026-02-23 06:49:01 [CRITICAL] - 30886 +1343:6596:2026-02-23 06:49:01 [CRITICAL] - 4483 +1344:6598:2026-02-23 06:49:01 [CRITICAL] - 15753 +1345:6604:2026-02-23 06:49:01 [CRITICAL] - 23482 +1346:6605:2026-02-23 06:49:01 [CRITICAL] - 4399 +1347:6608:2026-02-23 06:49:01 [CRITICAL] - 16124 +1348:6609:2026-02-23 06:49:01 [CRITICAL] - 25013 +1349:6625:2026-02-23 06:49:01 [CRITICAL] - 3608 +1350:6628:2026-02-23 06:49:01 [CRITICAL] - 3118 +1351:6630:2026-02-23 06:49:01 [CRITICAL] - 13513 +1352:6635:2026-02-23 06:49:01 [CRITICAL] - 31639 +1353:6640:2026-02-23 06:49:01 [CRITICAL] - 13426 +1354:6643:2026-02-23 06:49:01 [CRITICAL] - 27031 +1355:6644:2026-02-23 06:49:01 [CRITICAL] - 2398 +1356:6648:2026-02-23 06:49:01 [CRITICAL] - 6381 +1357:6664:2026-02-23 06:49:01 [CRITICAL] - 5729 +1358:6668:2026-02-23 06:49:01 [CRITICAL] - 29497 +1359:6671:2026-02-23 06:49:01 [CRITICAL] - 22757 +1360:6682:2026-02-23 06:49:01 [CRITICAL] - 3218 +1361:6683:2026-02-23 06:49:01 [CRITICAL] - 598 +1362:6691:2026-02-23 06:49:01 [CRITICAL] - 17085 +1363:6693:2026-02-23 06:49:01 [CRITICAL] - 17056 +1364:6698:2026-02-23 06:49:01 [CRITICAL] - 13578 +1365:6705:2026-02-23 06:49:01 [CRITICAL] - 1724 +1366:6707:2026-02-23 06:49:01 [CRITICAL] - 29767 +1367:6714:2026-02-23 06:49:01 [CRITICAL] - 22659 +1368:6716:2026-02-23 06:49:01 [CRITICAL] - 21029 +1369:6718:2026-02-23 06:49:01 [CRITICAL] - 3312 +1370:6719:2026-02-23 06:49:01 [CRITICAL] - 17341 +1371:6723:2026-02-23 06:49:01 [CRITICAL] - 26320 +1372:6726:2026-02-23 06:49:01 [CRITICAL] - 6953 +1373:6734:2026-02-23 06:49:01 [CRITICAL] - 23144 +1374:6736:2026-02-23 06:49:01 [CRITICAL] - 3655 +1375:6756:2026-02-23 06:49:01 [CRITICAL] - 22994 +1376:6762:2026-02-23 06:49:01 [CRITICAL] - 1868 +1377:6779:2026-02-23 06:49:01 [CRITICAL] - 22367 +1378:6784:2026-02-23 06:49:01 [CRITICAL] - 7905 +1379:6789:2026-02-23 06:49:01 [CRITICAL] - 21921 +1380:6794:2026-02-23 06:49:01 [CRITICAL] - 22798 +1381:6795:2026-02-23 06:49:01 [CRITICAL] - 24710 +1382:6798:2026-02-23 06:49:01 [CRITICAL] - 896 +1383:6808:2026-02-23 06:49:02 [CRITICAL] - 20302 +1384:6819:2026-02-23 06:49:02 [CRITICAL] - 16887 +1385:6825:2026-02-23 06:49:02 [CRITICAL] - 8569 +1386:6826:2026-02-23 06:49:02 [CRITICAL] - 18655 +1387:6827:2026-02-23 06:49:02 [CRITICAL] - 6835 +1388:6829:2026-02-23 06:49:02 [CRITICAL] - 4642 +1389:6831:2026-02-23 06:49:02 [CRITICAL] - 20838 +1390:6832:2026-02-23 06:49:02 [CRITICAL] - 28263 +1391:6840:2026-02-23 06:49:02 [CRITICAL] - 17057 +1392:6848:2026-02-23 06:49:02 [CRITICAL] - 11361 +1393:6852:2026-02-23 06:49:02 [CRITICAL] - 4558 +1394:6854:2026-02-23 06:49:02 [CRITICAL] - 20207 +1395:6858:2026-02-23 06:49:02 [CRITICAL] - 16949 +1396:6867:2026-02-23 06:49:02 [CRITICAL] - 20073 +1397:6868:2026-02-23 06:49:02 [CRITICAL] - 17884 +1398:6874:2026-02-23 06:49:02 [CRITICAL] - 26431 +1399:6876:2026-02-23 06:49:02 [CRITICAL] - 4731 +1400:6880:2026-02-23 06:49:02 [CRITICAL] - 24688 +1401:6885:2026-02-23 06:49:02 [CRITICAL] - 5110 +1402:6892:2026-02-23 06:49:02 [CRITICAL] - 21461 +1403:6893:2026-02-23 06:49:02 [CRITICAL] - 16614 +1404:6905:2026-02-23 06:49:02 [CRITICAL] - 18739 +1405:6909:2026-02-23 06:49:02 [CRITICAL] - 2973 +1406:6913:2026-02-23 06:49:02 [CRITICAL] - 7408 +1407:6919:2026-02-23 06:49:02 [CRITICAL] - 16166 +1408:6921:2026-02-23 06:49:02 [CRITICAL] - 9713 +1409:6933:2026-02-23 06:49:02 [CRITICAL] - 30915 +1410:6937:2026-02-23 06:49:02 [CRITICAL] - 31461 +1411:6938:2026-02-23 06:49:02 [CRITICAL] - 6319 +1412:6943:2026-02-23 06:49:02 [CRITICAL] - 16665 +1413:6946:2026-02-23 06:49:02 [CRITICAL] - 22261 +1414:6949:2026-02-23 06:49:02 [CRITICAL] - 17767 +1415:6950:2026-02-23 06:49:02 [CRITICAL] - 4606 +1416:6956:2026-02-23 06:49:02 [CRITICAL] - 21954 +1417:6963:2026-02-23 06:49:02 [CRITICAL] - 17055 +1418:6967:2026-02-23 06:49:02 [CRITICAL] - 2409 +1419:6970:2026-02-23 06:49:02 [CRITICAL] - 24395 +1420:6974:2026-02-23 06:49:02 [CRITICAL] - 20480 +1421:6977:2026-02-23 06:49:02 [CRITICAL] - 8638 +1422:6980:2026-02-23 06:49:02 [CRITICAL] - 13277 +1423:6990:2026-02-23 06:49:02 [CRITICAL] - 2739 +1424:6991:2026-02-23 06:49:02 [CRITICAL] - 3039 +1425:6994:2026-02-23 06:49:02 [CRITICAL] - 22157 +1426:6995:2026-02-23 06:49:02 [CRITICAL] - 2660 +1427:6998:2026-02-23 06:49:02 [CRITICAL] - 27809 +1428:7004:2026-02-23 06:49:02 [CRITICAL] - 6531 +1429:7007:2026-02-23 06:49:02 [CRITICAL] - 14536 +1430:7018:2026-02-23 06:49:02 [CRITICAL] - 16917 +1431:7020:2026-02-23 06:49:02 [CRITICAL] - 21942 +1432:7023:2026-02-23 06:49:02 [CRITICAL] - 1579 +1433:7024:2026-02-23 06:49:02 [CRITICAL] - 18478 +1434:7025:2026-02-23 06:49:02 [CRITICAL] - 20581 +1435:7029:2026-02-23 06:49:03 [CRITICAL] - 13801 +1436:7031:2026-02-23 06:49:03 [CRITICAL] - 15046 +1437:7033:2026-02-23 06:49:03 [CRITICAL] - 22045 +1438:7037:2026-02-23 06:49:03 [CRITICAL] - 31730 +1439:7046:2026-02-23 06:49:03 [CRITICAL] - 20826 +1440:7056:2026-02-23 06:49:03 [CRITICAL] - 23656 +1441:7059:2026-02-23 06:49:03 [CRITICAL] - 19120 +1442:7066:2026-02-23 06:49:03 [CRITICAL] - 8005 +1443:7077:2026-02-23 06:49:03 [CRITICAL] - 3341 +1444:7087:2026-02-23 06:49:03 [CRITICAL] - 16178 +1445:7088:2026-02-23 06:49:03 [CRITICAL] - 30657 +1446:7091:2026-02-23 06:49:03 [CRITICAL] - 29804 +1447:7099:2026-02-23 06:49:03 [CRITICAL] - 19869 +1448:7104:2026-02-23 06:49:03 [CRITICAL] - 16089 +1449:7105:2026-02-23 06:49:03 [CRITICAL] - 22148 +1450:7107:2026-02-23 06:49:03 [CRITICAL] - 25180 +1451:7110:2026-02-23 06:49:03 [CRITICAL] - 14365 +1452:7112:2026-02-23 06:49:03 [CRITICAL] - 29294 +1453:7114:2026-02-23 06:49:03 [CRITICAL] - 3945 +1454:7115:2026-02-23 06:49:03 [CRITICAL] - 2122 +1455:7118:2026-02-23 06:49:03 [CRITICAL] - 27661 +1456:7122:2026-02-23 06:49:03 [CRITICAL] - 11579 +1457:7123:2026-02-23 06:49:03 [CRITICAL] - 32388 +1458:7124:2026-02-23 06:49:03 [CRITICAL] - 27742 +1459:7130:2026-02-23 06:49:03 [CRITICAL] - 1352 +1460:7134:2026-02-23 06:49:03 [CRITICAL] - 5116 +1461:7138:2026-02-23 06:49:03 [CRITICAL] - 2620 +1462:7139:2026-02-23 06:49:03 [CRITICAL] - 23499 +1463:7143:2026-02-23 06:49:03 [CRITICAL] - 31867 +1464:7145:2026-02-23 06:49:03 [CRITICAL] - 13156 +1465:7146:2026-02-23 06:49:03 [CRITICAL] - 21599 +1466:7147:2026-02-23 06:49:03 [CRITICAL] - 10850 +1467:7151:2026-02-23 06:49:03 [CRITICAL] - 8063 +1468:7155:2026-02-23 06:49:03 [CRITICAL] - 29427 +1469:7158:2026-02-23 06:49:03 [CRITICAL] - 6511 +1470:7159:2026-02-23 06:49:03 [CRITICAL] - 6852 +1471:7166:2026-02-23 06:49:03 [CRITICAL] - 8678 +1472:7169:2026-02-23 06:49:03 [CRITICAL] - 2155 +1473:7179:2026-02-23 06:49:03 [CRITICAL] - 22139 +1474:7183:2026-02-23 06:49:03 [CRITICAL] - 24752 +1475:7186:2026-02-23 06:49:03 [CRITICAL] - 15709 +1476:7196:2026-02-23 06:49:03 [CRITICAL] - 12765 +1477:7199:2026-02-23 06:49:03 [CRITICAL] - 21868 +1478:7201:2026-02-23 06:49:03 [CRITICAL] - 23653 +1479:7203:2026-02-23 06:49:03 [CRITICAL] - 19394 +1480:7214:2026-02-23 06:49:03 [CRITICAL] - 10772 +1481:7215:2026-02-23 06:49:03 [CRITICAL] - 24607 +1482:7217:2026-02-23 06:49:03 [CRITICAL] - 10424 +1483:7220:2026-02-23 06:49:03 [CRITICAL] - 13704 +1484:7229:2026-02-23 06:49:03 [CRITICAL] - 12035 +1485:7232:2026-02-23 06:49:03 [CRITICAL] - 1541 +1486:7245:2026-02-23 06:49:03 [CRITICAL] - 1480 +1487:7250:2026-02-23 06:49:03 [CRITICAL] - 17995 +1488:7251:2026-02-23 06:49:03 [CRITICAL] - 12075 +1489:7255:2026-02-23 06:49:03 [CRITICAL] - 1617 +1490:7259:2026-02-23 06:49:03 [CRITICAL] - 10625 +1491:7266:2026-02-23 06:49:03 [CRITICAL] - 1103 +1492:7270:2026-02-23 06:49:03 [CRITICAL] - 16625 +1493:7272:2026-02-23 06:49:03 [CRITICAL] - 7422 +1494:7278:2026-02-23 06:49:03 [CRITICAL] - 12223 +1495:7291:2026-02-23 06:49:03 [CRITICAL] - 608 +1496:7294:2026-02-23 06:49:03 [CRITICAL] - 32162 +1497:7297:2026-02-23 06:49:03 [CRITICAL] - 30180 +1498:7303:2026-02-23 06:49:03 [CRITICAL] - 5667 +1499:7306:2026-02-23 06:49:03 [CRITICAL] - 2450 +1500:7308:2026-02-23 06:49:03 [CRITICAL] - 4376 +1501:7317:2026-02-23 06:49:03 [CRITICAL] - 14332 +1502:7319:2026-02-23 06:49:03 [CRITICAL] - 7718 +1503:7321:2026-02-23 06:49:03 [CRITICAL] - 3087 +1504:7338:2026-02-23 06:49:03 [CRITICAL] - 26804 +1505:7339:2026-02-23 06:49:03 [CRITICAL] - 32124 +1506:7347:2026-02-23 06:49:03 [CRITICAL] - 32654 +1507:7357:2026-02-23 06:49:03 [CRITICAL] - 279 +1508:7363:2026-02-23 06:49:03 [CRITICAL] - 31638 +1509:7364:2026-02-23 06:49:03 [CRITICAL] - 5506 +1510:7366:2026-02-23 06:49:03 [CRITICAL] - 7685 +1511:7370:2026-02-23 06:49:03 [CRITICAL] - 29447 +1512:7373:2026-02-23 06:49:03 [CRITICAL] - 28692 +1513:7375:2026-02-23 06:49:03 [CRITICAL] - 6845 +1514:7376:2026-02-23 06:49:03 [CRITICAL] - 15507 +1515:7382:2026-02-23 06:49:03 [CRITICAL] - 5271 +1516:7385:2026-02-23 06:49:03 [CRITICAL] - 23555 +1517:7389:2026-02-23 06:49:03 [CRITICAL] - 14205 +1518:7393:2026-02-23 06:49:03 [CRITICAL] - 13665 +1519:7399:2026-02-23 06:49:03 [CRITICAL] - 23774 +1520:7406:2026-02-23 06:49:03 [CRITICAL] - 32504 +1521:7420:2026-02-23 06:49:03 [CRITICAL] - 29895 +1522:7427:2026-02-23 06:49:03 [CRITICAL] - 6965 +1523:7429:2026-02-23 06:49:03 [CRITICAL] - 20679 +1524:7430:2026-02-23 06:49:03 [CRITICAL] - 28004 +1525:7441:2026-02-23 06:49:03 [CRITICAL] - 8677 +1526:7448:2026-02-23 06:49:03 [CRITICAL] - 13252 +1527:7453:2026-02-23 06:49:03 [CRITICAL] - 8943 +1528:7455:2026-02-23 06:49:03 [CRITICAL] - 23728 +1529:7458:2026-02-23 06:49:03 [CRITICAL] - 9067 +1530:7460:2026-02-23 06:49:03 [CRITICAL] - 31539 +1531:7470:2026-02-23 06:49:03 [CRITICAL] - 15192 +1532:7484:2026-02-23 06:49:03 [CRITICAL] - 29933 +1533:7488:2026-02-23 06:49:03 [CRITICAL] - 9732 +1534:7496:2026-02-23 06:49:03 [CRITICAL] - 26947 +1535:7498:2026-02-23 06:49:03 [CRITICAL] - 6036 +1536:7500:2026-02-23 06:49:03 [CRITICAL] - 16940 +1537:7515:2026-02-23 06:49:04 [CRITICAL] - 2964 +1538:7519:2026-02-23 06:49:04 [CRITICAL] - 20524 +1539:7531:2026-02-23 06:49:04 [CRITICAL] - 11957 +1540:7532:2026-02-23 06:49:04 [CRITICAL] - 7950 +1541:7538:2026-02-23 06:49:04 [CRITICAL] - 26612 +1542:7548:2026-02-23 06:49:04 [CRITICAL] - 31825 +1543:7552:2026-02-23 06:49:04 [CRITICAL] - 29454 +1544:7563:2026-02-23 06:49:04 [CRITICAL] - 31069 +1545:7567:2026-02-23 06:49:04 [CRITICAL] - 2638 +1546:7572:2026-02-23 06:49:04 [CRITICAL] - 10910 +1547:7585:2026-02-23 06:49:04 [CRITICAL] - 777 +1548:7589:2026-02-23 06:49:04 [CRITICAL] - 24177 +1549:7602:2026-02-23 06:49:04 [CRITICAL] - 10516 +1550:7603:2026-02-23 06:49:04 [CRITICAL] - 6172 +1551:7609:2026-02-23 06:49:04 [CRITICAL] - 12771 +1552:7610:2026-02-23 06:49:04 [CRITICAL] - 1840 +1553:7611:2026-02-23 06:49:04 [CRITICAL] - 3516 +1554:7616:2026-02-23 06:49:04 [CRITICAL] - 26582 +1555:7619:2026-02-23 06:49:04 [CRITICAL] - 14223 +1556:7622:2026-02-23 06:49:04 [CRITICAL] - 14437 +1557:7623:2026-02-23 06:49:04 [CRITICAL] - 24047 +1558:7640:2026-02-23 06:49:04 [CRITICAL] - 6236 +1559:7647:2026-02-23 06:49:04 [CRITICAL] - 19497 +1560:7648:2026-02-23 06:49:04 [CRITICAL] - 4107 +1561:7656:2026-02-23 06:49:04 [CRITICAL] - 13588 +1562:7664:2026-02-23 06:49:04 [CRITICAL] - 22155 +1563:7667:2026-02-23 06:49:04 [CRITICAL] - 1974 +1564:7669:2026-02-23 06:49:04 [CRITICAL] - 29171 +1565:7672:2026-02-23 06:49:04 [CRITICAL] - 23106 +1566:7694:2026-02-23 06:49:04 [CRITICAL] - 13037 +1567:7714:2026-02-23 06:49:04 [CRITICAL] - 3948 +1568:7717:2026-02-23 06:49:04 [CRITICAL] - 10030 +1569:7723:2026-02-23 06:49:04 [CRITICAL] - 13929 +1570:7724:2026-02-23 06:49:04 [CRITICAL] - 10979 +1571:7727:2026-02-23 06:49:04 [CRITICAL] - 24878 +1572:7728:2026-02-23 06:49:04 [CRITICAL] - 17137 +1573:7733:2026-02-23 06:49:04 [CRITICAL] - 18704 +1574:7744:2026-02-23 06:49:04 [CRITICAL] - 2422 +1575:7747:2026-02-23 06:49:04 [CRITICAL] - 880 +1576:7760:2026-02-23 06:49:04 [CRITICAL] - 4905 +1577:7765:2026-02-23 06:49:04 [CRITICAL] - 6891 +1578:7768:2026-02-23 06:49:04 [CRITICAL] - 11162 +1579:7769:2026-02-23 06:49:04 [CRITICAL] - 14533 +1580:7795:2026-02-23 06:49:04 [CRITICAL] - 2352 +1581:7800:2026-02-23 06:49:04 [CRITICAL] - 31481 +1582:7801:2026-02-23 06:49:04 [CRITICAL] - 18866 +1583:7807:2026-02-23 06:49:04 [CRITICAL] - 32512 +1584:7809:2026-02-23 06:49:04 [CRITICAL] - 8962 +1585:7811:2026-02-23 06:49:04 [CRITICAL] - 25623 +1586:7817:2026-02-23 06:49:04 [CRITICAL] - 10416 +1587:7822:2026-02-23 06:49:04 [CRITICAL] - 23307 +1588:7823:2026-02-23 06:49:04 [CRITICAL] - 26505 +1589:7832:2026-02-23 06:49:04 [CRITICAL] - 30429 +1590:7834:2026-02-23 06:49:04 [CRITICAL] - 19398 +1591:7842:2026-02-23 06:49:04 [CRITICAL] - 11776 +1592:7851:2026-02-23 06:49:04 [CRITICAL] - 27871 +1593:7852:2026-02-23 06:49:04 [CRITICAL] - 27925 +1594:7853:2026-02-23 06:49:04 [CRITICAL] - 12454 +1595:7858:2026-02-23 06:49:04 [CRITICAL] - 1590 +1596:7878:2026-02-23 06:49:04 [CRITICAL] - 26423 +1597:7883:2026-02-23 06:49:04 [CRITICAL] - 18376 +1598:7884:2026-02-23 06:49:04 [CRITICAL] - 2228 +1599:7887:2026-02-23 06:49:04 [CRITICAL] - 12411 +1600:7888:2026-02-23 06:49:04 [CRITICAL] - 9983 +1601:7890:2026-02-23 06:49:04 [CRITICAL] - 8077 +1602:7893:2026-02-23 06:49:04 [CRITICAL] - 5283 +1603:7895:2026-02-23 06:49:04 [CRITICAL] - 31236 +1604:7902:2026-02-23 06:49:04 [CRITICAL] - 29008 +1605:7905:2026-02-23 06:49:04 [CRITICAL] - 26880 +1606:7915:2026-02-23 06:49:04 [CRITICAL] - 30815 +1607:7916:2026-02-23 06:49:04 [CRITICAL] - 19127 +1608:7920:2026-02-23 06:49:04 [CRITICAL] - 29779 +1609:7928:2026-02-23 06:49:04 [CRITICAL] - 32108 +1610:7929:2026-02-23 06:49:04 [CRITICAL] - 3110 +1611:7931:2026-02-23 06:49:04 [CRITICAL] - 10359 +1612:7932:2026-02-23 06:49:04 [CRITICAL] - 25019 +1613:7934:2026-02-23 06:49:04 [CRITICAL] - 5906 +1614:7936:2026-02-23 06:49:04 [CRITICAL] - 8146 +1615:7940:2026-02-23 06:49:04 [CRITICAL] - 19135 +1616:7963:2026-02-23 06:49:04 [CRITICAL] - 9307 +1617:7969:2026-02-23 06:49:04 [CRITICAL] - 31653 +1618:7978:2026-02-23 06:49:04 [CRITICAL] - 27168 +1619:7979:2026-02-23 06:49:04 [CRITICAL] - 3927 +1620:7984:2026-02-23 06:49:04 [CRITICAL] - 28774 +1621:7986:2026-02-23 06:49:04 [CRITICAL] - 13662 +1622:7989:2026-02-23 06:49:04 [CRITICAL] - 4164 +1623:8001:2026-02-23 06:49:04 [CRITICAL] - 809 +1624:8002:2026-02-23 06:49:04 [CRITICAL] - 17638 +1625:8003:2026-02-23 06:49:04 [CRITICAL] - 23971 +1626:8004:2026-02-23 06:49:04 [CRITICAL] - 20029 +1627:8006:2026-02-23 06:49:04 [CRITICAL] - 11025 +1628:8012:2026-02-23 06:49:04 [CRITICAL] - 22011 +1629:8018:2026-02-23 06:49:04 [CRITICAL] - 18287 +1630:8023:2026-02-23 06:49:04 [CRITICAL] - 18110 +1631:8036:2026-02-23 06:49:04 [CRITICAL] - 19003 +1632:8042:2026-02-23 06:49:04 [CRITICAL] - 24591 +1633:8047:2026-02-23 06:49:04 [CRITICAL] - 8644 +1634:8053:2026-02-23 06:49:04 [CRITICAL] - 25238 +1635:8056:2026-02-23 06:49:04 [CRITICAL] - 4762 +1636:8057:2026-02-23 06:49:04 [CRITICAL] - 25759 +1637:8065:2026-02-23 06:49:04 [CRITICAL] - 15804 +1638:8074:2026-02-23 06:49:04 [CRITICAL] - 5668 +1639:8075:2026-02-23 06:49:04 [CRITICAL] - 11774 +1640:8078:2026-02-23 06:49:04 [CRITICAL] - 18981 +1641:8080:2026-02-23 06:49:04 [CRITICAL] - 17070 +1642:8083:2026-02-23 06:49:04 [CRITICAL] - 31378 +1643:8100:2026-02-23 06:49:05 [CRITICAL] - 26642 +1644:8107:2026-02-23 06:49:05 [CRITICAL] - 21816 +1645:8113:2026-02-23 06:49:05 [CRITICAL] - 20873 +1646:8123:2026-02-23 06:49:05 [CRITICAL] - 2670 +1647:8129:2026-02-23 06:49:05 [CRITICAL] - 764 +1648:8131:2026-02-23 06:49:05 [CRITICAL] - 17753 +1649:8137:2026-02-23 06:49:05 [CRITICAL] - 24839 +1650:8142:2026-02-23 06:49:05 [CRITICAL] - 19960 +1651:8146:2026-02-23 06:49:05 [CRITICAL] - 23000 +1652:8147:2026-02-23 06:49:05 [CRITICAL] - 7769 +1653:8148:2026-02-23 06:49:05 [CRITICAL] - 18735 +1654:8159:2026-02-23 06:49:05 [CRITICAL] - 30515 +1655:8166:2026-02-23 06:49:05 [CRITICAL] - 15645 +1656:8173:2026-02-23 06:49:05 [CRITICAL] - 30585 +1657:8175:2026-02-23 06:49:05 [CRITICAL] - 29637 +1658:8176:2026-02-23 06:49:05 [CRITICAL] - 11944 +1659:8179:2026-02-23 06:49:05 [CRITICAL] - 10858 +1660:8182:2026-02-23 06:49:05 [CRITICAL] - 2683 +1661:8184:2026-02-23 06:49:05 [CRITICAL] - 28171 +1662:8196:2026-02-23 06:49:05 [CRITICAL] - 29 +1663:8199:2026-02-23 06:49:05 [CRITICAL] - 31014 +1664:8201:2026-02-23 06:49:05 [CRITICAL] - 29561 +1665:8203:2026-02-23 06:49:05 [CRITICAL] - 24232 +1666:8205:2026-02-23 06:49:05 [CRITICAL] - 21926 +1667:8206:2026-02-23 06:49:05 [CRITICAL] - 5155 +1668:8207:2026-02-23 06:49:05 [CRITICAL] - 4656 +1669:8210:2026-02-23 06:49:05 [CRITICAL] - 21214 +1670:8214:2026-02-23 06:49:05 [CRITICAL] - 24081 +1671:8215:2026-02-23 06:49:05 [CRITICAL] - 1664 +1672:8216:2026-02-23 06:49:05 [CRITICAL] - 22974 +1673:8219:2026-02-23 06:49:05 [CRITICAL] - 14871 +1674:8221:2026-02-23 06:49:05 [CRITICAL] - 31827 +1675:8223:2026-02-23 06:49:05 [CRITICAL] - 12788 +1676:8229:2026-02-23 06:49:05 [CRITICAL] - 29211 +1677:8244:2026-02-23 06:49:05 [CRITICAL] - 17753 +1678:8247:2026-02-23 06:49:05 [CRITICAL] - 722 +1679:8249:2026-02-23 06:49:05 [CRITICAL] - 9675 +1680:8255:2026-02-23 06:49:05 [CRITICAL] - 28689 +1681:8269:2026-02-23 06:49:05 [CRITICAL] - 5699 +1682:8282:2026-02-23 06:49:05 [CRITICAL] - 9697 +1683:8285:2026-02-23 06:49:05 [CRITICAL] - 23718 +1684:8291:2026-02-23 06:49:05 [CRITICAL] - 11026 +1685:8297:2026-02-23 06:49:05 [CRITICAL] - 32276 +1686:8301:2026-02-23 06:49:05 [CRITICAL] - 13317 +1687:8308:2026-02-23 06:49:05 [CRITICAL] - 15564 +1688:8324:2026-02-23 06:49:05 [CRITICAL] - 18570 +1689:8327:2026-02-23 06:49:05 [CRITICAL] - 9441 +1690:8328:2026-02-23 06:49:05 [CRITICAL] - 6558 +1691:8331:2026-02-23 06:49:05 [CRITICAL] - 15479 +1692:8340:2026-02-23 06:49:05 [CRITICAL] - 11695 +1693:8351:2026-02-23 06:49:05 [CRITICAL] - 83 +1694:8358:2026-02-23 06:49:05 [CRITICAL] - 21525 +1695:8366:2026-02-23 06:49:05 [CRITICAL] - 6282 +1696:8368:2026-02-23 06:49:05 [CRITICAL] - 10609 +1697:8375:2026-02-23 06:49:05 [CRITICAL] - 32222 +1698:8396:2026-02-23 06:49:05 [CRITICAL] - 10671 +1699:8401:2026-02-23 06:49:05 [CRITICAL] - 24032 +1700:8402:2026-02-23 06:49:05 [CRITICAL] - 3714 +1701:8403:2026-02-23 06:49:05 [CRITICAL] - 8449 +1702:8407:2026-02-23 06:49:05 [CRITICAL] - 29923 +1703:8408:2026-02-23 06:49:05 [CRITICAL] - 18540 +1704:8409:2026-02-23 06:49:05 [CRITICAL] - 32307 +1705:8414:2026-02-23 06:49:05 [CRITICAL] - 16213 +1706:8425:2026-02-23 06:49:05 [CRITICAL] - 32057 +1707:8430:2026-02-23 06:49:05 [CRITICAL] - 13417 +1708:8433:2026-02-23 06:49:05 [CRITICAL] - 24314 +1709:8440:2026-02-23 06:49:05 [CRITICAL] - 30766 +1710:8451:2026-02-23 06:49:05 [CRITICAL] - 7593 +1711:8458:2026-02-23 06:49:05 [CRITICAL] - 8619 +1712:8470:2026-02-23 06:49:05 [CRITICAL] - 26002 +1713:8471:2026-02-23 06:49:05 [CRITICAL] - 17909 +1714:8476:2026-02-23 06:49:05 [CRITICAL] - 2505 +1715:8478:2026-02-23 06:49:05 [CRITICAL] - 12547 +1716:8481:2026-02-23 06:49:05 [CRITICAL] - 5053 +1717:8487:2026-02-23 06:49:05 [CRITICAL] - 31673 +1718:8490:2026-02-23 06:49:05 [CRITICAL] - 10927 +1719:8492:2026-02-23 06:49:05 [CRITICAL] - 20521 +1720:8505:2026-02-23 06:49:05 [CRITICAL] - 1628 +1721:8506:2026-02-23 06:49:05 [CRITICAL] - 17508 +1722:8513:2026-02-23 06:49:05 [CRITICAL] - 28989 +1723:8519:2026-02-23 06:49:05 [CRITICAL] - 7534 +1724:8523:2026-02-23 06:49:05 [CRITICAL] - 6656 +1725:8528:2026-02-23 06:49:05 [CRITICAL] - 25643 +1726:8529:2026-02-23 06:49:05 [CRITICAL] - 28588 +1727:8539:2026-02-23 06:49:05 [CRITICAL] - 25123 +1728:8544:2026-02-23 06:49:05 [CRITICAL] - 32276 +1729:8549:2026-02-23 06:49:05 [CRITICAL] - 22385 +1730:8554:2026-02-23 06:49:05 [CRITICAL] - 1293 +1731:8555:2026-02-23 06:49:05 [CRITICAL] - 30316 +1732:8560:2026-02-23 06:49:05 [CRITICAL] - 15028 +1733:8563:2026-02-23 06:49:05 [CRITICAL] - 10123 +1734:8573:2026-02-23 06:49:05 [CRITICAL] - 17816 +1735:8575:2026-02-23 06:49:05 [CRITICAL] - 2686 +1736:8585:2026-02-23 06:49:05 [CRITICAL] - 21773 +1737:8590:2026-02-23 06:49:05 [CRITICAL] - 26166 +1738:8599:2026-02-23 06:49:05 [CRITICAL] - 20526 +1739:8601:2026-02-23 06:49:05 [CRITICAL] - 26934 +1740:8609:2026-02-23 06:49:05 [CRITICAL] - 4717 +1741:8615:2026-02-23 06:49:05 [CRITICAL] - 17140 +1742:8620:2026-02-23 06:49:05 [CRITICAL] - 31929 +1743:8627:2026-02-23 06:49:05 [CRITICAL] - 10528 +1744:8630:2026-02-23 06:49:05 [CRITICAL] - 17954 +1745:8639:2026-02-23 06:49:05 [CRITICAL] - 20723 +1746:8640:2026-02-23 06:49:05 [CRITICAL] - 31780 +1747:8642:2026-02-23 06:49:05 [CRITICAL] - 23214 +1748:8649:2026-02-23 06:49:05 [CRITICAL] - 25900 +1749:8655:2026-02-23 06:49:05 [CRITICAL] - 9889 +1750:8665:2026-02-23 06:49:05 [CRITICAL] - 5740 +1751:8670:2026-02-23 06:49:05 [CRITICAL] - 15263 +1752:8675:2026-02-23 06:49:05 [CRITICAL] - 5509 +1753:8682:2026-02-23 06:49:05 [CRITICAL] - 18344 +1754:8684:2026-02-23 06:49:05 [CRITICAL] - 30614 +1755:8687:2026-02-23 06:49:05 [CRITICAL] - 16517 +1756:8691:2026-02-23 06:49:05 [CRITICAL] - 5337 +1757:8692:2026-02-23 06:49:05 [CRITICAL] - 1428 +1758:8693:2026-02-23 06:49:05 [CRITICAL] - 28071 +1759:8694:2026-02-23 06:49:05 [CRITICAL] - 22594 +1760:8697:2026-02-23 06:49:05 [CRITICAL] - 29142 +1761:8705:2026-02-23 06:49:05 [CRITICAL] - 15053 +1762:8710:2026-02-23 06:49:05 [CRITICAL] - 293 +1763:8712:2026-02-23 06:49:05 [CRITICAL] - 21495 +1764:8716:2026-02-23 06:49:05 [CRITICAL] - 2828 +1765:8742:2026-02-23 06:49:05 [CRITICAL] - 7991 +1766:8751:2026-02-23 06:49:05 [CRITICAL] - 11459 +1767:8752:2026-02-23 06:49:05 [CRITICAL] - 6750 +1768:8762:2026-02-23 06:49:05 [CRITICAL] - 16018 +1769:8764:2026-02-23 06:49:05 [CRITICAL] - 4270 +1770:8767:2026-02-23 06:49:05 [CRITICAL] - 9332 +1771:8780:2026-02-23 06:49:05 [CRITICAL] - 24315 +1772:8781:2026-02-23 06:49:05 [CRITICAL] - 5926 +1773:8795:2026-02-23 06:49:06 [CRITICAL] - 25390 +1774:8809:2026-02-23 06:49:06 [CRITICAL] - 22317 +1775:8810:2026-02-23 06:49:06 [CRITICAL] - 5772 +1776:8814:2026-02-23 06:49:06 [CRITICAL] - 5561 +1777:8820:2026-02-23 06:49:06 [CRITICAL] - 32514 +1778:8824:2026-02-23 06:49:06 [CRITICAL] - 12545 +1779:8834:2026-02-23 06:49:06 [CRITICAL] - 14110 +1780:8847:2026-02-23 06:49:06 [CRITICAL] - 16355 +1781:8850:2026-02-23 06:49:06 [CRITICAL] - 10542 +1782:8851:2026-02-23 06:49:06 [CRITICAL] - 15956 +1783:8856:2026-02-23 06:49:06 [CRITICAL] - 14731 +1784:8860:2026-02-23 06:49:06 [CRITICAL] - 26873 +1785:8865:2026-02-23 06:49:06 [CRITICAL] - 10330 +1786:8868:2026-02-23 06:49:06 [CRITICAL] - 17349 +1787:8875:2026-02-23 06:49:06 [CRITICAL] - 436 +1788:8878:2026-02-23 06:49:06 [CRITICAL] - 21826 +1789:8879:2026-02-23 06:49:06 [CRITICAL] - 14684 +1790:8883:2026-02-23 06:49:06 [CRITICAL] - 26106 +1791:8884:2026-02-23 06:49:06 [CRITICAL] - 14474 +1792:8887:2026-02-23 06:49:06 [CRITICAL] - 13209 +1793:8904:2026-02-23 06:49:06 [CRITICAL] - 29702 +1794:8908:2026-02-23 06:49:06 [CRITICAL] - 2081 +1795:8924:2026-02-23 06:49:06 [CRITICAL] - 829 +1796:8928:2026-02-23 06:49:06 [CRITICAL] - 20798 +1797:8931:2026-02-23 06:49:06 [CRITICAL] - 26603 +1798:8932:2026-02-23 06:49:06 [CRITICAL] - 28030 +1799:8936:2026-02-23 06:49:06 [CRITICAL] - 18204 +1800:8941:2026-02-23 06:49:06 [CRITICAL] - 9508 +1801:8942:2026-02-23 06:49:06 [CRITICAL] - 11950 +1802:8945:2026-02-23 06:49:06 [CRITICAL] - 6472 +1803:8947:2026-02-23 06:49:06 [CRITICAL] - 19802 +1804:8963:2026-02-23 06:49:06 [CRITICAL] - 9377 +1805:8966:2026-02-23 06:49:06 [CRITICAL] - 4576 +1806:8967:2026-02-23 06:49:06 [CRITICAL] - 9385 +1807:8968:2026-02-23 06:49:06 [CRITICAL] - 1976 +1808:8969:2026-02-23 06:49:06 [CRITICAL] - 1163 +1809:8982:2026-02-23 06:49:06 [CRITICAL] - 25966 +1810:8983:2026-02-23 06:49:06 [CRITICAL] - 7657 +1811:8987:2026-02-23 06:49:06 [CRITICAL] - 26875 +1812:8991:2026-02-23 06:49:06 [CRITICAL] - 13250 +1813:8993:2026-02-23 06:49:06 [CRITICAL] - 3243 +1814:8995:2026-02-23 06:49:06 [CRITICAL] - 8302 +1815:9006:2026-02-23 06:49:06 [CRITICAL] - 18449 +1816:9013:2026-02-23 06:49:06 [CRITICAL] - 13266 +1817:9018:2026-02-23 06:49:06 [CRITICAL] - 14562 +1818:9023:2026-02-23 06:49:06 [CRITICAL] - 11409 +1819:9033:2026-02-23 06:49:06 [CRITICAL] - 24288 +1820:9036:2026-02-23 06:49:06 [CRITICAL] - 26120 +1821:9038:2026-02-23 06:49:06 [CRITICAL] - 17930 +1822:9043:2026-02-23 06:49:06 [CRITICAL] - 14174 +1823:9047:2026-02-23 06:49:06 [CRITICAL] - 30499 +1824:9067:2026-02-23 06:49:06 [CRITICAL] - 13461 +1825:9079:2026-02-23 06:49:06 [CRITICAL] - 25118 +1826:9088:2026-02-23 06:49:06 [CRITICAL] - 1833 +1827:9095:2026-02-23 06:49:06 [CRITICAL] - 10315 +1828:9110:2026-02-23 06:49:06 [CRITICAL] - 13735 +1829:9113:2026-02-23 06:49:06 [CRITICAL] - 22586 +1830:9124:2026-02-23 06:49:06 [CRITICAL] - 6630 +1831:9126:2026-02-23 06:49:06 [CRITICAL] - 25838 +1832:9130:2026-02-23 06:49:06 [CRITICAL] - 22423 +1833:9140:2026-02-23 06:49:06 [CRITICAL] - 22719 +1834:9142:2026-02-23 06:49:06 [CRITICAL] - 6288 +1835:9145:2026-02-23 06:49:06 [CRITICAL] - 30715 +1836:9148:2026-02-23 06:49:06 [CRITICAL] - 31343 +1837:9153:2026-02-23 06:49:06 [CRITICAL] - 14124 +1838:9161:2026-02-23 06:49:06 [CRITICAL] - 12168 +1839:9166:2026-02-23 06:49:06 [CRITICAL] - 6380 +1840:9178:2026-02-23 06:49:06 [CRITICAL] - 12791 +1841:9179:2026-02-23 06:49:06 [CRITICAL] - 7159 +1842:9209:2026-02-23 06:49:06 [CRITICAL] - 13217 +1843:9216:2026-02-23 06:49:06 [CRITICAL] - 9902 +1844:9218:2026-02-23 06:49:06 [CRITICAL] - 8992 +1845:9227:2026-02-23 06:49:06 [CRITICAL] - 24197 +1846:9234:2026-02-23 06:49:06 [CRITICAL] - 2852 +1847:9238:2026-02-23 06:49:06 [CRITICAL] - 30610 +1848:9239:2026-02-23 06:49:06 [CRITICAL] - 13540 +1849:9241:2026-02-23 06:49:06 [CRITICAL] - 20625 +1850:9251:2026-02-23 06:49:06 [CRITICAL] - 9105 +1851:9255:2026-02-23 06:49:06 [CRITICAL] - 9161 +1852:9257:2026-02-23 06:49:06 [CRITICAL] - 17601 +1853:9258:2026-02-23 06:49:06 [CRITICAL] - 11199 +1854:9259:2026-02-23 06:49:06 [CRITICAL] - 24997 +1855:9264:2026-02-23 06:49:06 [CRITICAL] - 27357 +1856:9270:2026-02-23 06:49:06 [CRITICAL] - 13539 +1857:9278:2026-02-23 06:49:06 [CRITICAL] - 10874 +1858:9292:2026-02-23 06:49:06 [CRITICAL] - 14185 +1859:9297:2026-02-23 06:49:06 [CRITICAL] - 31789 +1860:9299:2026-02-23 06:49:06 [CRITICAL] - 21375 +1861:9304:2026-02-23 06:49:06 [CRITICAL] - 30972 +1862:9316:2026-02-23 06:49:06 [CRITICAL] - 22859 +1863:9318:2026-02-23 06:49:06 [CRITICAL] - 8520 +1864:9319:2026-02-23 06:49:06 [CRITICAL] - 28214 +1865:9325:2026-02-23 06:49:06 [CRITICAL] - 14505 +1866:9326:2026-02-23 06:49:06 [CRITICAL] - 28618 +1867:9327:2026-02-23 06:49:06 [CRITICAL] - 31644 +1868:9331:2026-02-23 06:49:06 [CRITICAL] - 11761 +1869:9332:2026-02-23 06:49:06 [CRITICAL] - 30150 +1870:9339:2026-02-23 06:49:06 [CRITICAL] - 23362 +1871:9342:2026-02-23 06:49:06 [CRITICAL] - 18237 +1872:9344:2026-02-23 06:49:06 [CRITICAL] - 16074 +1873:9353:2026-02-23 06:49:06 [CRITICAL] - 26878 +1874:9355:2026-02-23 06:49:06 [CRITICAL] - 4825 +1875:9360:2026-02-23 06:49:06 [CRITICAL] - 21185 +1876:9363:2026-02-23 06:49:06 [CRITICAL] - 14449 +1877:9376:2026-02-23 06:49:06 [CRITICAL] - 29998 +1878:9381:2026-02-23 06:49:06 [CRITICAL] - 14440 +1879:9389:2026-02-23 06:49:06 [CRITICAL] - 24499 +1880:9392:2026-02-23 06:49:06 [CRITICAL] - 1167 +1881:9403:2026-02-23 06:49:06 [CRITICAL] - 9483 +1882:9414:2026-02-23 06:49:06 [CRITICAL] - 24830 +1883:9416:2026-02-23 06:49:06 [CRITICAL] - 16214 +1884:9417:2026-02-23 06:49:06 [CRITICAL] - 10046 +1885:9420:2026-02-23 06:49:06 [CRITICAL] - 8969 +1886:9425:2026-02-23 06:49:06 [CRITICAL] - 30943 +1887:9426:2026-02-23 06:49:06 [CRITICAL] - 4542 +1888:9430:2026-02-23 06:49:06 [CRITICAL] - 1359 +1889:9432:2026-02-23 06:49:06 [CRITICAL] - 29581 +1890:9441:2026-02-23 06:49:06 [CRITICAL] - 2453 +1891:9448:2026-02-23 06:49:06 [CRITICAL] - 6758 +1892:9451:2026-02-23 06:49:06 [CRITICAL] - 22655 +1893:9460:2026-02-23 06:49:06 [CRITICAL] - 11936 +1894:9477:2026-02-23 06:49:06 [CRITICAL] - 4700 +1895:9481:2026-02-23 06:49:06 [CRITICAL] - 14948 +1896:9482:2026-02-23 06:49:06 [CRITICAL] - 22560 +1897:9485:2026-02-23 06:49:06 [CRITICAL] - 18457 +1898:9493:2026-02-23 06:49:06 [CRITICAL] - 16791 +1899:9496:2026-02-23 06:49:06 [CRITICAL] - 24038 +1900:9497:2026-02-23 06:49:06 [CRITICAL] - 1187 +1901:9502:2026-02-23 06:49:06 [CRITICAL] - 7667 +1902:9505:2026-02-23 06:49:06 [CRITICAL] - 22576 +1903:9507:2026-02-23 06:49:06 [CRITICAL] - 23915 +1904:9511:2026-02-23 06:49:06 [CRITICAL] - 11679 +1905:9514:2026-02-23 06:49:06 [CRITICAL] - 18328 +1906:9528:2026-02-23 06:49:07 [CRITICAL] - 23117 +1907:9535:2026-02-23 06:49:07 [CRITICAL] - 24770 +1908:9536:2026-02-23 06:49:07 [CRITICAL] - 13496 +1909:9540:2026-02-23 06:49:07 [CRITICAL] - 13471 +1910:9549:2026-02-23 06:49:07 [CRITICAL] - 7999 +1911:9551:2026-02-23 06:49:07 [CRITICAL] - 4368 +1912:9554:2026-02-23 06:49:07 [CRITICAL] - 31252 +1913:9561:2026-02-23 06:49:07 [CRITICAL] - 15597 +1914:9562:2026-02-23 06:49:07 [CRITICAL] - 15644 +1915:9566:2026-02-23 06:49:07 [CRITICAL] - 30094 +1916:9567:2026-02-23 06:49:07 [CRITICAL] - 28638 +1917:9572:2026-02-23 06:49:07 [CRITICAL] - 26298 +1918:9578:2026-02-23 06:49:07 [CRITICAL] - 17480 +1919:9585:2026-02-23 06:49:07 [CRITICAL] - 15543 +1920:9587:2026-02-23 06:49:07 [CRITICAL] - 12836 +1921:9591:2026-02-23 06:49:07 [CRITICAL] - 30358 +1922:9600:2026-02-23 06:49:07 [CRITICAL] - 7030 +1923:9619:2026-02-23 06:49:07 [CRITICAL] - 32743 +1924:9622:2026-02-23 06:49:07 [CRITICAL] - 28006 +1925:9624:2026-02-23 06:49:07 [CRITICAL] - 26883 +1926:9627:2026-02-23 06:49:07 [CRITICAL] - 16948 +1927:9630:2026-02-23 06:49:07 [CRITICAL] - 4158 +1928:9633:2026-02-23 06:49:07 [CRITICAL] - 31676 +1929:9634:2026-02-23 06:49:07 [CRITICAL] - 15346 +1930:9637:2026-02-23 06:49:07 [CRITICAL] - 10340 +1931:9638:2026-02-23 06:49:07 [CRITICAL] - 30413 +1932:9644:2026-02-23 06:49:07 [CRITICAL] - 25180 +1933:9646:2026-02-23 06:49:07 [CRITICAL] - 10439 +1934:9647:2026-02-23 06:49:07 [CRITICAL] - 19834 +1935:9649:2026-02-23 06:49:07 [CRITICAL] - 2833 +1936:9668:2026-02-23 06:49:07 [CRITICAL] - 11485 +1937:9669:2026-02-23 06:49:07 [CRITICAL] - 14146 +1938:9670:2026-02-23 06:49:07 [CRITICAL] - 14491 +1939:9681:2026-02-23 06:49:07 [CRITICAL] - 14964 +1940:9683:2026-02-23 06:49:07 [CRITICAL] - 22310 +1941:9688:2026-02-23 06:49:07 [CRITICAL] - 23256 +1942:9691:2026-02-23 06:49:07 [CRITICAL] - 20024 +1943:9694:2026-02-23 06:49:07 [CRITICAL] - 3425 +1944:9697:2026-02-23 06:49:07 [CRITICAL] - 9535 +1945:9700:2026-02-23 06:49:07 [CRITICAL] - 20634 +1946:9703:2026-02-23 06:49:07 [CRITICAL] - 30490 +1947:9710:2026-02-23 06:49:07 [CRITICAL] - 5933 +1948:9713:2026-02-23 06:49:07 [CRITICAL] - 7916 +1949:9715:2026-02-23 06:49:07 [CRITICAL] - 29662 +1950:9716:2026-02-23 06:49:07 [CRITICAL] - 23797 +1951:9720:2026-02-23 06:49:07 [CRITICAL] - 13602 +1952:9726:2026-02-23 06:49:07 [CRITICAL] - 633 +1953:9728:2026-02-23 06:49:07 [CRITICAL] - 31303 +1954:9732:2026-02-23 06:49:07 [CRITICAL] - 25878 +1955:9739:2026-02-23 06:49:07 [CRITICAL] - 12151 +1956:9754:2026-02-23 06:49:07 [CRITICAL] - 10159 +1957:9755:2026-02-23 06:49:07 [CRITICAL] - 32111 +1958:9758:2026-02-23 06:49:07 [CRITICAL] - 16218 +1959:9763:2026-02-23 06:49:07 [CRITICAL] - 24515 +1960:9765:2026-02-23 06:49:07 [CRITICAL] - 29389 +1961:9773:2026-02-23 06:49:07 [CRITICAL] - 7756 +1962:9775:2026-02-23 06:49:07 [CRITICAL] - 4817 +1963:9781:2026-02-23 06:49:07 [CRITICAL] - 72 +1964:9789:2026-02-23 06:49:07 [CRITICAL] - 3091 +1965:9794:2026-02-23 06:49:07 [CRITICAL] - 14960 +1966:9796:2026-02-23 06:49:07 [CRITICAL] - 30686 +1967:9805:2026-02-23 06:49:07 [CRITICAL] - 24697 +1968:9818:2026-02-23 06:49:07 [CRITICAL] - 10283 +1969:9821:2026-02-23 06:49:07 [CRITICAL] - 8609 +1970:9823:2026-02-23 06:49:07 [CRITICAL] - 16891 +1971:9826:2026-02-23 06:49:07 [CRITICAL] - 13327 +1972:9833:2026-02-23 06:49:07 [CRITICAL] - 16104 +1973:9834:2026-02-23 06:49:07 [CRITICAL] - 394 +1974:9850:2026-02-23 06:49:07 [CRITICAL] - 10522 +1975:9851:2026-02-23 06:49:07 [CRITICAL] - 22257 +1976:9856:2026-02-23 06:49:07 [CRITICAL] - 20703 +1977:9861:2026-02-23 06:49:07 [CRITICAL] - 2938 +1978:9862:2026-02-23 06:49:07 [CRITICAL] - 16085 +1979:9866:2026-02-23 06:49:07 [CRITICAL] - 19856 +1980:9870:2026-02-23 06:49:07 [CRITICAL] - 23764 +1981:9872:2026-02-23 06:49:07 [CRITICAL] - 14875 +1982:9873:2026-02-23 06:49:07 [CRITICAL] - 31724 +1983:9876:2026-02-23 06:49:07 [CRITICAL] - 10369 +1984:9884:2026-02-23 06:49:07 [CRITICAL] - 16666 +1985:9887:2026-02-23 06:49:07 [CRITICAL] - 30547 +1986:9888:2026-02-23 06:49:07 [CRITICAL] - 10395 +1987:9895:2026-02-23 06:49:07 [CRITICAL] - 24405 +1988:9898:2026-02-23 06:49:07 [CRITICAL] - 10825 +1989:9899:2026-02-23 06:49:07 [CRITICAL] - 8739 +1990:9900:2026-02-23 06:49:07 [CRITICAL] - 28106 +1991:9906:2026-02-23 06:49:07 [CRITICAL] - 18821 +1992:9913:2026-02-23 06:49:07 [CRITICAL] - 22908 +1993:9926:2026-02-23 06:49:07 [CRITICAL] - 31342 +1994:9930:2026-02-23 06:49:07 [CRITICAL] - 6525 +1995:9940:2026-02-23 06:49:07 [CRITICAL] - 32224 +1996:9958:2026-02-23 06:49:07 [CRITICAL] - 28172 +1997:9964:2026-02-23 06:49:07 [CRITICAL] - 14729 +1998:9966:2026-02-23 06:49:07 [CRITICAL] - 13466 +1999:9979:2026-02-23 06:49:07 [CRITICAL] - 18326 +2000:9984:2026-02-23 06:49:07 [CRITICAL] - 19775 +2001:9994:2026-02-23 06:49:07 [CRITICAL] - 25464 diff --git a/2026/day-20/scripts/log_analyzer.sh b/2026/day-20/scripts/log_analyzer.sh new file mode 100644 index 0000000000..818b6bcb69 --- /dev/null +++ b/2026/day-20/scripts/log_analyzer.sh @@ -0,0 +1,99 @@ +#!/bin/bash + +set -euo pipefail + +# ============================== +# Log Analyzer Script +# ============================== + +# ---- Input Validation ---- +if [ $# -eq 0 ]; then + echo "ERROR: No log file provided." + echo "Usage: $0 " + exit 1 +fi + +LOG_FILE="$1" + +if [ ! -f "$LOG_FILE" ]; then + echo "ERROR: File '$LOG_FILE' does not exist." + exit 1 +fi + +DATE=$(date +%Y-%m-%d) +REPORT_FILE="log_report_${DATE}.txt" + +TOTAL_LINES=$(wc -l < "$LOG_FILE") + +# ---- Error Count (ERROR or Failed) ---- +ERROR_COUNT=$(grep -Eic "ERROR|Failed" "$LOG_FILE" || true) + +echo "Total ERROR/Failed occurrences: $ERROR_COUNT" + +# ---- Critical Events ---- +echo "" +echo "--- Critical Events ---" +CRITICAL_LINES=$(grep -n "CRITICAL" "$LOG_FILE" || true) + +if [ -z "$CRITICAL_LINES" ]; then + echo "No critical events found." +else + echo "$CRITICAL_LINES" +fi + +# ---- Top 5 Error Messages ---- +echo "" +echo "--- Top 5 Error Messages ---" + +TOP_ERRORS=$(grep -i "ERROR" "$LOG_FILE" \ + | sed -E 's/^[0-9-]+ [0-9:]+ //' \ + | sort \ + | uniq -c \ + | sort -rn \ + | head -5 || true) + +if [ -z "$TOP_ERRORS" ]; then + echo "No ERROR messages found." +else + echo "$TOP_ERRORS" +fi + +# ---- Generate Summary Report ---- +{ + echo "===== Log Analysis Report =====" + echo "Date of Analysis: $DATE" + echo "Log File: $LOG_FILE" + echo "Total Lines Processed: $TOTAL_LINES" + echo "Total ERROR/Failed Count: $ERROR_COUNT" + echo "" + + echo "--- Top 5 Error Messages ---" + if [ -z "$TOP_ERRORS" ]; then + echo "No ERROR messages found." + else + echo "$TOP_ERRORS" + fi + + echo "" + echo "--- Critical Events ---" + if [ -z "$CRITICAL_LINES" ]; then + echo "No critical events found." + else + echo "$CRITICAL_LINES" + fi + +} > "$REPORT_FILE" + +echo "" +echo "Summary report generated: $REPORT_FILE" + +# ---- Optional: Archive Processed Log ---- +ARCHIVE_DIR="archive" + +if [ ! -d "$ARCHIVE_DIR" ]; then + mkdir "$ARCHIVE_DIR" +fi + +mv "$LOG_FILE" "$ARCHIVE_DIR/" + +echo "Log file moved to $ARCHIVE_DIR/" diff --git a/2026/day-20/scripts/log_report_2026-02-23.txt b/2026/day-20/scripts/log_report_2026-02-23.txt new file mode 100644 index 0000000000..3d8fd99a87 --- /dev/null +++ b/2026/day-20/scripts/log_report_2026-02-23.txt @@ -0,0 +1,423 @@ +===== Log Analysis Report ===== +Date of Analysis: 2026-02-23 +Log File: /home/ubuntu/day20/sample_log.log +Total Lines Processed: 2000 +Total ERROR/Failed Count: 396 + +--- Top 5 Error Messages --- + 2 [ERROR] Invalid input - 31046 + 1 [ERROR] Segmentation fault - 9580 + 1 [ERROR] Segmentation fault - 9222 + 1 [ERROR] Segmentation fault - 8188 + 1 [ERROR] Segmentation fault - 7381 + +--- Critical Events --- +12:2026-02-23 12:39:59 [CRITICAL] - 5481 +13:2026-02-23 12:39:59 [CRITICAL] - 16942 +21:2026-02-23 12:39:59 [CRITICAL] - 21304 +23:2026-02-23 12:39:59 [CRITICAL] - 18797 +29:2026-02-23 12:39:59 [CRITICAL] - 29584 +31:2026-02-23 12:39:59 [CRITICAL] - 32110 +33:2026-02-23 12:39:59 [CRITICAL] - 11797 +41:2026-02-23 12:39:59 [CRITICAL] - 20331 +43:2026-02-23 12:39:59 [CRITICAL] - 7622 +45:2026-02-23 12:39:59 [CRITICAL] - 5051 +48:2026-02-23 12:39:59 [CRITICAL] - 4168 +53:2026-02-23 12:39:59 [CRITICAL] - 23202 +57:2026-02-23 12:39:59 [CRITICAL] - 17149 +67:2026-02-23 12:39:59 [CRITICAL] - 10540 +70:2026-02-23 12:39:59 [CRITICAL] - 9807 +81:2026-02-23 12:39:59 [CRITICAL] - 16701 +83:2026-02-23 12:39:59 [CRITICAL] - 16213 +88:2026-02-23 12:39:59 [CRITICAL] - 17814 +89:2026-02-23 12:39:59 [CRITICAL] - 14833 +92:2026-02-23 12:39:59 [CRITICAL] - 9360 +96:2026-02-23 12:39:59 [CRITICAL] - 12715 +97:2026-02-23 12:39:59 [CRITICAL] - 12289 +103:2026-02-23 12:39:59 [CRITICAL] - 12278 +115:2026-02-23 12:39:59 [CRITICAL] - 14454 +116:2026-02-23 12:39:59 [CRITICAL] - 5335 +118:2026-02-23 12:39:59 [CRITICAL] - 26927 +127:2026-02-23 12:39:59 [CRITICAL] - 5600 +138:2026-02-23 12:39:59 [CRITICAL] - 31160 +140:2026-02-23 12:39:59 [CRITICAL] - 1915 +144:2026-02-23 12:39:59 [CRITICAL] - 4085 +151:2026-02-23 12:39:59 [CRITICAL] - 2134 +153:2026-02-23 12:39:59 [CRITICAL] - 7095 +154:2026-02-23 12:39:59 [CRITICAL] - 29224 +156:2026-02-23 12:39:59 [CRITICAL] - 15970 +158:2026-02-23 12:39:59 [CRITICAL] - 16427 +159:2026-02-23 12:39:59 [CRITICAL] - 19458 +169:2026-02-23 12:39:59 [CRITICAL] - 30941 +178:2026-02-23 12:39:59 [CRITICAL] - 21038 +190:2026-02-23 12:39:59 [CRITICAL] - 1004 +194:2026-02-23 12:39:59 [CRITICAL] - 18609 +218:2026-02-23 12:39:59 [CRITICAL] - 25430 +221:2026-02-23 12:39:59 [CRITICAL] - 24192 +224:2026-02-23 12:39:59 [CRITICAL] - 19083 +228:2026-02-23 12:39:59 [CRITICAL] - 25416 +231:2026-02-23 12:39:59 [CRITICAL] - 19155 +234:2026-02-23 12:39:59 [CRITICAL] - 19894 +245:2026-02-23 12:39:59 [CRITICAL] - 16363 +248:2026-02-23 12:39:59 [CRITICAL] - 23718 +270:2026-02-23 12:39:59 [CRITICAL] - 17533 +274:2026-02-23 12:39:59 [CRITICAL] - 2425 +276:2026-02-23 12:39:59 [CRITICAL] - 24931 +281:2026-02-23 12:39:59 [CRITICAL] - 15043 +284:2026-02-23 12:39:59 [CRITICAL] - 7355 +286:2026-02-23 12:39:59 [CRITICAL] - 29202 +289:2026-02-23 12:39:59 [CRITICAL] - 5361 +290:2026-02-23 12:39:59 [CRITICAL] - 15006 +292:2026-02-23 12:39:59 [CRITICAL] - 27195 +294:2026-02-23 12:39:59 [CRITICAL] - 8555 +296:2026-02-23 12:39:59 [CRITICAL] - 23549 +298:2026-02-23 12:39:59 [CRITICAL] - 22802 +303:2026-02-23 12:39:59 [CRITICAL] - 32008 +305:2026-02-23 12:39:59 [CRITICAL] - 5763 +307:2026-02-23 12:40:00 [CRITICAL] - 5267 +310:2026-02-23 12:40:00 [CRITICAL] - 14636 +311:2026-02-23 12:40:00 [CRITICAL] - 230 +315:2026-02-23 12:40:00 [CRITICAL] - 29612 +317:2026-02-23 12:40:00 [CRITICAL] - 24365 +318:2026-02-23 12:40:00 [CRITICAL] - 15845 +320:2026-02-23 12:40:00 [CRITICAL] - 32690 +321:2026-02-23 12:40:00 [CRITICAL] - 20940 +337:2026-02-23 12:40:00 [CRITICAL] - 9769 +364:2026-02-23 12:40:00 [CRITICAL] - 28407 +365:2026-02-23 12:40:00 [CRITICAL] - 10420 +366:2026-02-23 12:40:00 [CRITICAL] - 5547 +368:2026-02-23 12:40:00 [CRITICAL] - 26217 +378:2026-02-23 12:40:00 [CRITICAL] - 1143 +382:2026-02-23 12:40:00 [CRITICAL] - 2434 +385:2026-02-23 12:40:00 [CRITICAL] - 11215 +388:2026-02-23 12:40:00 [CRITICAL] - 23131 +390:2026-02-23 12:40:00 [CRITICAL] - 18758 +398:2026-02-23 12:40:00 [CRITICAL] - 31 +401:2026-02-23 12:40:00 [CRITICAL] - 27444 +404:2026-02-23 12:40:00 [CRITICAL] - 11773 +408:2026-02-23 12:40:00 [CRITICAL] - 2298 +413:2026-02-23 12:40:00 [CRITICAL] - 13683 +419:2026-02-23 12:40:00 [CRITICAL] - 26133 +428:2026-02-23 12:40:00 [CRITICAL] - 1225 +431:2026-02-23 12:40:00 [CRITICAL] - 15255 +432:2026-02-23 12:40:00 [CRITICAL] - 12991 +439:2026-02-23 12:40:00 [CRITICAL] - 23464 +440:2026-02-23 12:40:00 [CRITICAL] - 3634 +453:2026-02-23 12:40:00 [CRITICAL] - 10150 +454:2026-02-23 12:40:00 [CRITICAL] - 15259 +457:2026-02-23 12:40:00 [CRITICAL] - 26562 +469:2026-02-23 12:40:00 [CRITICAL] - 810 +481:2026-02-23 12:40:00 [CRITICAL] - 9833 +485:2026-02-23 12:40:00 [CRITICAL] - 23537 +487:2026-02-23 12:40:00 [CRITICAL] - 9222 +491:2026-02-23 12:40:00 [CRITICAL] - 32446 +496:2026-02-23 12:40:00 [CRITICAL] - 7173 +498:2026-02-23 12:40:00 [CRITICAL] - 22858 +503:2026-02-23 12:40:00 [CRITICAL] - 32471 +509:2026-02-23 12:40:00 [CRITICAL] - 21207 +514:2026-02-23 12:40:00 [CRITICAL] - 16719 +515:2026-02-23 12:40:00 [CRITICAL] - 27908 +526:2026-02-23 12:40:00 [CRITICAL] - 4512 +528:2026-02-23 12:40:00 [CRITICAL] - 20537 +535:2026-02-23 12:40:00 [CRITICAL] - 27456 +541:2026-02-23 12:40:00 [CRITICAL] - 12199 +546:2026-02-23 12:40:00 [CRITICAL] - 9926 +548:2026-02-23 12:40:00 [CRITICAL] - 17378 +550:2026-02-23 12:40:00 [CRITICAL] - 31358 +551:2026-02-23 12:40:00 [CRITICAL] - 4829 +558:2026-02-23 12:40:00 [CRITICAL] - 11276 +561:2026-02-23 12:40:00 [CRITICAL] - 32517 +562:2026-02-23 12:40:00 [CRITICAL] - 7710 +564:2026-02-23 12:40:00 [CRITICAL] - 26727 +568:2026-02-23 12:40:00 [CRITICAL] - 14565 +572:2026-02-23 12:40:00 [CRITICAL] - 28494 +579:2026-02-23 12:40:00 [CRITICAL] - 5216 +588:2026-02-23 12:40:00 [CRITICAL] - 12683 +592:2026-02-23 12:40:00 [CRITICAL] - 18898 +596:2026-02-23 12:40:00 [CRITICAL] - 22860 +606:2026-02-23 12:40:00 [CRITICAL] - 21783 +607:2026-02-23 12:40:00 [CRITICAL] - 16632 +609:2026-02-23 12:40:00 [CRITICAL] - 23723 +610:2026-02-23 12:40:00 [CRITICAL] - 14784 +619:2026-02-23 12:40:00 [CRITICAL] - 23499 +620:2026-02-23 12:40:00 [CRITICAL] - 8309 +624:2026-02-23 12:40:00 [CRITICAL] - 29048 +626:2026-02-23 12:40:00 [CRITICAL] - 5995 +629:2026-02-23 12:40:00 [CRITICAL] - 12843 +630:2026-02-23 12:40:00 [CRITICAL] - 30984 +633:2026-02-23 12:40:00 [CRITICAL] - 7003 +641:2026-02-23 12:40:00 [CRITICAL] - 27147 +644:2026-02-23 12:40:00 [CRITICAL] - 22405 +654:2026-02-23 12:40:00 [CRITICAL] - 22813 +659:2026-02-23 12:40:00 [CRITICAL] - 24703 +664:2026-02-23 12:40:00 [CRITICAL] - 7400 +674:2026-02-23 12:40:00 [CRITICAL] - 10395 +681:2026-02-23 12:40:00 [CRITICAL] - 26077 +683:2026-02-23 12:40:00 [CRITICAL] - 32638 +687:2026-02-23 12:40:00 [CRITICAL] - 28564 +694:2026-02-23 12:40:00 [CRITICAL] - 12032 +695:2026-02-23 12:40:00 [CRITICAL] - 2473 +701:2026-02-23 12:40:00 [CRITICAL] - 15145 +704:2026-02-23 12:40:00 [CRITICAL] - 7869 +706:2026-02-23 12:40:00 [CRITICAL] - 31902 +709:2026-02-23 12:40:00 [CRITICAL] - 1579 +711:2026-02-23 12:40:00 [CRITICAL] - 11643 +719:2026-02-23 12:40:00 [CRITICAL] - 11731 +723:2026-02-23 12:40:00 [CRITICAL] - 23293 +732:2026-02-23 12:40:00 [CRITICAL] - 1651 +744:2026-02-23 12:40:00 [CRITICAL] - 21036 +750:2026-02-23 12:40:00 [CRITICAL] - 18820 +751:2026-02-23 12:40:00 [CRITICAL] - 12535 +755:2026-02-23 12:40:00 [CRITICAL] - 31836 +763:2026-02-23 12:40:00 [CRITICAL] - 24392 +767:2026-02-23 12:40:00 [CRITICAL] - 31282 +775:2026-02-23 12:40:00 [CRITICAL] - 4756 +776:2026-02-23 12:40:00 [CRITICAL] - 9376 +777:2026-02-23 12:40:00 [CRITICAL] - 11171 +779:2026-02-23 12:40:00 [CRITICAL] - 30625 +787:2026-02-23 12:40:00 [CRITICAL] - 3611 +789:2026-02-23 12:40:00 [CRITICAL] - 9737 +791:2026-02-23 12:40:00 [CRITICAL] - 7352 +792:2026-02-23 12:40:00 [CRITICAL] - 18088 +795:2026-02-23 12:40:00 [CRITICAL] - 5537 +796:2026-02-23 12:40:00 [CRITICAL] - 10740 +801:2026-02-23 12:40:00 [CRITICAL] - 16834 +804:2026-02-23 12:40:00 [CRITICAL] - 9749 +811:2026-02-23 12:40:00 [CRITICAL] - 8449 +825:2026-02-23 12:40:00 [CRITICAL] - 16903 +827:2026-02-23 12:40:00 [CRITICAL] - 7315 +828:2026-02-23 12:40:00 [CRITICAL] - 6398 +830:2026-02-23 12:40:00 [CRITICAL] - 26473 +831:2026-02-23 12:40:00 [CRITICAL] - 32474 +832:2026-02-23 12:40:00 [CRITICAL] - 17228 +834:2026-02-23 12:40:00 [CRITICAL] - 12031 +835:2026-02-23 12:40:00 [CRITICAL] - 26464 +838:2026-02-23 12:40:00 [CRITICAL] - 6520 +839:2026-02-23 12:40:00 [CRITICAL] - 16024 +842:2026-02-23 12:40:00 [CRITICAL] - 19218 +848:2026-02-23 12:40:00 [CRITICAL] - 21021 +849:2026-02-23 12:40:00 [CRITICAL] - 19338 +852:2026-02-23 12:40:00 [CRITICAL] - 31300 +860:2026-02-23 12:40:00 [CRITICAL] - 10076 +866:2026-02-23 12:40:00 [CRITICAL] - 21010 +867:2026-02-23 12:40:00 [CRITICAL] - 15253 +869:2026-02-23 12:40:00 [CRITICAL] - 31994 +874:2026-02-23 12:40:00 [CRITICAL] - 7368 +877:2026-02-23 12:40:00 [CRITICAL] - 24544 +878:2026-02-23 12:40:00 [CRITICAL] - 22183 +897:2026-02-23 12:40:00 [CRITICAL] - 20036 +907:2026-02-23 12:40:00 [CRITICAL] - 20608 +914:2026-02-23 12:40:00 [CRITICAL] - 31017 +918:2026-02-23 12:40:00 [CRITICAL] - 3107 +932:2026-02-23 12:40:00 [CRITICAL] - 27050 +934:2026-02-23 12:40:00 [CRITICAL] - 23635 +943:2026-02-23 12:40:00 [CRITICAL] - 4603 +947:2026-02-23 12:40:00 [CRITICAL] - 2005 +949:2026-02-23 12:40:00 [CRITICAL] - 11427 +952:2026-02-23 12:40:00 [CRITICAL] - 217 +970:2026-02-23 12:40:00 [CRITICAL] - 17785 +976:2026-02-23 12:40:00 [CRITICAL] - 18302 +982:2026-02-23 12:40:00 [CRITICAL] - 25370 +990:2026-02-23 12:40:00 [CRITICAL] - 27581 +998:2026-02-23 12:40:00 [CRITICAL] - 29223 +1006:2026-02-23 12:40:00 [CRITICAL] - 10777 +1007:2026-02-23 12:40:00 [CRITICAL] - 29173 +1012:2026-02-23 12:40:00 [CRITICAL] - 25948 +1017:2026-02-23 12:40:00 [CRITICAL] - 24589 +1032:2026-02-23 12:40:00 [CRITICAL] - 884 +1035:2026-02-23 12:40:00 [CRITICAL] - 12635 +1040:2026-02-23 12:40:00 [CRITICAL] - 19141 +1043:2026-02-23 12:40:00 [CRITICAL] - 3559 +1049:2026-02-23 12:40:00 [CRITICAL] - 6025 +1057:2026-02-23 12:40:00 [CRITICAL] - 15021 +1058:2026-02-23 12:40:00 [CRITICAL] - 1835 +1068:2026-02-23 12:40:01 [CRITICAL] - 8049 +1071:2026-02-23 12:40:01 [CRITICAL] - 22330 +1073:2026-02-23 12:40:01 [CRITICAL] - 16142 +1079:2026-02-23 12:40:01 [CRITICAL] - 11972 +1086:2026-02-23 12:40:01 [CRITICAL] - 5078 +1096:2026-02-23 12:40:01 [CRITICAL] - 1911 +1100:2026-02-23 12:40:01 [CRITICAL] - 20705 +1103:2026-02-23 12:40:01 [CRITICAL] - 1062 +1107:2026-02-23 12:40:01 [CRITICAL] - 28082 +1110:2026-02-23 12:40:01 [CRITICAL] - 22308 +1111:2026-02-23 12:40:01 [CRITICAL] - 22938 +1122:2026-02-23 12:40:01 [CRITICAL] - 22582 +1138:2026-02-23 12:40:01 [CRITICAL] - 23728 +1139:2026-02-23 12:40:01 [CRITICAL] - 26347 +1141:2026-02-23 12:40:01 [CRITICAL] - 28423 +1144:2026-02-23 12:40:01 [CRITICAL] - 6359 +1147:2026-02-23 12:40:01 [CRITICAL] - 2985 +1151:2026-02-23 12:40:01 [CRITICAL] - 22478 +1152:2026-02-23 12:40:01 [CRITICAL] - 30705 +1157:2026-02-23 12:40:01 [CRITICAL] - 9360 +1158:2026-02-23 12:40:01 [CRITICAL] - 1474 +1169:2026-02-23 12:40:01 [CRITICAL] - 6512 +1175:2026-02-23 12:40:01 [CRITICAL] - 7127 +1178:2026-02-23 12:40:01 [CRITICAL] - 20014 +1181:2026-02-23 12:40:01 [CRITICAL] - 32255 +1184:2026-02-23 12:40:01 [CRITICAL] - 32701 +1188:2026-02-23 12:40:01 [CRITICAL] - 14277 +1189:2026-02-23 12:40:01 [CRITICAL] - 29824 +1194:2026-02-23 12:40:01 [CRITICAL] - 3946 +1195:2026-02-23 12:40:01 [CRITICAL] - 452 +1198:2026-02-23 12:40:01 [CRITICAL] - 22298 +1206:2026-02-23 12:40:01 [CRITICAL] - 17247 +1210:2026-02-23 12:40:01 [CRITICAL] - 21325 +1220:2026-02-23 12:40:01 [CRITICAL] - 20414 +1224:2026-02-23 12:40:01 [CRITICAL] - 27348 +1231:2026-02-23 12:40:01 [CRITICAL] - 7751 +1233:2026-02-23 12:40:01 [CRITICAL] - 8190 +1243:2026-02-23 12:40:01 [CRITICAL] - 6801 +1247:2026-02-23 12:40:01 [CRITICAL] - 25754 +1250:2026-02-23 12:40:01 [CRITICAL] - 3857 +1251:2026-02-23 12:40:01 [CRITICAL] - 27780 +1278:2026-02-23 12:40:01 [CRITICAL] - 3126 +1282:2026-02-23 12:40:01 [CRITICAL] - 18275 +1283:2026-02-23 12:40:01 [CRITICAL] - 20660 +1284:2026-02-23 12:40:01 [CRITICAL] - 14929 +1293:2026-02-23 12:40:01 [CRITICAL] - 25641 +1299:2026-02-23 12:40:01 [CRITICAL] - 4918 +1302:2026-02-23 12:40:01 [CRITICAL] - 4000 +1304:2026-02-23 12:40:01 [CRITICAL] - 2498 +1312:2026-02-23 12:40:01 [CRITICAL] - 12909 +1317:2026-02-23 12:40:01 [CRITICAL] - 13855 +1319:2026-02-23 12:40:01 [CRITICAL] - 5914 +1320:2026-02-23 12:40:01 [CRITICAL] - 12994 +1329:2026-02-23 12:40:01 [CRITICAL] - 19876 +1330:2026-02-23 12:40:01 [CRITICAL] - 12915 +1334:2026-02-23 12:40:01 [CRITICAL] - 6384 +1335:2026-02-23 12:40:01 [CRITICAL] - 2425 +1345:2026-02-23 12:40:01 [CRITICAL] - 24098 +1346:2026-02-23 12:40:01 [CRITICAL] - 30163 +1349:2026-02-23 12:40:01 [CRITICAL] - 11143 +1352:2026-02-23 12:40:01 [CRITICAL] - 2577 +1354:2026-02-23 12:40:01 [CRITICAL] - 24332 +1360:2026-02-23 12:40:01 [CRITICAL] - 5182 +1363:2026-02-23 12:40:01 [CRITICAL] - 6666 +1387:2026-02-23 12:40:01 [CRITICAL] - 11197 +1398:2026-02-23 12:40:01 [CRITICAL] - 32666 +1411:2026-02-23 12:40:01 [CRITICAL] - 23850 +1413:2026-02-23 12:40:01 [CRITICAL] - 30410 +1415:2026-02-23 12:40:01 [CRITICAL] - 26090 +1418:2026-02-23 12:40:01 [CRITICAL] - 16812 +1421:2026-02-23 12:40:01 [CRITICAL] - 15085 +1422:2026-02-23 12:40:01 [CRITICAL] - 8749 +1428:2026-02-23 12:40:01 [CRITICAL] - 8062 +1440:2026-02-23 12:40:01 [CRITICAL] - 2915 +1444:2026-02-23 12:40:01 [CRITICAL] - 31396 +1447:2026-02-23 12:40:01 [CRITICAL] - 28522 +1451:2026-02-23 12:40:01 [CRITICAL] - 31252 +1457:2026-02-23 12:40:02 [CRITICAL] - 1799 +1463:2026-02-23 12:40:02 [CRITICAL] - 5129 +1473:2026-02-23 12:40:02 [CRITICAL] - 31394 +1476:2026-02-23 12:40:02 [CRITICAL] - 32695 +1478:2026-02-23 12:40:02 [CRITICAL] - 19959 +1495:2026-02-23 12:40:02 [CRITICAL] - 18381 +1505:2026-02-23 12:40:02 [CRITICAL] - 16241 +1506:2026-02-23 12:40:02 [CRITICAL] - 8885 +1507:2026-02-23 12:40:02 [CRITICAL] - 11516 +1523:2026-02-23 12:40:02 [CRITICAL] - 6402 +1536:2026-02-23 12:40:02 [CRITICAL] - 32644 +1544:2026-02-23 12:40:02 [CRITICAL] - 12360 +1545:2026-02-23 12:40:02 [CRITICAL] - 31835 +1546:2026-02-23 12:40:02 [CRITICAL] - 26124 +1547:2026-02-23 12:40:02 [CRITICAL] - 29192 +1551:2026-02-23 12:40:02 [CRITICAL] - 19198 +1552:2026-02-23 12:40:02 [CRITICAL] - 10837 +1560:2026-02-23 12:40:02 [CRITICAL] - 16807 +1570:2026-02-23 12:40:02 [CRITICAL] - 13598 +1577:2026-02-23 12:40:02 [CRITICAL] - 2406 +1579:2026-02-23 12:40:02 [CRITICAL] - 13522 +1604:2026-02-23 12:40:02 [CRITICAL] - 32500 +1607:2026-02-23 12:40:02 [CRITICAL] - 21376 +1609:2026-02-23 12:40:02 [CRITICAL] - 3335 +1616:2026-02-23 12:40:02 [CRITICAL] - 30272 +1617:2026-02-23 12:40:02 [CRITICAL] - 9022 +1623:2026-02-23 12:40:02 [CRITICAL] - 19209 +1628:2026-02-23 12:40:02 [CRITICAL] - 18170 +1633:2026-02-23 12:40:02 [CRITICAL] - 25783 +1636:2026-02-23 12:40:02 [CRITICAL] - 29667 +1644:2026-02-23 12:40:02 [CRITICAL] - 16892 +1646:2026-02-23 12:40:02 [CRITICAL] - 11011 +1655:2026-02-23 12:40:02 [CRITICAL] - 23886 +1656:2026-02-23 12:40:02 [CRITICAL] - 24792 +1661:2026-02-23 12:40:02 [CRITICAL] - 16930 +1663:2026-02-23 12:40:02 [CRITICAL] - 5733 +1669:2026-02-23 12:40:02 [CRITICAL] - 21336 +1676:2026-02-23 12:40:02 [CRITICAL] - 14337 +1680:2026-02-23 12:40:02 [CRITICAL] - 26901 +1689:2026-02-23 12:40:02 [CRITICAL] - 9113 +1691:2026-02-23 12:40:02 [CRITICAL] - 30288 +1694:2026-02-23 12:40:02 [CRITICAL] - 25624 +1701:2026-02-23 12:40:02 [CRITICAL] - 13865 +1702:2026-02-23 12:40:02 [CRITICAL] - 17008 +1703:2026-02-23 12:40:02 [CRITICAL] - 12933 +1705:2026-02-23 12:40:02 [CRITICAL] - 23841 +1712:2026-02-23 12:40:02 [CRITICAL] - 12856 +1716:2026-02-23 12:40:02 [CRITICAL] - 26336 +1719:2026-02-23 12:40:02 [CRITICAL] - 21348 +1726:2026-02-23 12:40:02 [CRITICAL] - 28988 +1730:2026-02-23 12:40:02 [CRITICAL] - 27737 +1734:2026-02-23 12:40:02 [CRITICAL] - 4172 +1736:2026-02-23 12:40:02 [CRITICAL] - 1774 +1741:2026-02-23 12:40:02 [CRITICAL] - 17590 +1745:2026-02-23 12:40:02 [CRITICAL] - 830 +1748:2026-02-23 12:40:02 [CRITICAL] - 1266 +1750:2026-02-23 12:40:02 [CRITICAL] - 2061 +1751:2026-02-23 12:40:02 [CRITICAL] - 3609 +1752:2026-02-23 12:40:02 [CRITICAL] - 26981 +1758:2026-02-23 12:40:02 [CRITICAL] - 13084 +1762:2026-02-23 12:40:02 [CRITICAL] - 24738 +1766:2026-02-23 12:40:02 [CRITICAL] - 20625 +1772:2026-02-23 12:40:02 [CRITICAL] - 12387 +1773:2026-02-23 12:40:02 [CRITICAL] - 9224 +1774:2026-02-23 12:40:02 [CRITICAL] - 3170 +1780:2026-02-23 12:40:02 [CRITICAL] - 15055 +1782:2026-02-23 12:40:02 [CRITICAL] - 2519 +1783:2026-02-23 12:40:02 [CRITICAL] - 15275 +1785:2026-02-23 12:40:02 [CRITICAL] - 24023 +1786:2026-02-23 12:40:02 [CRITICAL] - 4015 +1792:2026-02-23 12:40:02 [CRITICAL] - 10135 +1793:2026-02-23 12:40:02 [CRITICAL] - 17185 +1804:2026-02-23 12:40:02 [CRITICAL] - 5333 +1809:2026-02-23 12:40:02 [CRITICAL] - 21774 +1815:2026-02-23 12:40:02 [CRITICAL] - 8605 +1820:2026-02-23 12:40:02 [CRITICAL] - 7742 +1829:2026-02-23 12:40:02 [CRITICAL] - 20068 +1832:2026-02-23 12:40:02 [CRITICAL] - 2555 +1836:2026-02-23 12:40:02 [CRITICAL] - 31459 +1840:2026-02-23 12:40:02 [CRITICAL] - 28929 +1841:2026-02-23 12:40:02 [CRITICAL] - 8399 +1847:2026-02-23 12:40:02 [CRITICAL] - 13106 +1849:2026-02-23 12:40:02 [CRITICAL] - 5429 +1852:2026-02-23 12:40:02 [CRITICAL] - 17334 +1853:2026-02-23 12:40:02 [CRITICAL] - 21554 +1855:2026-02-23 12:40:02 [CRITICAL] - 986 +1858:2026-02-23 12:40:02 [CRITICAL] - 8227 +1859:2026-02-23 12:40:02 [CRITICAL] - 20076 +1864:2026-02-23 12:40:02 [CRITICAL] - 10541 +1888:2026-02-23 12:40:02 [CRITICAL] - 26111 +1897:2026-02-23 12:40:02 [CRITICAL] - 17933 +1898:2026-02-23 12:40:02 [CRITICAL] - 6739 +1903:2026-02-23 12:40:02 [CRITICAL] - 29376 +1906:2026-02-23 12:40:02 [CRITICAL] - 11755 +1907:2026-02-23 12:40:02 [CRITICAL] - 8405 +1912:2026-02-23 12:40:02 [CRITICAL] - 18145 +1920:2026-02-23 12:40:02 [CRITICAL] - 32636 +1922:2026-02-23 12:40:02 [CRITICAL] - 5883 +1923:2026-02-23 12:40:02 [CRITICAL] - 20540 +1925:2026-02-23 12:40:02 [CRITICAL] - 15071 +1926:2026-02-23 12:40:02 [CRITICAL] - 20092 +1928:2026-02-23 12:40:02 [CRITICAL] - 11806 +1942:2026-02-23 12:40:02 [CRITICAL] - 31510 +1945:2026-02-23 12:40:02 [CRITICAL] - 14380 +1946:2026-02-23 12:40:02 [CRITICAL] - 21151 +1965:2026-02-23 12:40:02 [CRITICAL] - 32065 +1973:2026-02-23 12:40:02 [CRITICAL] - 12662 +1981:2026-02-23 12:40:02 [CRITICAL] - 26949 +1985:2026-02-23 12:40:02 [CRITICAL] - 9915 +1988:2026-02-23 12:40:02 [CRITICAL] - 16882 +1989:2026-02-23 12:40:02 [CRITICAL] - 910 +1990:2026-02-23 12:40:02 [CRITICAL] - 28876 +2000:2026-02-23 12:40:02 [CRITICAL] - 6817 diff --git a/2026/day-20/scripts/sample_log_generator.sh b/2026/day-20/scripts/sample_log_generator.sh new file mode 100644 index 0000000000..1058333381 --- /dev/null +++ b/2026/day-20/scripts/sample_log_generator.sh @@ -0,0 +1,40 @@ +#!/bin/bash + +# Usage: ./log_generator.sh + +if [ "$#" -ne 2 ]; then + echo "Usage: $0 " + exit 1 +fi + +log_file_path="$1" +num_lines="$2" + +if [ -e "$log_file_path" ]; then + echo "Error: File already exists at $log_file_path." + exit 1 +fi + +# List of possible log message levels +log_levels=("INFO" "DEBUG" "ERROR" "WARNING" "CRITICAL") + +# List of possible error messages +error_messages=("Failed to connect" "Disk full" "Segmentation fault" "Invalid input" "Out of memory") + +# Function to generate a random log line +generate_log_line() { + local log_level="${log_levels[$((RANDOM % ${#log_levels[@]}))]}" + local error_msg="" + if [ "$log_level" == "ERROR" ]; then + error_msg="${error_messages[$((RANDOM % ${#error_messages[@]}))]}" + fi + echo "$(date '+%Y-%m-%d %H:%M:%S') [$log_level] $error_msg - $RANDOM" +} + +# Create the log file with random log lines +touch "$log_file_path" +for ((i=0; i> "$log_file_path" +done + +echo "Log file created at: $log_file_path with $num_lines lines." diff --git a/2026/day-21/shell_scripting_cheatsheet.md b/2026/day-21/shell_scripting_cheatsheet.md new file mode 100644 index 0000000000..11c63bb578 --- /dev/null +++ b/2026/day-21/shell_scripting_cheatsheet.md @@ -0,0 +1,150 @@ +# Day 21 – Shell Scripting Cheat Sheet: + +--- + +# 1 Script Basics + +| Topic | Syntax | Why We Use It | What It Does | How It Works | +| --------------- | ------------------ | --------------------- | --------------------------- | ----------------------------------------- | +| Shebang | `#!/bin/bash` | Ensure correct shell | Runs script with Bash | OS reads first line to choose interpreter | +| Make Executable | `chmod +x file.sh` | Allow execution | Adds execute permission | Changes file mode bits | +| Run Script | `./file.sh` | Execute script | Runs commands inside file | Shell loads and executes line by line | +| Comment | `# comment` | Explain code | Ignored by shell | Shell skips lines starting with `#` | +| Variable | `VAR="value"` | Store data | Saves value in memory | Bash assigns string to name | +| Use Variable | `"$VAR"` | Avoid errors | Expands value safely | Quotes prevent word splitting | +| Read Input | `read name` | Get user input | Stores typed value | Reads from stdin | +| Arguments | `$1`, `$@`, `$#` | Accept external input | Access passed parameters | Bash stores args in positional variables | +| Exit Code | `$?` | Check success | Returns last command status | 0 = success, non-zero = error | + +--- + +# 2️ Conditionals & Tests + +| Feature | Syntax | Why We Use It | What It Checks | How It Works | +| ---------------- | ------------------- | ---------------- | ---------------------- | ----------------------------------- | +| String Compare | `[ "$a" = "$b" ]` | Compare text | If values match | `[` is a test command | +| Empty Check | `[ -z "$a" ]` | Validate input | If variable empty | `-z` checks string length | +| Number Compare | `[ "$a" -gt 5 ]` | Compare numbers | Greater than | Numeric test operator | +| File Exists | `[ -f file ]` | Validate file | If regular file exists | Checks file metadata | +| Directory Exists | `[ -d dir ]` | Validate folder | If directory exists | Checks file type | +| AND | `cmd && echo ok` | Run if success | Executes next if true | Second runs only if first returns 0 | +| OR | `cmd\|\| echo fail` | Handle failure | Runs if error | Executes if first fails | +| If Statement | `if [ cond ]; then` | Decision making | Runs block if true | Evaluates condition exit status | +| Case | `case $1 in` | Multiple options | Matches patterns | Compares value against patterns | + +--- + +# 3️ Loops + +| Loop Type | Syntax | Why We Use It | What It Does | How It Works | +| ------------ | --------------------- | ---------------------- | ------------------- | --------------------------- | +| For Loop | `for i in list; do` | Repeat over list | Iterates items | Expands list then loops | +| C-Style Loop | `for ((i=0;i<5;i++))` | Counter loops | Runs fixed times | Uses arithmetic evaluation | +| While Loop | `while read line` | Read data line-by-line | Processes input | Runs while condition true | +| Until Loop | `until cmd` | Wait for success | Runs until true | Opposite of while | +| Break | `break` | Stop loop early | Exits loop | Terminates loop immediately | +| Continue | `continue` | Skip iteration | Moves to next cycle | Skips remaining commands | + +--- + +# 4️ Functions + +| Feature | Syntax | Why We Use It | What It Does | How It Works | +| ------------ | ------------- | --------------- | ----------------------- | --------------------------- | +| Define | `name() {}` | Reuse code | Creates reusable block | Stored in shell memory | +| Call | `name` | Execute logic | Runs function code | Executes block when called | +| Arguments | `$1 $2` | Pass data | Access parameters | Positional inside function | +| Return Code | `return 1` | Signal status | Sends numeric exit code | 0–255 allowed | +| Return Value | `echo result` | Output data | Prints result | Capture using `$(function)` | +| Local Var | `local var=1` | Avoid conflicts | Limits scope | Exists only inside function | + +--- + +# 5️ Text Processing Tools + +## Grep + +| Command | Why | What It Does | How It Works | +| ------------------- | ----------- | -------------------- | --------------------------- | +| `grep "error" file` | Search logs | Finds matching lines | Uses regex pattern matching | +| `-i` | Ignore case | Case insensitive | Converts internally | +| `-r` | Recursive | Search folders | Traverses directories | +| `-n` | Show line | Debugging | Prints line number | +| `-c` | Count | Quick metrics | Counts matches | + +--- + +## Sed + +| Command | Why | What It Does | How It Works | +| --------------- | ------------ | ----------------- | ------------------------------------ | +| `sed 's/a/b/g'` | Replace text | Substitutes words | Stream editor processes line-by-line | +| `-i` | Modify file | In-place edit | Writes changes to file | +| `/pattern/d` | Remove lines | Delete matches | Skips matched lines | + +--- + +## Awk + +| Command | Why | What It Does | How It Works | +| ------------------ | ---------------- | ---------------- | ----------------------------- | +| `awk '{print $1}'` | Extract columns | Prints field 1 | Splits line into fields | +| `-F:` | Custom delimiter | Change separator | Uses provided field separator | +| `/ERROR/ {print}` | Filter rows | Pattern match | Executes action if matched | + +--- + +## Other Useful Commands + +| Command | Why | What It Does | +| --------- | ---------------- | -------------------------- | +| `cut` | Extract fields | Select column by delimiter | +| `sort -n` | Order numbers | Numeric sorting | +| `uniq -c` | Count duplicates | Groups identical lines | +| `wc -l` | Count lines | File metrics | +| `tail -f` | Monitor logs | Real-time updates | + +--- + +# 6️ Useful One-Liners (Real DevOps) + +| Task | Command | Why It’s Useful | +| ------------------- | ----------------------------- | ---------------- | +| Delete old files | `find . -mtime +7 -delete` | Clean disk space | +| Count logs | `wc -l *.log` | Quick monitoring | +| Replace config text | `sed -i 's/old/new/g' *.conf` | Bulk changes | +| Check service | `systemctl is-active nginx` | Service health | +| Disk usage alert | `df -h \| awk '$5+0 > 80'` | Prevent outages | +| Live error monitor | `tail -f app.log\| grep ERROR`| Real-time debugging | + +--- + +# 7️ Error Handling & Debugging + +| Command | Why | What It Does | How It Works | +| ------------------- | ------------------ | ----------------------- | ---------------------------- | +| `exit 0/1` | Control status | Signals success/failure | Sends exit code to OS | +| `$?` | Check result | Gets last status | Stores previous command code | +| `set -e` | Safer scripts | Exit on error | Stops script on failure | +| `set -u` | Catch typos | Error on unset var | Prevents silent bugs | +| `set -o pipefail` | Detect pipe errors | Fails if any pipe fails | Tracks full pipeline | +| `set -x` | Debug mode | Show commands running | Prints execution trace | +| `trap cleanup EXIT` | Cleanup | Run before exit | Hooks into exit signal | + +Recommended header for production: + +```bash +set -euo pipefail +``` + +--- + +# Core Principles (Remember These) + +* Always use quote variables → `"$VAR"` +* Use `if` to validate inputs early. +* Use exit codes for automation reliability. +* Combine small tools using pipes. +* Test scripts before scheduling with cron. + +--- diff --git a/2026/day-22/day-22-notes.md b/2026/day-22/day-22-notes.md new file mode 100644 index 0000000000..ca153572b6 --- /dev/null +++ b/2026/day-22/day-22-notes.md @@ -0,0 +1,319 @@ +# Day 22 – Introduction to Git: Your First Repository +-------- + +```bash +amitp@Amit MINGW64 ~/Downloads/devops-git-practice (master) +$ git status +On branch master + +No commits yet + +nothing to commit (create/copy files and use "git add" to track) +``` +```bash +amitp@Amit MINGW64 ~/Downloads/devops-git-practice (master) +$ ls -la +total 28 +drwxr-xr-x 1 amitp 197609 0 Feb 23 22:23 ./ +drwxr-xr-x 1 amitp 197609 0 Feb 23 22:22 ../ +drwxr-xr-x 1 amitp 197609 0 Feb 23 22:24 .git/ +``` +```bash +amitp@Amit MINGW64 ~/Downloads/devops-git-practice/.git (GIT_DIR!) +$ ls -la +total 11 +drwxr-xr-x 1 amitp 197609 0 Feb 23 22:24 ./ +drwxr-xr-x 1 amitp 197609 0 Feb 23 22:23 ../ +-rw-r--r-- 1 amitp 197609 130 Feb 23 22:23 config +-rw-r--r-- 1 amitp 197609 73 Feb 23 22:23 description +-rw-r--r-- 1 amitp 197609 23 Feb 23 22:23 HEAD +drwxr-xr-x 1 amitp 197609 0 Feb 23 22:23 hooks/ +drwxr-xr-x 1 amitp 197609 0 Feb 23 22:23 info/ +drwxr-xr-x 1 amitp 197609 0 Feb 23 22:23 objects/ +drwxr-xr-x 1 amitp 197609 0 Feb 23 22:23 refs/ + +``` +```bash +amitp@Amit MINGW64 ~/Downloads/devops-git-practice (master) +$ ls +git-commands.md +``` +```bash +amitp@Amit MINGW64 ~/Downloads/devops-git-practice (master) +$ git status +On branch master + +No commits yet + +Untracked files: + (use "git add ..." to include in what will be committed) + git-commands.md + +nothing added to commit but untracked files present (use "git add" to track) +``` +```bash +amitp@Amit MINGW64 ~/Downloads/devops-git-practice (master) +$ git add git-commands.md +warning: in the working copy of 'git-commands.md', LF will be replaced by CRLF the next time Git touches it +``` +```bash +amitp@Amit MINGW64 ~/Downloads/devops-git-practice (master) +$ git status +On branch master + +No commits yet + +Changes to be committed: + (use "git rm --cached ..." to unstage) + new file: git-commands.md +``` +```bash +amitp@Amit MINGW64 ~/Downloads/devops-git-practice (master) +$ git commit -m "Add initialize git-commands ref file" +[master (root-commit) 87f5343] Add initialize git-commands ref file + 1 file changed, 44 insertions(+) + create mode 100644 git-commands.md +``` +```bash +amitp@Amit MINGW64 ~/Downloads/devops-git-practice (master) +$ git status +On branch master +nothing to commit, working tree clean +``` +```bash +amitp@Amit MINGW64 ~/Downloads/devops-git-practice (master) +$ git log +commit 87f5343bad2df18a17fa90564b064ea61c30b269 (HEAD -> master) +Author: sumit9165 +Date: Mon Feb 23 22:56:45 2026 +0530 + + Add initialize git-commands ref file +``` +```bash +amitp@Amit MINGW64 ~/Downloads/devops-git-practice (master) +$ vim git-commands.md + +amitp@Amit MINGW64 ~/Downloads/devops-git-practice (master) +$ git status +On branch master +Changes not staged for commit: + (use "git add ..." to update what will be committed) + (use "git restore ..." to discard changes in working directory) + modified: git-commands.md + +no changes added to commit (use "git add" and/or "git commit -a") + +``` +```bash +amitp@Amit MINGW64 ~/Downloads/devops-git-practice (master) +$ git add git-commands.md +warning: in the working copy of 'git-commands.md', LF will be replaced by CRLF the next time Git touches it + +``` +```bash +amitp@Amit MINGW64 ~/Downloads/devops-git-practice (master) +$ git status +On branch master +Changes to be committed: + (use "git restore --staged ..." to unstage) + modified: git-commands.md + +``` +```bash +amitp@Amit MINGW64 ~/Downloads/devops-git-practice (master) +$ git commit -m "Add some commands of log" +[master 484413c] Add some commands of log + 1 file changed, 6 insertions(+) + +``` +```bash +amitp@Amit MINGW64 ~/Downloads/devops-git-practice (master) +$ git status +On branch master +nothing to commit, working tree clean +``` +```bash +amitp@Amit MINGW64 ~/Downloads/devops-git-practice (master) +$ git diff +warning: in the working copy of 'git-commands.md', LF will be replaced by CRLF the next time Git touches it +diff --git a/git-commands.md b/git-commands.md +index 733de24..6dbf77f 100644 +--- a/git-commands.md ++++ b/git-commands.md +@@ -40,6 +40,20 @@ + ## `git log --oneline` + - It show commit history in summaries form in oneline + ++## `git diff` ++- It shows changes not yet staged. ++ ++## `git restore` ++- It restores files in working directory. ++ ++## `git add .` ++- It stages all changes in current directory. ++ ++## `git branch` ++- Lists branches. ++ ++## `git checkout` ++- It switches branches. + +``` +```bash +amitp@Amit MINGW64 ~/Downloads/devops-git-practice (master) +$ git add git-commands.md +warning: in the working copy of 'git-commands.md', LF will be replaced by CRLF the next time Git touches it +``` +```bash +amitp@Amit MINGW64 ~/Downloads/devops-git-practice (master) +$ git status +On branch master +Changes to be committed: + (use "git restore --staged ..." to unstage) + modified: git-commands.md +``` +```bash +amitp@Amit MINGW64 ~/Downloads/devops-git-practice (master) +$ git restore --staged git-commands.md + +``` +```bash +amitp@Amit MINGW64 ~/Downloads/devops-git-practice (master) +$ git status +On branch master +Changes not staged for commit: + (use "git add ..." to update what will be committed) + (use "git restore ..." to discard changes in working directory) + modified: git-commands.md + +no changes added to commit (use "git add" and/or "git commit -a") +``` +```bash +amitp@Amit MINGW64 ~/Downloads/devops-git-practice (master) +$ git branch +* master +``` +```bash +amitp@Amit MINGW64 ~/Downloads/devops-git-practice (master) +$ git log +commit 295fdda6ccc26d0223d20a3630d77eb07c2abd58 (HEAD -> master) +Author: sumit9165 +Date: Mon Feb 23 23:17:48 2026 +0530 + + Add some new commands + +commit 484413c5758af57d6924b3a69a0fd6c6cf86aea7 +Author: sumit9165 +Date: Mon Feb 23 23:07:06 2026 +0530 + + Add some commands of log + +commit 87f5343bad2df18a17fa90564b064ea61c30b269 +Author: sumit9165 +Date: Mon Feb 23 22:56:45 2026 +0530 + + Add initialize git-commands ref file +``` +```bash +amitp@Amit MINGW64 ~/Downloads/devops-git-practice (master) +$ git log --oneline +295fdda (HEAD -> master) Add some new commands +484413c Add some commands of log +87f5343 Add initialize git-commands ref file +``` +--------- + +## 1. Difference Between git add and git commit + +--- +| Aspect | `git add` | `git commit` | +| ------------------------ | ----------------- | -------------------------------------------- | +| Creates a commit? | No | Yes | +| Changes history? | No | Yes | +| Affects staging area? | Yes | Consumes it | +| Requires commit message? | No | Yes | +| Can be undone easily? | Yes (`git reset`) | Depends (e.g., `git reset --soft`, `--hard`) | + +Common Misunderstanding + +- Many assume git add "saves" changes. It does not. +- Only git commit writes changes into the repository’s history. + +## 2. What Does the Staging Area Do? + +- The staging area is a place where you prepare changes before committing them. + +- You edit files in your working directory. + +- You use `git add` to move selected changes into the staging area. + +- You use `git commit` to save everything in the staging area into the repository history. +--- +## Why doesn’t Git just commit directly? +- Without a staging area: + +- Every commit would include all modified files. + +- Your history would become messy and harder to understand. + +- Debugging and code reviews would be more difficult. + +## 3. What Information Does git log Show? +`git log` shows the history of commits in a repository. +By default, it displays for each commit: + +- Commit hash (unique ID) +- Author name +- Date +- Commit message +--- + +## 4. What is the .git/ Folder? + +The .git/ folder is the internal Git database. + +It stores: +- Commit objects +- Branch references +- Configuration +- Logs +- Hooks + +- .git/ contains your entire version history and repository metadata. +- Deleting it removes all Git tracking and history, leaving only plain files. + +If you delete the .git/ folder: + +- All commit history is permanently lost (unless backed up elsewhere). +- Branches are gone. +- Tags are gone. +- Remote configuration is gone. +- Git no longer recognizes the folder as a repository. + +Your files will still exist on disk, but they will become ordinary files, no longer tracked by Git. +Running git status afterward will give an error because the directory is no longer a Git repository. +--- + +## 5. Difference Between Working Directory, Staging Area, and Repository + +Working Directory: +Where files are edited. + +Staging Area: +Where changes are prepared before committing. + +Repository: +The committed history stored inside .git/. + +Workflow: +Working Directory → Staging Area → Repository + + +![alt text]() + + +----- + +## Screenshot of `git --oneline` +![alt text]() \ No newline at end of file diff --git a/2026/day-22/git --oneline.png b/2026/day-22/git --oneline.png new file mode 100644 index 0000000000..b50922ef70 Binary files /dev/null and b/2026/day-22/git --oneline.png differ diff --git a/2026/day-22/git_add_commit_repository.png b/2026/day-22/git_add_commit_repository.png new file mode 100644 index 0000000000..9f6472e429 Binary files /dev/null and b/2026/day-22/git_add_commit_repository.png differ diff --git a/2026/day-23/day-23-notes.md b/2026/day-23/day-23-notes.md new file mode 100644 index 0000000000..9e57075a66 --- /dev/null +++ b/2026/day-23/day-23-notes.md @@ -0,0 +1,98 @@ +# Day 23 – Git Branching & Working with GitHub +---- +## Task 1: Understanding Branches +1. What is a branch in Git? +- A branch is a separate version of your project. +- When you create a branch, you are saying: “I want to work on something new without touching the original version.” + +2. Why do we use branches instead of committing everything to main? +- To develop features or fixes in isolation +- To avoid breaking stable code in main +- To allow parallel work by multiple developers +- To review and test changes before merging +- main should usually stay stable and production-ready. +- If you commit everything to main: You might break working code. + Other developers cannot rely on it being stable. + You mix unfinished work with production code. +- Instead: +- Create a branch +- Work safely +- Test +- Merge into main when ready +- This keeps main clean and stable. + +3. What is HEAD in Git? +- HEAD tells Git: "This is where I am right now." +- It points to the branch or commit you are currently working on. + +4. What happens to your files when you switch branches? +- When you change branches: Git changes your files +- It makes your folder look exactly like that branch + +## Very Simple Summary + +- Branch = separate version of your project + +- We use branches to keep main safe + +- HEAD = where you are now + +- Switching branches changes your project files + +--------------- + +## Task 2: Branching Commands — Hands-On [Done] + +## Task 3: Push to GitHub [Done] +------- +## Task 4: Pull from GitHub [Done] + +## Task 5: Clone vs Fork [Done] + +--- +## What is the difference between origin and upstream? +- You clone from upstream to create origin (your fork), +- then use upstream to pull updates and origin to push your contributions +- origin = url of your remote repository, where you have pull/push access. +- upstream = your forked repository's origin + +--------- +## What is the difference between clone and fork? +- Fork (Server-side): Creates a copy of a repository in your GitHub/Bitbucket account. It acts as a separate, independent repository that you own. +- Clone (Local-side): Downloads an existing repository from a remote server (GitHub) to your local computer. It creates a local copy, including all history and branches. +------- +## When would you clone vs fork? +Fork when: +- You want to contribute to someone else's project (Open Source). +- You want to use another project as a starting point for your own, but keep it separate. +- You do not have write access to the original repository. +Clone when: +- You have permission to push changes directly to the repository. +- You are starting work on a local machine after forking a project. +- You just want a local copy of a project to read, test, or run, without intending to push changes back. +------ +## After forking, how do you keep your fork in sync with the original repo? +1. GitHub provides a built-in "Sync fork" feature that allows you to update your fork with a few clicks. +2. On-Local Command Line Interface . +To sync from your terminal, you must first configure a remote that points to the original repository. +- `git remote add upstream https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY.git` +- Fetch the latest changes: `git fetch upstream` +- Merge the changes into your local branch: `git merge upstream/main` +- Update your fork on GitHub: `git push origin main` + +3. GitHub CLI +If you have the GitHub CLI installed, you can sync your fork with a single command: +- `gh repo sync owner/your-fork -b main` +----- +## What is the difference between git fetch and git pull? +- Fetch Changes from Upstream: `git fetch upstream` +- To keep your local repository up-to-date with the original repository, fetch the latest changes: +- Push Changes to Origin: `git push origin main` +- After merging the changes from the upstream repository, push your updated `main` branch to your forked repository on. + +---- + + + + + diff --git a/2026/day-24/day-24-notes.md b/2026/day-24/day-24-notes.md new file mode 100644 index 0000000000..d85d340b4f --- /dev/null +++ b/2026/day-24/day-24-notes.md @@ -0,0 +1,220 @@ +# Day 24 – Advanced Git: Merge, Rebase, Stash & Cherry Pick +--- + +# Task 1: Git Merge + +### What is a fast-forward merge? + +A fast-forward merge happens when: + +* The main branch has **no new commits** +* Git just moves the pointer forward + +There is **no extra merge commit** created. + +It looks like a straight line in history. + +--- + +### When does Git create a merge commit? + +Git creates a merge commit when: + +* Both branches have new commits +* Their histories have split + +Git combines them and creates a **new merge commit**. + +History shows a branch joining back. + +--- + +### What is a merge conflict? + +A merge conflict happens when: + +* The **same line of the same file** +* Was changed in both branches + +Git cannot decide which change to keep. +You must manually fix it. + +--- + +# Task 2: Git Rebase + +### What does rebase do? + +Rebase: + +* Takes your branch commits +* Moves them on top of the latest main +* Rewrites commit history + +It makes it look like you started from the newest version. + +--- + +### How is rebase history different from merge? + +Merge: + +* Keeps branch structure +* Shows merge commits + +Rebase: + +* Makes history look clean +* Looks like one straight line +* No merge commit + +--- + +### Why never rebase shared commits? + +Because: + +* Rebase changes commit history +* Other people may already have the old history +* It can break their work + +Only rebase local (not shared) branches. + +--- + +### When to use rebase vs merge? + +Use **rebase**: + +* To keep history clean +* Before merging your feature branch + +Use **merge**: + +* For shared branches +* When you want to preserve full history + +--- + +# Task 3: Squash Commit vs Merge Commit + +### What does squash merge do? + +Squash: + +* It Combines all commits into **one single commit** +* It Adds only 1 commit to main + +--- + +### Regular merge + +* It Keeps all commits +* It Adds a merge commit +* Full history is preserved + +--- + +### When to use squash? + +Use squash when: + +* You made many small messy commits +* You want a clean history + +--- + +### Trade-off of squash + +You lose: + +* Detailed commit history +* Step-by-step development info + +--- + +# Task 4: Git Stash + +### What happens if you try switching branches with changes? + +Git may: + +* Stop you +* It Say changes would be overwritten + +--- + +### What is git stash? + +Stash: + +* It Saves unfinished work temporarily +* It Cleans your working directory + +--- + +### Difference between `stash pop` and `stash apply` + +`git stash pop` + +* It Applies changes +* It Removes stash from list + +`git stash apply` + +* It Applies changes +* It Keeps stash in list + +--- + +### When to use stash? + +Use stash when: + +* You need to quickly switch branches +* Your work is not ready to commit + +--- + +# Task 5: Cherry Picking + +### What does cherry-pick do? + +Cherry-pick: + +* It Takes **one specific commit** +* Applies it to another branch + +Only that commit is copied. + +--- + +### When to use cherry-pick? + +Use when: + +* You need one fix from another branch +* Example: hotfix for production + +--- + +### What can go wrong? + +* Merge conflicts +* Duplicate commits +* Messy history if overused + +--- + +# Summary +| Feature | What It Is | How It Works | Why We Use It | +| ---------------- | ----------------------------------------- | ----------------------------------------------------------------- | ----------------------------------------------------- | +| **Fast-forward** | A simple type of merge | Git just moves the branch pointer forward (no new commit created) | Keeps history clean when no new commits exist on main | +| **Merge commit** | A special commit that joins two branches | Git creates a new commit that connects both histories | Used when both branches have new commits | +| **Rebase** | A way to move commits to a new base | Takes your commits and replays them on top of latest main | Creates clean, straight history | +| **Squash** | A merge option that combines commits | All branch commits become one single commit | Keeps main branch history simple and clean | +| **Stash** | Temporary storage for uncommitted changes | Saves your changes outside the branch | Useful when you need to switch branches quickly | +| **Cherry-pick** | A way to copy one specific commit | Applies one selected commit to another branch | Useful for hotfixes or moving specific changes | + + +--- diff --git a/2026/day-25/day-25-notes.md b/2026/day-25/day-25-notes.md new file mode 100644 index 0000000000..484dc5358b --- /dev/null +++ b/2026/day-25/day-25-notes.md @@ -0,0 +1,333 @@ +# Day 25 – Git Reset vs Revert & Branching Strategies + +--- + +# Task 1: Git Reset — Hands-On + +## After `git reset --soft HEAD~1` + +**What happens:** + +* `HEAD` moves back one commit. +* Changes from the removed commit remain **staged** (in the index). +* Working directory is unchanged. + +**State after command:** + +* Commit removed from history. +* Changes ready to recommit immediately. + +--- + +## After `git reset --mixed HEAD~1` (default mode) + +**What happens:** + +* `HEAD` moves back one commit. +* Changes from the removed commit remain in the **working directory**. +* Changes are **unstaged**. + +**State after command:** + +* Commit removed from history. +* You must run `git add` before recommitting. + +--- + +## After `git reset --hard HEAD~1` + +**What happens:** + +* `HEAD` moves back one commit. +* Index reset. +* Working directory reset. +* Changes from the removed commit are **deleted**. + +**State after command:** + +* Commit removed from history. +* File changes are gone (unless recoverable via `git reflog`). + +--- + +## Difference Between `--soft`, `--mixed`, `--hard` + +| Mode | Moves HEAD | Resets Index | Resets Working Directory | +| ------- | ---------- | ------------ | ------------------------ | +| --soft | Yes | No | No | +| --mixed | Yes | Yes | No | +| --hard | Yes | Yes | Yes | + +--- + +## Which One Is Destructive? + +`--hard` is destructive because it permanently discards working directory changes. +Data loss occurs unless recovered via `git reflog`. + +--- + +## When to Use Each + +**--soft** + +* Squashing commits +* Fixing last commit message/content +* Reorganizing commits without losing staged state + +**--mixed** + +* Unstage changes but keep file edits +* Rework a commit cleanly + +**--hard** + +* Throw away local commits +* Reset branch to match remote +* Clean working directory completely + +--- + +## Should You Use `git reset` on Pushed Commits? + +Generally **no**. + +If commits are already pushed: + +* Reset rewrites history. +* Requires force push (`git push --force`). +* Breaks collaborators’ history. + +Only safe if: + +* You are working alone on the branch. +* Team explicitly agrees to history rewrite. + +--- + +# Task 2: Git Revert — Hands-On Notes + +Assume commits: + +``` +X → Y → Z (HEAD) +``` + +## Revert Commit Y + +Command: + +``` +git revert +``` + +**What happens:** + +* Git creates a new commit (call it R). +* R reverses the changes introduced by Y. +* History becomes: + +``` +X → Y → Z → R +``` + +--- + +## Is Commit Y Still in History? + +Yes. + +`git log` still shows Y. +Revert does not remove history — it adds a new commit that negates changes. + +--- + +## How Is `git revert` Different from `git reset`? + +| git reset | git revert | +| -------------------- | ----------------------- | +| Moves branch pointer | Creates new commit | +| Rewrites history | Preserves history | +| Can remove commits | Does not remove commits | + +--- + +## Why Is Revert Safer for Shared Branches? + +* Does not rewrite history. +* No force push required. +* Does not break other developers’ clones. + +--- + +## When to Use Revert vs Reset? + +**Use revert when:** + +* Commit already pushed +* On shared branches +* Need safe undo + +**Use reset when:** + +* Local cleanup +* Fixing unpushed commits +* Rewriting local history + +--- + +# Task 3: Reset vs Revert — Summary Table + +| | git reset | git revert | +| ---------------------------- | --------------------------------- | -------------------------------------- | +| What it does | Moves branch pointer backward | Creates new commit that undoes changes | +| Removes commit from history? | Yes | No | +| Safe for shared branches? | No (unless force push acceptable) | Yes | +| When to use | Local history rewrite | Undoing pushed commits | + +--- + +# Task 4: Branching Strategies + +--- + +## 1️ GitFlow + +### How It Works + +Multiple long-lived branches: + +* `main` (production) +* `develop` (integration) +* `feature/*` +* `release/*` +* `hotfix/*` + +### Flow Diagram + +``` +main + ↑ ↘ hotfix +develop → feature + ↘ release → main +``` + +### Used For + +* Large teams +* Enterprise software +* Scheduled releases + +### Pros + +* Structured +* Clear release process +* Isolates production code + +### Cons + +* Complex +* Heavy overhead +* Slow for rapid iteration + +--- + +## 2️ GitHub Flow + +### How It Works + +* Single `main` +* Short-lived feature branches +* PR → review → merge → deploy + +### Diagram + +``` +main → feature → PR → main +``` + +### Used For + +* SaaS +* Continuous deployment +* Web applications + +### Pros + +* Simple +* Fast iteration +* Easy to understand + +### Cons + +* Less structured for versioned releases +* Requires strong CI/CD + +--- + +## 3️ Trunk-Based Development + +### How It Works + +* Everyone commits to `main` (trunk) +* Very short-lived branches (or none) +* Heavy CI usage +* Feature flags for incomplete work + +### Diagram + +``` +main ← small frequent commits +``` + +### Used For + +* High-performing DevOps teams +* Companies practicing continuous delivery (Google, Facebook) + +### Pros + +* Minimal merge conflicts +* Fast integration +* Encourages small commits + +### Cons + +* Requires strong discipline +* Demands mature CI/testing + +--- + +## Which Strategy Would You Use? + +**Startup shipping fast:** +→ GitHub Flow or Trunk-Based Development +Reason: speed, simplicity, continuous deployment. + +**Large team with scheduled releases:** +→ GitFlow +Reason: structured release cycles, hotfix control. + +**Open-source example:** + +* React uses a trunk-based style with release branches. +* Kubernetes uses a variation of GitHub Flow with release branches. +* Linux kernel uses a maintainer-based branching model (similar to distributed trunk model). + +--- + +# Task 5: Git Commands Reference (Days 22–25) + [Done] + + +# Takeaway + +* **Reset = rewrite history** +* **Revert = undo safely** +* **Hard reset = destructive** +* **Reflog = safety net** +* **GitFlow = structure** +* **GitHub Flow = simplicity** +* **Trunk-Based = speed + CI discipline** + +---------- \ No newline at end of file diff --git a/2026/day-26/day-26-notes.md b/2026/day-26/day-26-notes.md new file mode 100644 index 0000000000..3a6cd551b1 --- /dev/null +++ b/2026/day-26/day-26-notes.md @@ -0,0 +1,160 @@ +# Day 26 – GitHub CLI: Manage GitHub from Your Terminal + +## Task 1: Install and Authenticate +### 1. Install the GitHub CLI on your machine +- `winget install --id GitHub.cli` +-------- +### 2. Authenticate with your GitHub account +- `gh auth login` +------ +### 3. Verify you're logged in and check which account is active +- `gh auth status` or use to see active user `gh api user` +----------- +### 4. What authentication methods does `gh` support? +- Browser-based OAuth login +- Personal Access Token (PAT) +- SSH key authentication +- GitHub Enterprise authentication +--- + +## Task 2: Working with Repositories +### 1. Create a **new GitHub repo** directly from the terminal — make it public with a README +- `gh repo create gh-cli-test --public --description "Test repo from CLI" --add-readme --clone` +--------- +### 2. Clone a repo using `gh` instead of `git clone` +- `gh repo clone owner/repo` +--------- +### 3. View details of one of your repos from the terminal +- Go to inside repo and then use it +- `gh repo view` +--------- +### 4. List all your repositories +- `gh repo list` +- `gh repo list --limit 20` +--------- +### 5. Open a repo in your browser directly from the terminal +- `gh repo view --web` +--------- +### 6. Delete the test repo you created (be careful!) +- `gh repo delete gh-cli-test --confirm` this will delete permanently. + +--- + +## Task 3: Issues +### 1. Create an issue on one of your repos from the terminal — give it a title, body, and a label +- `gh issue create --title "Fix login bug" --body "Users cannot log in when password contains special characters." --label "bug"` +----- +### 2. List all open issues on that repo +- `gh issue list` +---------- +### 3. View a specific issue by its number +- `gh issue view 1` or web `gh issue view 1 --web` +----------- +### 4. Close an issue from the terminal +- `gh issue close 1` +--------- +### 5. Answer in your notes: How could you use `gh issue` in a script or automation? +- Automatically create issues from CI failures +- Generate bug tickets from logs +- Bulk close stale issues +- Script project setup +- Export issues as JSON using --json for dashboards +- `gh issue list --json title,number` + +--- + +## Task 4: Pull Requests +1. Create a branch, make a change, push it, and create a **pull request** entirely from the terminal +- `git switch -c feature-cli-test` +- `echo "CLI change" >> README.md` +- `git add .` +- `git commit -m "Add CLI change"` +- `git push -u origin feature-cli-test` +--------- +### 2. List all open PRs on a repo +- `gh pr create --fill` +or do manually +- `gh pr create --title "Add CLI change" --body "Test PR created from terminal"` +-------- +### 3. View the details of your PR — check its status, reviewers, and checks +- `gh pr list` +--------- +### 4. Merge your PR from the terminal +- `gh pr view 1` or `gh pr view 1 --json statusCheckRollup,reviewRequests` +------- +### 5. Answer in your notes: +### 1. What merge methods does `gh pr merge` support? + - `gh pr merge 1 --merge` or `gh pr merge 1 --squash` or `gh pr merge 1 --rebase` + - --merge (merge commit) + - --squash (squash into single commit) + - --rebase (rebase merge) +### 2. How would you review someone else's PR using `gh`? + - `gh pr view ` + - `gh pr checkout ` + - Add review `gh pr review --approve` + - `gh pr review --comment` + - `gh pr review --request-changes` + +--- + +## Task 5: GitHub Actions & Workflows (Preview) +### 1. List the workflow runs on any public repo that uses GitHub Actions +- `gh run list` +---------- +### 2. View the status of a specific workflow run +- `gh run view ` or watch logs `gh run watch` +---------- +### 3. Answer in your notes: How could `gh run` and `gh workflow` be useful in a CI/CD pipeline? +- Trigger workflows from terminal: `gh workflow run build.yml` +- Monitor CI status without browser +- Auto-cancel failed runs +- Integrate into deployment scripts +- Gate production deployment on CI success +Useful in: +- Automated deployment pipelines +- Infrastructure scripting +- DevOps workflows + +(Don't worry if you haven't learned GitHub Actions yet — this is a preview for upcoming days) + +--- + +## Task 6: Useful `gh` Tricks +Explore and try these — add the ones you find useful to your `git-commands.md`: +### 1. `gh api` — make raw GitHub API calls from the terminal +Useful for: `gh api repos/:owner/:repo` +- Advanced automation +- Custom scripts +- Accessing unsupported features +--------- +### 2. `gh gist` — create and manage GitHub Gists +- `gh gist create file.txt` it will create +- `gh gist list` it will list +-------- +### 3. `gh release` — create and manage releases +- `gh release create v1.0.0 --notes "First release"` it will create release. +- `gh release upload v1.0.0 file.zip` it will upload asset or files. +--------- +### 4. `gh alias` — create shortcuts for commands you use often +- `gh alias set co "pr checkout"` it will create shortcut. +- `gh co 15` use like this +------------- +### 5. `gh search repos` — search GitHub repos from the terminal +- `gh search repos react --limit 5` it will search +- `gh search repos --stars ">50000"` it will search by stars +- + +--- +## Takeaways + +- gh turns GitHub into a programmable interface. + +- It supports full PR lifecycle management. + +- It integrates with CI/CD. + +- It enables scripting and automation. + +- It reduces browser dependency. + +--------- diff --git a/2026/day-27/day-27-notes.md b/2026/day-27/day-27-notes.md new file mode 100644 index 0000000000..f40adbbe5b --- /dev/null +++ b/2026/day-27/day-27-notes.md @@ -0,0 +1,16 @@ +# Day 27 – GitHub Profile Makeover: Build Your Developer Identity + +---- +- Before Updation of my github profile. + +I forget to take a screenshot of my profile before updation. + +- After Updation of my github profile. +----- +![alt text](image.png) + +--------- +1. I improved my github repositories with descriptions. +2. I uploaded my photos and social links. +3. I improved my repositories with `README.MD` file +------------ \ No newline at end of file diff --git a/2026/day-27/image.png b/2026/day-27/image.png new file mode 100644 index 0000000000..100a866173 Binary files /dev/null and b/2026/day-27/image.png differ diff --git a/2026/day-28/day-28-notes.md b/2026/day-28/day-28-notes.md new file mode 100644 index 0000000000..0f751138ff --- /dev/null +++ b/2026/day-28/day-28-notes.md @@ -0,0 +1,246 @@ +# Day 28 – Revision Day: Everything from Day 1 to Day 27 +--- +### Task 1: Self-Assessment Checklist +Go through the checklist below. For each item, mark yourself honestly: +- **Can do confidently** +- **Need to revisit** +- **Haven't done yet** + +#### Linux +- [Confident] Navigate the file system, create/move/delete files and directories +- [Confident] Manage processes — list, kill, background/foreground +- [Confident] Work with systemd — start, stop, enable, check status of services +- [Confident] Read and edit text files using vi/vim or nano +- [Confident] Troubleshoot CPU, memory, and disk issues using top, free, df, du +- [Confident] Explain the Linux file system hierarchy (/, /etc, /var, /home, /tmp, etc.) +- [Confident] Create users and groups, manage passwords +- [Confident] Set file permissions using chmod (numeric and symbolic) +- [Confident] Change file ownership with chown and chgrp +- [Confident] Create and manage LVM volumes +- [Confident] Check network connectivity — ping, curl, netstat, ss, dig, nslookup +- [Confident] Explain DNS resolution, IP addressing, subnets, and common ports + +#### Shell Scripting +- [Confident] Write a script with variables, arguments, and user input +- [Confident] Use if/elif/else and case statements +- [Confident] Write for, while, and until loops +- [Confident] Define and call functions with arguments and return values +- [Confident] Use grep, awk, sed, sort, uniq for text processing +- [Confident] Handle errors with set -e, set -u, set -o pipefail, trap +- [Confident] Schedule scripts with crontab + +#### Git & GitHub +- [Confident] Initialize a repo, stage, commit, and view history +- [Confident] Create and switch branches +- [Confident] Push to and pull from GitHub +- [Confident] Explain clone vs fork +- [Confident] Merge branches — understand fast-forward vs merge commit +- [Revisit] Rebase a branch and explain when to use it vs merge +- [Confident] Use git stash and git stash pop +- [Confident] Cherry-pick a commit from another branch +- [Confident] Explain squash merge vs regular merge +- [Confident] Use git reset (soft, mixed, hard) and git revert +- [Confident] Explain GitFlow, GitHub Flow, and Trunk-Based Development +- [Confident] Use GitHub CLI to create repos, PRs, and issues + +--- + +### Task 2: Revisit Your Weak Spots +1. Pick **3 topics** from the checklist where you marked "Need to revisit" +- [Confident] Rebase a branch and explain when to use it vs merge +- [Confident] Use git stash and git stash pop +- [Confident] Use git reset (soft, mixed, hard) and git revert +2. Go back to that day's challenge and redo the hands-on tasks [Done] +- [Confident] Rebase a branch and explain when to use it vs merge[Done] +- [Confident] Use git stash and git stash pop[Done] +- [Confident] Use git reset (soft, mixed, hard) and git revert[Done] +--- + +# Task 3: Quick-Fire Answers (Correct Reference Answers) + +### 1. What does `chmod 755 script.sh` do? + +Sets permissions to: + +* Owner: read, write, execute (7) +* Group: read, execute (5) +* Others: read, execute (5) + +Equivalent to: `rwxr-xr-x` + +--- + +### 2. What is the difference between a process and a service? + +* **Process**: A running instance of a program. +* **Service**: A background process managed by the system (often via systemd) designed to provide ongoing functionality (e.g., nginx). + +All services are processes. Not all processes are services. + +--- + +### 3. How do you find which process is using port 8080? + +```bash +ss -tulpn | grep 8080 +``` + +or + +```bash +lsof -i :8080 +``` + +--- + +### 4. What does `set -euo pipefail` do in a shell script? + +* `-e`: exit on error +* `-u`: error on undefined variables +* `-o pipefail`: fail pipeline if any command fails + +It enforces strict error handling. + +--- + +### 5. What is the difference between `git reset --hard` and `git revert`? + +* `git reset --hard` + Moves HEAD and rewrites history. Discards commits and working changes. Dangerous on shared branches. + +* `git revert` + Creates a new commit that reverses changes. Safe for shared branches. + +--- + +### 6. What branching strategy would you recommend for a team of 5 developers shipping weekly? + +**GitHub Flow** or lightweight **Trunk-Based Development**: + +* `main` always deployable +* Short-lived feature branches +* PR review required +* Frequent merges +* CI required + +Avoid full GitFlow unless complexity justifies it. + +--- + +### 7. What does `git stash` do and when would you use it? + +Temporarily saves uncommitted changes (tracked files) so you can switch branches cleanly. + +Use when: + +* Mid-work but need to change branches +* Pulling changes without committing incomplete work + +Restore with: + +```bash +git stash pop +``` + +--- + +### 8. How do you schedule a script to run every day at 3 AM? +```bash +crontab -e +``` + +Add: + +```bash +0 3 * * * /path/to/script.sh +``` + +--- + +### 9. What is the difference between `git fetch` and `git pull`? + +* `git fetch`: Downloads changes, does NOT merge. +* `git pull`: Fetch + merge (or rebase). + +Pull = fetch + integrate. + +--- + +### 10. What is LVM and why would you use it instead of regular partitions? + +**Logical Volume Manager** + +Abstraction layer over physical storage: + +* Resize volumes dynamically +* Combine multiple disks into one logical pool +* Snapshot support +* Easier storage management + +More flexible than traditional static partitions. + +--- + +# Task 4: Organization Checklist + +Verify: + +* All day-1 → day-27 committed and pushed[Done] +* `git-commands.md` updated[Done] +* Shell scripting cheat sheet complete[Done] +* GitHub profile clean:[Done] + + +# Task 5: Teach It Back +--- + +## 1 Explain Git Branching to a Non-Developer + +Think of Git like a shared document history. A **branch** is like creating a copy of the document so you can experiment without breaking the original. + +The main version (often called `main`) is the official copy. When someone wants to add a feature or fix something, they create a new branch to work safely. + +If everything works well, that branch gets merged back into the main version. + +Branches allow multiple people to work at the same time without interfering with each other. + +--- + +## 2 Explain File Permissions to a New Linux User + +In Linux, every file and folder has rules about **who can read it, change it, or run it**. + +There are three groups: + +* The owner (usually the creator) +* The group (a set of users) +* Everyone else + +Each group can have: + +* Read (r) +* Write (w) +* Execute (x) + +For example, `755` means the owner can do everything, but others can only read and run the file. + +Permissions protect the system from accidental or unauthorized changes. + +--- + +## 3 Explain What a Crontab Is and Why Sysadmins Use It + +A **crontab** is a built-in Linux scheduler. It lets the system run commands or scripts automatically at specific times. + +For example: + +* Run a backup every day at 3 AM +* Clear log files every Sunday +* Restart a service every night + +Instead of manually running tasks, sysadmins define a schedule once, and the system handles it automatically. + +Crontab is essential for automation, maintenance, and reliability in server environments. + +--- + diff --git a/2026/day-29/day-29-docker-basics.md b/2026/day-29/day-29-docker-basics.md new file mode 100644 index 0000000000..f04e28210d --- /dev/null +++ b/2026/day-29/day-29-docker-basics.md @@ -0,0 +1,422 @@ +# Day 29 – Introduction to Dockers +--- + +# Task 1: What is Docker? + +## 1. What is a Container and Why Do We Need Them? + +### What is a Container? + +A **container** is a lightweight, standalone, executable software package that includes: + +* Application code +* Runtime environment +* System tools +* Libraries +* Dependencies +* Configuration + +It runs in isolation using the host OS kernel via **OS-level virtualization**. + +### Why Do We Need Containers? + +Before containers: + +* Applications worked on one machine but failed on another. +* Dependency conflicts were common. +* Environment inconsistencies broke deployments. + +Containers solve: + +| Problem | How Containers Help | +| --------------------------- | ----------------------------- | +| “Works on my machine” issue | Package entire environment | +| Dependency conflicts | Isolated runtime environments | +| Slow deployments | Lightweight startup | +| Resource waste | Share host OS kernel | + +They enable: + +* Consistent dev → test → prod environments +* Microservices architecture +* CI/CD automation +* Cloud-native deployments + +--- + +## 2. Containers vs Virtual Machines — what's the real difference? + +| Feature | Containers | Virtual Machines | +| ------------------- | ----------------- | ------------------- | +| Virtualization Type | OS-level | Hardware-level | +| OS | Share host kernel | Each VM has full OS | +| Size | MBs | GBs | +| Startup Time | Seconds | Minutes | +| Resource Usage | Lightweight | Heavy | +| Isolation | Process-level | Full machine-level | + +### Architecture Difference + +|**Virtual Machine:**|**Container:**| +|--------------------|--------------| +|Hardware|Hardware| +| ↓| ↓| +|Hypervisor| Host OS| +| ↓| ↓| +|Guest OS|Container Runtime (Docker)| +| ↓| ↓| +|Application| Application| + +----- +### Key Insight: + +Containers virtualize the **OS**, VMs virtualize the **hardware**. + +--- + +## 3. Docker Architecture + +Docker follows a **client-server architecture**. + +### Core Components + +### 1 Docker Client + +* CLI (`docker` command) +* Sends commands to Docker Daemon + +Example: + +``` +docker run nginx +``` + +--- + +### 2 Docker Daemon (`dockerd`) + +* Background service +* Builds images +* Runs containers +* Manages networks and volumes + +--- + +### 3 Docker Images + +* Read-only templates +* Blueprint for containers +* Built from Dockerfile + +--- + +### 4 Docker Containers + +* Running instances of images +* Writable layer added on top + +--- + +### 5 Docker Registry + +* Stores images +* Default: Docker Hub +* Can be private (ECR, GCR, etc.) + +--- + +## Docker Architecture (In My Words) + +When you run: + +``` +docker run nginx +``` + +Here’s what happens: + +1. Docker Client sends request to Docker Daemon. +2. Daemon checks if nginx image exists locally. +3. If not, it pulls image from Docker Hub (registry). +4. Daemon creates container from image. +5. Container runs as isolated process on host OS. + +### Visual Flow + +``` +[User] + ↓ +Docker CLI + ↓ +Docker Daemon + ↓ +Image (local or pulled from registry) + ↓ +Container (running process) +``` + +Or conceptually: + +``` +Registry → Image → Container → Running Application +``` + +--- + +# Task 2: Install Docker + +*(Commands for Ubuntu/Linux.)* + +## Install Docker + +```bash +sudo apt update +sudo apt install docker.io -y +``` + +Enable & start: + +```bash +sudo systemctl enable docker +sudo systemctl start docker +``` + +--- + +## Verify Installation + +```bash +docker --version +``` + +You should see: + +``` +Docker version XX.X.X +``` + +--- + +## Run Hello World + +```bash +docker run hello-world +``` + +### What Just Happened? + +1. Client contacted daemon. +2. Image not found locally. +3. Pulled from Docker Hub. +4. Created container. +5. Executed hello-world binary. +6. Printed confirmation message. +7. Container exited. + +This demonstrates: + +* Image pull +* Container creation +* Execution lifecycle + +--- + +# Task 3: Run Real Containers + +--- + +## 1 Run an Nginx container and access it in your browser. + +```bash +docker run -d -p 8080:80 nginx +``` + +Explanation: + +* `-d` → detached mode +* `-p 8080:80` → map host port 8080 to container port 80 + +Open browser: + +``` +http://localhost:8080 +``` + +You should see Nginx welcome page. + +--- + +## 2 Run an Ubuntu container in interactive mode — explore it like a mini Linux machine. + +```bash +docker run -it ubuntu +``` + +Flags: + +* `-i` → interactive +* `-t` → pseudo-TTY terminal + +You are now inside a minimal Linux environment. + +Try: + +```bash +ls +pwd +apt update +whoami +``` + +Exit: + +```bash +exit +``` + +Container stops. + +--- + +## 3 List All Running Containers + +```bash +docker ps +``` + +--- + +## 4 List all containers (including stopped ones). + +```bash +docker ps -a +``` + +--- + +## 5 Stop a Container + +```bash +docker stop +``` + +--- + +## 6 Remove a Container + +```bash +docker rm +``` + +--- + +# Task 4: Explore Advanced Options + +--- + +## 1 Run a container in detached mode — what's different? + +```bash +docker run -d nginx +``` + +Difference: + +* Runs in background +* Terminal is free immediately +* Container keeps running + +Without `-d`, logs stream in terminal. + +--- + +## 2 Give a container a custom name. + +```bash +docker run -d --name my-nginx nginx +``` + +Now you can reference it as: + +```bash +docker stop my-nginx +``` + +Instead of container ID. + +--- + +## 3 Map a port from the container to your host. + +```bash +docker run -d -p 3000:80 nginx +``` + +Meaning: + +``` +Host:3000 → Container:80 +``` + +Access: + +``` +http://localhost:3000 +``` + +--- + +## 4 Check logs of a running container. + +```bash +docker logs my-nginx +``` + +Add follow mode: + +```bash +docker logs -f my-nginx +``` + +--- + +## 5 Run Command Inside Running Container. + +```bash +docker exec -it my-nginx /bin/bash +``` + +This attaches a shell inside the running container. + +You can inspect: + +```bash +ls /usr/share/nginx/html +``` + +Exit: + +```bash +exit +``` + +Container continues running. + +--- +# Final Mental Model + +Think in layers: + +``` +Dockerfile → Image → Container → Running Process +``` + +And system flow: + +``` +Developer → Docker CLI → Docker Daemon → Registry → Container → Application +``` + + + + diff --git a/2026/day-30/day-30-images.md b/2026/day-30/day-30-images.md new file mode 100644 index 0000000000..a42807efa8 --- /dev/null +++ b/2026/day-30/day-30-images.md @@ -0,0 +1,67 @@ +# Day 30 – Docker Images & Container Lifecycle +--- +## Task 1: Docker Images + +Compare ubuntu vs alpine — why is one much smaller? +- Ubuntu vs Alpine (why size difference?) +- Ubuntu (~70MB): full GNU userland, glibc, package manager, more utilities +- Alpine (~7MB): minimal distro using musl libc + BusyBox +- Alpine is smaller because it strips down: +- fewer binaries +- lighter libc (musl vs glibc) +- minimal dependencies + +Tradeoff: Alpine can have compatibility issues with some software expecting glibc. + +---- + +- Inspect an image — what information can you see? + +Key fields to look at: + +- Id → image hash +- RepoTags +- Created +- Architecture +- OS +- Layers +- Config (env vars, default command) + +---- + +## Task 2: Image Layers + +Notes (conceptual answer) + +What are layers? + +- Immutable filesystem diffs stacked to build an image + +Why Docker uses them: + +- Caching → faster builds +- Reusability → shared layers across images +- Efficiency → only changed layers are rebuilt/transferred + +---- + +## Task 3: Container Lifecycle + +States you'll see: + +- created +- running +- paused +- exited + +----- +## Task 4: Working with Running Containers + +---- +## Task 5: Cleanup + +---- +![alt text](docker-installed-network-images-volumes-ps.png) ![alt text](day30-task-1.png) ![alt text](day30-task-1-img-ins-alpine.png) ![alt text](day30-task-1-img-ins-ubuntu.png) ![alt text](day30-task-1-inspect.png) ![alt text](day30-task-1-insp-nginx.png) ![alt text](day30-task-1-rmi.png) ![alt text](day30-task-2-nginx.png) ![alt text](day30-task-2-ubuntu-alpine-history.png) ![alt text](day30-task-3.png) ![alt text](day30-task-3-kill.png) ![alt text](day30-task-4.png) ![alt text](day30-task-4-f-log.png) ![alt text](day30-task-4-ng-ins.png) ![alt text](day30-task-4-ng-ins-2.png) ![alt text](day30-task-4-ng-ins-3.png) ![alt text](day30-task-4-ng-ins-4.png) ![alt text](day30-task-4-ng-ins-5.png) ![alt text](day30-task-4-ng-ins-6.png) ![alt text](day30-task-4-nginx.png) ![alt text](day30-task-5.png) + + + diff --git a/2026/day-30/day30-task-1-img-ins-alpine.png b/2026/day-30/day30-task-1-img-ins-alpine.png new file mode 100644 index 0000000000..1d3f8725ae Binary files /dev/null and b/2026/day-30/day30-task-1-img-ins-alpine.png differ diff --git a/2026/day-30/day30-task-1-img-ins-ubuntu.png b/2026/day-30/day30-task-1-img-ins-ubuntu.png new file mode 100644 index 0000000000..0a27f3232b Binary files /dev/null and b/2026/day-30/day30-task-1-img-ins-ubuntu.png differ diff --git a/2026/day-30/day30-task-1-insp-nginx.png b/2026/day-30/day30-task-1-insp-nginx.png new file mode 100644 index 0000000000..bac08a44da Binary files /dev/null and b/2026/day-30/day30-task-1-insp-nginx.png differ diff --git a/2026/day-30/day30-task-1-inspect.png b/2026/day-30/day30-task-1-inspect.png new file mode 100644 index 0000000000..23d568f26c Binary files /dev/null and b/2026/day-30/day30-task-1-inspect.png differ diff --git a/2026/day-30/day30-task-1-rmi.png b/2026/day-30/day30-task-1-rmi.png new file mode 100644 index 0000000000..bfab2b2540 Binary files /dev/null and b/2026/day-30/day30-task-1-rmi.png differ diff --git a/2026/day-30/day30-task-1.png b/2026/day-30/day30-task-1.png new file mode 100644 index 0000000000..3258f50492 Binary files /dev/null and b/2026/day-30/day30-task-1.png differ diff --git a/2026/day-30/day30-task-2-nginx.png b/2026/day-30/day30-task-2-nginx.png new file mode 100644 index 0000000000..0b1c260e5b Binary files /dev/null and b/2026/day-30/day30-task-2-nginx.png differ diff --git a/2026/day-30/day30-task-2-ubuntu-alpine-history.png b/2026/day-30/day30-task-2-ubuntu-alpine-history.png new file mode 100644 index 0000000000..b11c2e5f07 Binary files /dev/null and b/2026/day-30/day30-task-2-ubuntu-alpine-history.png differ diff --git a/2026/day-30/day30-task-3-kill.png b/2026/day-30/day30-task-3-kill.png new file mode 100644 index 0000000000..93d2e8a3ef Binary files /dev/null and b/2026/day-30/day30-task-3-kill.png differ diff --git a/2026/day-30/day30-task-3.png b/2026/day-30/day30-task-3.png new file mode 100644 index 0000000000..ad55e2fb2a Binary files /dev/null and b/2026/day-30/day30-task-3.png differ diff --git a/2026/day-30/day30-task-4-f-log.png b/2026/day-30/day30-task-4-f-log.png new file mode 100644 index 0000000000..301bee062e Binary files /dev/null and b/2026/day-30/day30-task-4-f-log.png differ diff --git a/2026/day-30/day30-task-4-ng-ins-2.png b/2026/day-30/day30-task-4-ng-ins-2.png new file mode 100644 index 0000000000..cf4219a9bf Binary files /dev/null and b/2026/day-30/day30-task-4-ng-ins-2.png differ diff --git a/2026/day-30/day30-task-4-ng-ins-3.png b/2026/day-30/day30-task-4-ng-ins-3.png new file mode 100644 index 0000000000..a04de6882b Binary files /dev/null and b/2026/day-30/day30-task-4-ng-ins-3.png differ diff --git a/2026/day-30/day30-task-4-ng-ins-4.png b/2026/day-30/day30-task-4-ng-ins-4.png new file mode 100644 index 0000000000..10128acf21 Binary files /dev/null and b/2026/day-30/day30-task-4-ng-ins-4.png differ diff --git a/2026/day-30/day30-task-4-ng-ins-5.png b/2026/day-30/day30-task-4-ng-ins-5.png new file mode 100644 index 0000000000..4afb851f10 Binary files /dev/null and b/2026/day-30/day30-task-4-ng-ins-5.png differ diff --git a/2026/day-30/day30-task-4-ng-ins-6.png b/2026/day-30/day30-task-4-ng-ins-6.png new file mode 100644 index 0000000000..72071bb862 Binary files /dev/null and b/2026/day-30/day30-task-4-ng-ins-6.png differ diff --git a/2026/day-30/day30-task-4-ng-ins.png b/2026/day-30/day30-task-4-ng-ins.png new file mode 100644 index 0000000000..f12cb099e5 Binary files /dev/null and b/2026/day-30/day30-task-4-ng-ins.png differ diff --git a/2026/day-30/day30-task-4-nginx.png b/2026/day-30/day30-task-4-nginx.png new file mode 100644 index 0000000000..30d35d14df Binary files /dev/null and b/2026/day-30/day30-task-4-nginx.png differ diff --git a/2026/day-30/day30-task-4.png b/2026/day-30/day30-task-4.png new file mode 100644 index 0000000000..9c7c737a7c Binary files /dev/null and b/2026/day-30/day30-task-4.png differ diff --git a/2026/day-30/day30-task-5.png b/2026/day-30/day30-task-5.png new file mode 100644 index 0000000000..b9ca36b71a Binary files /dev/null and b/2026/day-30/day30-task-5.png differ diff --git a/2026/day-30/docker-installed-network-images-volumes-ps.png b/2026/day-30/docker-installed-network-images-volumes-ps.png new file mode 100644 index 0000000000..93c96af35a Binary files /dev/null and b/2026/day-30/docker-installed-network-images-volumes-ps.png differ diff --git a/2026/day-31/CMD/Dockerfile b/2026/day-31/CMD/Dockerfile new file mode 100644 index 0000000000..7e5f74718f --- /dev/null +++ b/2026/day-31/CMD/Dockerfile @@ -0,0 +1,3 @@ +FROM alpine + +CMD ["echo", "Hello"] \ No newline at end of file diff --git a/2026/day-31/Dockerfile b/2026/day-31/Dockerfile new file mode 100644 index 0000000000..d3e893a0db --- /dev/null +++ b/2026/day-31/Dockerfile @@ -0,0 +1,12 @@ +FROM node:20 + +WORKDIR /app + +COPY package.json ./ +# after rebuilduing +COPY . . + +RUN npm install --no-cache + + +CMD ["npm","start"] \ No newline at end of file diff --git a/2026/day-31/day-31-dockerfile.md b/2026/day-31/day-31-dockerfile.md new file mode 100644 index 0000000000..e490cef838 --- /dev/null +++ b/2026/day-31/day-31-dockerfile.md @@ -0,0 +1,186 @@ +# Day 31 – Dockerfile: Build Your Own Images + +--- + +# **Task 1: Your First Dockerfile** + +### 1. Create project + +```bash +mkdir my-first-image +cd my-first-image +``` + +### 2. Create `Dockerfile` + +```dockerfile +FROM ubuntu:latest + +RUN apt-get update && apt-get install -y curl + +CMD ["echo", "Hello from my custom image!"] +``` + +### 3. Build image + +```bash +docker build -t my-ubuntu:v1 . +``` + +### 4. Run container + +```bash +docker run my-ubuntu:v1 +``` + +### Verify + +You should see: + +```bash +Hello from my custom image! +``` + +--- + +# **Task 2: Dockerfile Instructions** + +### Example project + +```bash +mkdir dockerfile-demo +cd dockerfile-demo +echo "This is a test file" > file.txt +``` + +### Dockerfile using all instructions + +```dockerfile +FROM ubuntu:latest + +WORKDIR /app + +COPY file.txt . + +RUN apt-get update && apt-get install -y curl + +EXPOSE 8080 + +CMD ["bash", "-c", "echo Running container && cat file.txt"] +``` + +### Build & run + +```bash +docker build -t demo:v1 . +docker run demo:v1 +``` + +--- + +### What each instruction does + +* **FROM** → base image (starting filesystem) +* **WORKDIR** → sets working directory inside container +* **COPY** → copies files from host → image +* **RUN** → executes commands during build (creates layers) +* **EXPOSE** → documents intended port (no actual publishing) +* **CMD** → default runtime command + +--- + +# **Task 3: CMD vs ENTRYPOINT** + +## Case 1: CMD + + **CMD is easily overridden** + +--- + +## Case 2: ENTRYPOINT + + **Arguments are appended to ENTRYPOINT** + +--- + +### Notes (important concept) + +* **CMD** + + * Default command + * Can be overridden at runtime + * Good for flexible containers + +* **ENTRYPOINT** + + * Fixed executable + * Treats container like a command-line tool + * Good for enforcing behavior + +--- + +# **Task 4: Build a Simple Web App Image** + +### 1. Create project + +```bash +mkdir my-website +cd my-website +``` + +### 2. Create `index.html` + + +--- + +### 3. Dockerfile + +```dockerfile +FROM nginx:alpine + +COPY index.html /usr/share/nginx/html/index.html +``` + +--- + +### 4. Build + +```bash +docker build -t my-website:v1 . +``` + +--- + +### 5. Run + +```bash +docker run -d -p 8080:80 my-website:v1 +``` +--- + +# **Task 5: .dockerignore** + +To confirm: + +* Large folders (e.g., `node_modules`) won’t be sent in build context +* Build will be faster +* Image size won’t include ignored files + +--- + +# **Task 6: Build Optimization** + + +### Notes + +**Why layer order matters:** + +* Docker caches each layer +* If a layer changes → all subsequent layers rebuild +* Place: + + * **stable steps first** (dependencies) + * **frequently changing files last** (source code) + +--- +![alt text](images/day31-task-1-ubuntu.png) ![alt text](images/day31-task-1.png) ![alt text](images/day31-task-2-demo.png) ![alt text](images/day31-task-2.png) ![alt text](images/day31-task-3-cmd.png) ![alt text](images/day31-task-3-entrypoint.png) ![alt text](images/day31-task-4-build.png) ![alt text](images/day31-task-4-my-website.png) ![alt text](images/day31-task-4-nginx-custom-run.png) ![alt text](images/day31-task-4.png) ![alt text](images/day31-task-5-build.png) ![alt text](images/day31-task-5-git-repo.png) ![alt text](images/day31-task-5.png) ![alt text](images/day31-task-6-dockerfile-change.png) ![alt text](images/day31-task-6-dockerfile.png) ![alt text](images/day31-task-6-rebuild-oneline.png) ![alt text](images/day31-task-6-rebuild.png) \ No newline at end of file diff --git a/2026/day-31/dockerfile-demo/Dockerfile b/2026/day-31/dockerfile-demo/Dockerfile new file mode 100644 index 0000000000..7c9d21fedb --- /dev/null +++ b/2026/day-31/dockerfile-demo/Dockerfile @@ -0,0 +1,11 @@ +FROM ubuntu:latest + +WORKDIR /app + +COPY file.txt . + +RUN apt-get update && apt-get install -y curl + +EXPOSE 8080 + +CMD ["bash", "-c", "echo Running container && cat file.txt"] \ No newline at end of file diff --git a/2026/day-31/entrypoint/Dockerfile b/2026/day-31/entrypoint/Dockerfile new file mode 100644 index 0000000000..ca6376103f --- /dev/null +++ b/2026/day-31/entrypoint/Dockerfile @@ -0,0 +1,3 @@ +FROM alpine + +ENTRYPOINT ["echo","Hello World"] \ No newline at end of file diff --git a/2026/day-31/images/day31-task-1-ubuntu.png b/2026/day-31/images/day31-task-1-ubuntu.png new file mode 100644 index 0000000000..a6d5f5789e Binary files /dev/null and b/2026/day-31/images/day31-task-1-ubuntu.png differ diff --git a/2026/day-31/images/day31-task-1.png b/2026/day-31/images/day31-task-1.png new file mode 100644 index 0000000000..ff3dac09d9 Binary files /dev/null and b/2026/day-31/images/day31-task-1.png differ diff --git a/2026/day-31/images/day31-task-2-demo.png b/2026/day-31/images/day31-task-2-demo.png new file mode 100644 index 0000000000..c7c6004d56 Binary files /dev/null and b/2026/day-31/images/day31-task-2-demo.png differ diff --git a/2026/day-31/images/day31-task-2.png b/2026/day-31/images/day31-task-2.png new file mode 100644 index 0000000000..ac77389948 Binary files /dev/null and b/2026/day-31/images/day31-task-2.png differ diff --git a/2026/day-31/images/day31-task-3-cmd.png b/2026/day-31/images/day31-task-3-cmd.png new file mode 100644 index 0000000000..1b3702330f Binary files /dev/null and b/2026/day-31/images/day31-task-3-cmd.png differ diff --git a/2026/day-31/images/day31-task-3-entrypoint.png b/2026/day-31/images/day31-task-3-entrypoint.png new file mode 100644 index 0000000000..7285df34b6 Binary files /dev/null and b/2026/day-31/images/day31-task-3-entrypoint.png differ diff --git a/2026/day-31/images/day31-task-4-build.png b/2026/day-31/images/day31-task-4-build.png new file mode 100644 index 0000000000..e852e9245e Binary files /dev/null and b/2026/day-31/images/day31-task-4-build.png differ diff --git a/2026/day-31/images/day31-task-4-my-website.png b/2026/day-31/images/day31-task-4-my-website.png new file mode 100644 index 0000000000..a5228d3c46 Binary files /dev/null and b/2026/day-31/images/day31-task-4-my-website.png differ diff --git a/2026/day-31/images/day31-task-4-nginx-custom-run.png b/2026/day-31/images/day31-task-4-nginx-custom-run.png new file mode 100644 index 0000000000..f121267ae8 Binary files /dev/null and b/2026/day-31/images/day31-task-4-nginx-custom-run.png differ diff --git a/2026/day-31/images/day31-task-4.png b/2026/day-31/images/day31-task-4.png new file mode 100644 index 0000000000..7a435be369 Binary files /dev/null and b/2026/day-31/images/day31-task-4.png differ diff --git a/2026/day-31/images/day31-task-5-build.png b/2026/day-31/images/day31-task-5-build.png new file mode 100644 index 0000000000..a7ff95cbfe Binary files /dev/null and b/2026/day-31/images/day31-task-5-build.png differ diff --git a/2026/day-31/images/day31-task-5-git-repo.png b/2026/day-31/images/day31-task-5-git-repo.png new file mode 100644 index 0000000000..7ef8a9b45f Binary files /dev/null and b/2026/day-31/images/day31-task-5-git-repo.png differ diff --git a/2026/day-31/images/day31-task-5.png b/2026/day-31/images/day31-task-5.png new file mode 100644 index 0000000000..84e2eb4e09 Binary files /dev/null and b/2026/day-31/images/day31-task-5.png differ diff --git a/2026/day-31/images/day31-task-6-dockerfile-change.png b/2026/day-31/images/day31-task-6-dockerfile-change.png new file mode 100644 index 0000000000..5d195ce4d6 Binary files /dev/null and b/2026/day-31/images/day31-task-6-dockerfile-change.png differ diff --git a/2026/day-31/images/day31-task-6-dockerfile.png b/2026/day-31/images/day31-task-6-dockerfile.png new file mode 100644 index 0000000000..b55317912c Binary files /dev/null and b/2026/day-31/images/day31-task-6-dockerfile.png differ diff --git a/2026/day-31/images/day31-task-6-rebuild-oneline.png b/2026/day-31/images/day31-task-6-rebuild-oneline.png new file mode 100644 index 0000000000..1a1dabfa4c Binary files /dev/null and b/2026/day-31/images/day31-task-6-rebuild-oneline.png differ diff --git a/2026/day-31/images/day31-task-6-rebuild.png b/2026/day-31/images/day31-task-6-rebuild.png new file mode 100644 index 0000000000..c9d47006a8 Binary files /dev/null and b/2026/day-31/images/day31-task-6-rebuild.png differ diff --git a/2026/day-31/my-first-image/Dockerfile b/2026/day-31/my-first-image/Dockerfile new file mode 100644 index 0000000000..d38d79c86b --- /dev/null +++ b/2026/day-31/my-first-image/Dockerfile @@ -0,0 +1,5 @@ +FROM ubuntu:latest + +RUN apt-get update && apt-get install -y curl + +CMD ["echo", "Hello from my custom image!"] \ No newline at end of file diff --git a/2026/day-31/my-website/Dockerfile b/2026/day-31/my-website/Dockerfile new file mode 100644 index 0000000000..b02cedbd3d --- /dev/null +++ b/2026/day-31/my-website/Dockerfile @@ -0,0 +1,3 @@ +FROM nginx:alpine + +COPY index.html /usr/share/nginx/html/index.html \ No newline at end of file diff --git a/2026/day-31/my-website/index.html b/2026/day-31/my-website/index.html new file mode 100644 index 0000000000..422d8bada1 --- /dev/null +++ b/2026/day-31/my-website/index.html @@ -0,0 +1,95 @@ + + + + + + Day 31 - Docker Nginx + + + + + +
+

🚀 Day 31

+

Nginx served successfully via Docker

+ +
+ my-website:v1 +
+ + +
+ + + \ No newline at end of file diff --git a/2026/day-32/day-32-volumes-networking.md b/2026/day-32/day-32-volumes-networking.md new file mode 100644 index 0000000000..384cd6f362 --- /dev/null +++ b/2026/day-32/day-32-volumes-networking.md @@ -0,0 +1,278 @@ +# Day 32 – Docker Volumes & Networking +--- + +## Task 1: The Problem (Ephemeral Containers) + +### Steps (Postgres example) + +```bash +docker run --name pg-test -e POSTGRES_PASSWORD=pass -d postgres + +# Exec into container +docker exec -it pg-test psql -U postgres + +# Inside psql: +CREATE TABLE demo(id INT, name TEXT); +INSERT INTO demo VALUES (1, 'Alice'); +SELECT * FROM demo; +\q + +# Stop & remove +docker stop pg-test +docker rm pg-test + +# Run a new container +docker run --name pg-test2 -e POSTGRES_PASSWORD=pass -d postgres +docker exec -it pg-test2 psql -U postgres +``` + +### Result + +Your table/data is **gone**. + +### Why? + +Containers use a **writable layer** (union filesystem). When the container is removed: + +* That layer is destroyed +* Any data not persisted externally is lost + +This is fundamental: **containers are stateless by default**. + +--- + +## Task 2: Named Volumes (Persistent Storage) + +### Create volume + +```bash +docker volume create pg-data +``` + +### Run container with volume + +```bash +docker run --name pg-vol -e POSTGRES_PASSWORD=pass -v pg-data:/var/lib/postgresql/data -d postgres +``` + +### Insert data + +Same SQL as before. + +### Remove container + +```bash +docker stop pg-vol +docker rm pg-vol +``` + +### Recreate container with SAME volume + +```bash +docker run --name pg-vol2 -e POSTGRES_PASSWORD=pass -v pg-data:/var/lib/postgresql/data -d postgres +``` + +### Verify + +```bash +docker exec -it pg-vol2 psql -U postgres +SELECT * FROM demo; +``` + +### Result + +Data is still there. + +### Inspect volume + +```bash +docker volume ls +docker volume inspect pg-data +``` + +### Why? + +Named volumes: + +* Live outside container lifecycle +* Managed by Docker (`/var/lib/docker/volumes/...`) +* Decoupled from container deletion + +--- + +## Task 3: Bind Mounts + +### Create local folder + +```bash +mkdir mysite +echo "

Hello from host

" > mysite/index.html +``` + +### Run Nginx with bind mount + +```bash +docker run --name nginx-test -p 8080:80 -v $(pwd)/mysite:/usr/share/nginx/html -d nginx +``` + +### Open browser + +``` +http://localhost:8080 +``` + +### Edit file locally + +```bash +echo "

Updated content

" > mysite/index.html +``` + +Refresh browser → updates immediately + +--- + +### Difference: Named Volume vs Bind Mount + +| Feature | Named Volume | Bind Mount | +| ------------------- | -------------------------- | --------------------------- | +| Managed by Docker | Yes | No | +| Location | Docker storage | Host filesystem | +| Portability | High | Low | +| Direct host editing | Not typical | Yes | +| Performance | Optimized | Depends on OS | +| Use case | Databases, persistent data | Dev workflows, live editing | + +**Key Insight:** + +* Named volumes = **data persistence abstraction** +* Bind mounts = **direct host ↔ container coupling** + +--- + +## Task 4: Docker Networking Basics + +### List networks +```bash +docker network ls +``` +### Inspect bridge + +```bash +docker network inspect bridge +``` +### Run containers +### Install ping tool + +### Test by name +- Fails + +### Test by IP +- Works + +--- + +### Why? + +Default bridge: + +* No automatic DNS resolution +* Containers must use IP unless linked (legacy) + +--- + +## Task 5: Custom Networks + +### Create network + +```bash +docker network create my-app-net +``` + +### Run containers + +### Install ping + +### Test +- Works by **name** + +--- + +### Why Custom Networks Enable Name Resolution + +Custom bridge networks include: + +* Embedded DNS server (Docker daemon) +* Automatic service discovery via container names +* Scoped isolation + +Default bridge lacks this DNS feature. + +--- + +## Task 6: Putting It All Together + +### Create network + +```bash +docker network create my-app-net +``` + +### Create volume + +```bash +docker volume create db-data +``` + +### Run database + +```bash +docker run -d --name mydb --network my-app-net -e POSTGRES_PASSWORD=pass -v db-data:/var/lib/postgresql/data postgres +``` + +### Run app container (example: busybox) + +```bash +docker run -it --rm --network my-app-net nginx +``` + +### Inside container + +```sh +ping mydb +``` + +Or test port: + +```sh +nc -zv mydb 5432 +``` + +--- + +### Result + +- App container can reach DB using: + +``` +hostname = mydb +``` + +--- + +# **Key Takeaways** + +* Containers are **ephemeral** unless storage is externalized +* **Volumes solve persistence** +* **Bind mounts solve development workflows** +* Default bridge = **IP-based communication** +* Custom networks = **DNS + service discovery** +* Real-world apps combine: + + * volumes (state) + * networks (connectivity) + * containers (compute) + +--- +[text](images) ![text](images/day-32-task-1-postgres-dbs-delete.png) ![text](images/day-32-task-1-postgres-dbs.png) ![text](images/day-32-task-2-db.png) ![text](images/day-32-task-2-persistent-volume-data.png) ![text](images/day-32-task-2-persistent-volume-data2.png) ![text](images/day-32-task-2-pgsql-backup.png) ![text](images/day-32-task-2.png) ![text](images/day32-task-1-postgres-db-drop.png) ![text](images/day32-task-1-postgres-q.png) ![text](images/day32-task-1-postgres.png) ![text](images/day32-task-1-psql.png) ![text](images/day32-task-1.png) ![text](images/day32-task-2-backu.png) ![text](images/day32-task-3-after-changes-refresh.png) ![text](images/day32-task-3-nginx.png) ![text](images/day32-task-3-webpage-success.png) ![text](images/day32-task-3.png) ![text](images/day32-task-4-1st-container-ping.png) ![text](images/day32-task-4-2nd-container-exec.png) ![text](images/day32-task-4-2nd-container-ping.png) ![text](images/day32-task-4-network-exec.png) ![text](images/day32-task-4-network-inspect.png) ![text](images/day32-task-4-network.png) ![text](images/day32-task-4.png) ![text](images/day32-task-5-both-inspect.png) ![text](images/day32-task-5-container-ping-via-custom-network.png) ![text](images/day32-task-5-inspect-net.png) ![text](images/day32-task-5.png) ![text](images/day32-task-6-inspect.png) ![text](images/day32-task-6-ping-pg-database.png) ![text](images/day32-task-6.png) [text](day-32-volumes-networking.md) [text](README.md) + +--- \ No newline at end of file diff --git a/2026/day-32/dockerfile/Dockerfile b/2026/day-32/dockerfile/Dockerfile new file mode 100644 index 0000000000..ff3a23d0d1 --- /dev/null +++ b/2026/day-32/dockerfile/Dockerfile @@ -0,0 +1,15 @@ +# Use the official NGINX image as the base + +FROM nginx:alpine + +# Copy custom static content + +COPY index.html /usr/share/nginx/html/index.html + +# Expose port 80 (default HTTP port) + +EXPOSE 80 + +# Command to run NGINX in the foreground so Docker can track the process + +CMD ["nginx", "-g", "daemon off;"] \ No newline at end of file diff --git a/2026/day-32/dockerfile/bind-web/index.html b/2026/day-32/dockerfile/bind-web/index.html new file mode 100644 index 0000000000..e568085ec4 --- /dev/null +++ b/2026/day-32/dockerfile/bind-web/index.html @@ -0,0 +1,95 @@ + + + + + + Day 32 - Docker Nginx + + + + + +
+

🚀 Day 32 bind nginx

+

Nginx served successfully via Docker

+ +
+ my-website bind with nginx and after changes refreshed +
+ + +
+ + + \ No newline at end of file diff --git a/2026/day-32/dockerfile/index.html b/2026/day-32/dockerfile/index.html new file mode 100644 index 0000000000..422d8bada1 --- /dev/null +++ b/2026/day-32/dockerfile/index.html @@ -0,0 +1,95 @@ + + + + + + Day 31 - Docker Nginx + + + + + +
+

🚀 Day 31

+

Nginx served successfully via Docker

+ +
+ my-website:v1 +
+ + +
+ + + \ No newline at end of file diff --git a/2026/day-32/images/day-32-task-1-postgres-dbs-delete.png b/2026/day-32/images/day-32-task-1-postgres-dbs-delete.png new file mode 100644 index 0000000000..f4c0f8e38c Binary files /dev/null and b/2026/day-32/images/day-32-task-1-postgres-dbs-delete.png differ diff --git a/2026/day-32/images/day-32-task-1-postgres-dbs.png b/2026/day-32/images/day-32-task-1-postgres-dbs.png new file mode 100644 index 0000000000..8848bc80ff Binary files /dev/null and b/2026/day-32/images/day-32-task-1-postgres-dbs.png differ diff --git a/2026/day-32/images/day-32-task-2-db.png b/2026/day-32/images/day-32-task-2-db.png new file mode 100644 index 0000000000..35fa9bf635 Binary files /dev/null and b/2026/day-32/images/day-32-task-2-db.png differ diff --git a/2026/day-32/images/day-32-task-2-persistent-volume-data.png b/2026/day-32/images/day-32-task-2-persistent-volume-data.png new file mode 100644 index 0000000000..5fcba847ae Binary files /dev/null and b/2026/day-32/images/day-32-task-2-persistent-volume-data.png differ diff --git a/2026/day-32/images/day-32-task-2-persistent-volume-data2.png b/2026/day-32/images/day-32-task-2-persistent-volume-data2.png new file mode 100644 index 0000000000..c2adc03a96 Binary files /dev/null and b/2026/day-32/images/day-32-task-2-persistent-volume-data2.png differ diff --git a/2026/day-32/images/day-32-task-2-pgsql-backup.png b/2026/day-32/images/day-32-task-2-pgsql-backup.png new file mode 100644 index 0000000000..e1cc89fb9a Binary files /dev/null and b/2026/day-32/images/day-32-task-2-pgsql-backup.png differ diff --git a/2026/day-32/images/day-32-task-2.png b/2026/day-32/images/day-32-task-2.png new file mode 100644 index 0000000000..89f4953a6e Binary files /dev/null and b/2026/day-32/images/day-32-task-2.png differ diff --git a/2026/day-32/images/day32-task-1-postgres-db-drop.png b/2026/day-32/images/day32-task-1-postgres-db-drop.png new file mode 100644 index 0000000000..d4fcf37cd6 Binary files /dev/null and b/2026/day-32/images/day32-task-1-postgres-db-drop.png differ diff --git a/2026/day-32/images/day32-task-1-postgres-q.png b/2026/day-32/images/day32-task-1-postgres-q.png new file mode 100644 index 0000000000..c36aa12afc Binary files /dev/null and b/2026/day-32/images/day32-task-1-postgres-q.png differ diff --git a/2026/day-32/images/day32-task-1-postgres.png b/2026/day-32/images/day32-task-1-postgres.png new file mode 100644 index 0000000000..1b750e49a7 Binary files /dev/null and b/2026/day-32/images/day32-task-1-postgres.png differ diff --git a/2026/day-32/images/day32-task-1-psql.png b/2026/day-32/images/day32-task-1-psql.png new file mode 100644 index 0000000000..8ab4336c85 Binary files /dev/null and b/2026/day-32/images/day32-task-1-psql.png differ diff --git a/2026/day-32/images/day32-task-1.png b/2026/day-32/images/day32-task-1.png new file mode 100644 index 0000000000..4dcb63bbe2 Binary files /dev/null and b/2026/day-32/images/day32-task-1.png differ diff --git a/2026/day-32/images/day32-task-2-backu.png b/2026/day-32/images/day32-task-2-backu.png new file mode 100644 index 0000000000..1dfd625d82 Binary files /dev/null and b/2026/day-32/images/day32-task-2-backu.png differ diff --git a/2026/day-32/images/day32-task-3-after-changes-refresh.png b/2026/day-32/images/day32-task-3-after-changes-refresh.png new file mode 100644 index 0000000000..620e00d570 Binary files /dev/null and b/2026/day-32/images/day32-task-3-after-changes-refresh.png differ diff --git a/2026/day-32/images/day32-task-3-nginx.png b/2026/day-32/images/day32-task-3-nginx.png new file mode 100644 index 0000000000..e0b720c2e5 Binary files /dev/null and b/2026/day-32/images/day32-task-3-nginx.png differ diff --git a/2026/day-32/images/day32-task-3-webpage-success.png b/2026/day-32/images/day32-task-3-webpage-success.png new file mode 100644 index 0000000000..85b748d130 Binary files /dev/null and b/2026/day-32/images/day32-task-3-webpage-success.png differ diff --git a/2026/day-32/images/day32-task-3.png b/2026/day-32/images/day32-task-3.png new file mode 100644 index 0000000000..0cdd7e62f5 Binary files /dev/null and b/2026/day-32/images/day32-task-3.png differ diff --git a/2026/day-32/images/day32-task-4-1st-container-ping.png b/2026/day-32/images/day32-task-4-1st-container-ping.png new file mode 100644 index 0000000000..6e98d8480f Binary files /dev/null and b/2026/day-32/images/day32-task-4-1st-container-ping.png differ diff --git a/2026/day-32/images/day32-task-4-2nd-container-exec.png b/2026/day-32/images/day32-task-4-2nd-container-exec.png new file mode 100644 index 0000000000..a2e52f19e4 Binary files /dev/null and b/2026/day-32/images/day32-task-4-2nd-container-exec.png differ diff --git a/2026/day-32/images/day32-task-4-2nd-container-ping.png b/2026/day-32/images/day32-task-4-2nd-container-ping.png new file mode 100644 index 0000000000..141c84c5de Binary files /dev/null and b/2026/day-32/images/day32-task-4-2nd-container-ping.png differ diff --git a/2026/day-32/images/day32-task-4-network-exec.png b/2026/day-32/images/day32-task-4-network-exec.png new file mode 100644 index 0000000000..81afec5bcd Binary files /dev/null and b/2026/day-32/images/day32-task-4-network-exec.png differ diff --git a/2026/day-32/images/day32-task-4-network-inspect.png b/2026/day-32/images/day32-task-4-network-inspect.png new file mode 100644 index 0000000000..1c8be666f1 Binary files /dev/null and b/2026/day-32/images/day32-task-4-network-inspect.png differ diff --git a/2026/day-32/images/day32-task-4-network.png b/2026/day-32/images/day32-task-4-network.png new file mode 100644 index 0000000000..30f1908c80 Binary files /dev/null and b/2026/day-32/images/day32-task-4-network.png differ diff --git a/2026/day-32/images/day32-task-4.png b/2026/day-32/images/day32-task-4.png new file mode 100644 index 0000000000..12af5eb405 Binary files /dev/null and b/2026/day-32/images/day32-task-4.png differ diff --git a/2026/day-32/images/day32-task-5-both-inspect.png b/2026/day-32/images/day32-task-5-both-inspect.png new file mode 100644 index 0000000000..54ac34bef2 Binary files /dev/null and b/2026/day-32/images/day32-task-5-both-inspect.png differ diff --git a/2026/day-32/images/day32-task-5-container-ping-via-custom-network.png b/2026/day-32/images/day32-task-5-container-ping-via-custom-network.png new file mode 100644 index 0000000000..eebe0ce95d Binary files /dev/null and b/2026/day-32/images/day32-task-5-container-ping-via-custom-network.png differ diff --git a/2026/day-32/images/day32-task-5-inspect-net.png b/2026/day-32/images/day32-task-5-inspect-net.png new file mode 100644 index 0000000000..c3a5f61a91 Binary files /dev/null and b/2026/day-32/images/day32-task-5-inspect-net.png differ diff --git a/2026/day-32/images/day32-task-5.png b/2026/day-32/images/day32-task-5.png new file mode 100644 index 0000000000..cb3528d2b1 Binary files /dev/null and b/2026/day-32/images/day32-task-5.png differ diff --git a/2026/day-32/images/day32-task-6-inspect.png b/2026/day-32/images/day32-task-6-inspect.png new file mode 100644 index 0000000000..1aec2201e7 Binary files /dev/null and b/2026/day-32/images/day32-task-6-inspect.png differ diff --git a/2026/day-32/images/day32-task-6-ping-pg-database.png b/2026/day-32/images/day32-task-6-ping-pg-database.png new file mode 100644 index 0000000000..fbabb96546 Binary files /dev/null and b/2026/day-32/images/day32-task-6-ping-pg-database.png differ diff --git a/2026/day-32/images/day32-task-6.png b/2026/day-32/images/day32-task-6.png new file mode 100644 index 0000000000..e7b01980e3 Binary files /dev/null and b/2026/day-32/images/day32-task-6.png differ diff --git a/2026/day-33/compose-basic/docker-compose.yaml b/2026/day-33/compose-basic/docker-compose.yaml new file mode 100644 index 0000000000..85f8706672 --- /dev/null +++ b/2026/day-33/compose-basic/docker-compose.yaml @@ -0,0 +1,7 @@ +name: nginx-service + +services: + nginx-app: + image: nginx:latest + ports: + - 8080:80 \ No newline at end of file diff --git a/2026/day-33/day-33-compose.md b/2026/day-33/day-33-compose.md new file mode 100644 index 0000000000..c3afb2b4e1 --- /dev/null +++ b/2026/day-33/day-33-compose.md @@ -0,0 +1,269 @@ +# Day 33 – Docker Compose: Multi-Container Basics + +--- + +## Task 1: Install & Verify Docker Compose + +### 1. Check if Docker Compose is available + +```bash +docker compose version +``` + +> Note: Modern Docker uses `docker compose` (space), not `docker-compose` (hyphen). + +### 2. Verify version + +If not installed: +* Install Docker Desktop (includes Compose), or +* On Linux: +```bash +sudo apt install docker-compose-v2 +``` +--- + +## Task 2: Your First Compose File (Nginx) + +### 1. Create project folder + +```bash +mkdir compose-basics +cd compose-basics +``` + +### 2. Create `docker-compose.yml` + +```yaml +services: + web: + image: nginx:latest + ports: + - "8080:80" +``` + +### 3. Start container + +```bash +docker compose up +``` + +### 4. Access in browser + +``` +http://localhost:8080 +``` + +You should see the default Nginx welcome page. + +### 5. Stop and remove + +```bash +docker compose down +``` + +--- + +## Task 3: Two-Container Setup (WordPress + MySQL) + +### 1. Create `docker-compose.yml` + +```yaml +services: + mysql_db: + image: mysql:8.0 + container_name: wordpress-db + restart: always + environment: + MYSQL_ROOT_PASSWORD: rootpass + MYSQL_DATABASE: wordpress + MYSQL_USER: wpuser + MYSQL_PASSWORD: wppass + volumes: + - db_data:/var/lib/mysql + + wordpress: + image: wordpress:latest + container_name: wordpress-app + depends_on: + - mysql_db + ports: + - "8081:80" + restart: always + environment: + WORDPRESS_DB_HOST: db:3306 + WORDPRESS_DB_USER: wpuser + WORDPRESS_DB_PASSWORD: wppass + WORDPRESS_DB_NAME: wordpress + +volumes: + db_data: +``` + +### Key Concepts + +* `mysql_db` is the hostname WordPress uses → **service name = DNS entry** +* `db_data` ensures persistence + +--- + +### 2. Start services + +```bash +docker compose up -d +``` + +### 3. Access WordPress + +``` +http://localhost:8081 +``` + +Complete setup via browser. + +--- + +### 4. Verify persistence + +Stop: + +```bash +docker compose down +``` + +Start again: + +```bash +docker compose up -d +``` + + Your WordPress site should still be configured — this confirms the volume works. + +--- + +# **Task 4: Compose Commands (Practice + Reference)** + +### Start in detached mode + +```bash +docker compose up -d +``` + +### View running services + +```bash +docker compose ps +``` + +### View logs (all services) + +```bash +docker compose logs +``` + +### View logs (specific service) + +```bash +docker compose logs wordpress +docker compose logs mysql_db +``` + +### Follow logs (real-time) + +```bash +docker compose logs -f +``` + +### Stop services (keep containers) + +```bash +docker compose stop +``` + +### Remove everything (containers + networks) + +```bash +docker compose down +``` + +### Remove everything including volumes (⚠ destructive) + +```bash +docker compose down -v +``` + +### Rebuild images + +```bash +docker compose up --build +``` + +--- + +# **Task 5: Environment Variables** + +## Option A: Inline in `docker-compose.yml` + +```yaml +environment: + MYSQL_ROOT_PASSWORD: rootpass +``` + +--- + +## Option B: Use `.env` file + +### 1. Create `.env` + +``` +MYSQL_ROOT_PASSWORD=rootpass +MYSQL_DATABASE=wordpress +MYSQL_USER=wpuser +MYSQL_PASSWORD=wppass +``` + +--- + +### 2. Reference in `docker-compose.yml` + +```yaml +services: + db: + image: mysql:8.0 + environment: + MYSQL_ROOT_PASSWORD: ${MYSQL_ROOT_PASSWORD} + MYSQL_DATABASE: ${MYSQL_DATABASE} + MYSQL_USER: ${MYSQL_USER} + MYSQL_PASSWORD: ${MYSQL_PASSWORD} +``` + +--- + +### 3. Verify variables are picked up + +Run: + +```bash +docker compose config +``` + +This resolves and prints the final configuration with substituted values. + +You can also inspect inside container: + +```bash +docker exec -it wordpress-db env | grep MYSQL +``` + +--- + +## What You Should Have Proven + +* Compose is installed and working +* You can orchestrate containers declaratively +* Services communicate via internal DNS +* Volumes persist data across restarts +* You can control lifecycle and logs +* You understand environment variable injection + +--- + diff --git a/2026/day-33/images/day-33-task-3-wp.png b/2026/day-33/images/day-33-task-3-wp.png new file mode 100644 index 0000000000..2bb0c22310 Binary files /dev/null and b/2026/day-33/images/day-33-task-3-wp.png differ diff --git a/2026/day-33/images/day33-task-1.png b/2026/day-33/images/day33-task-1.png new file mode 100644 index 0000000000..a7a289b344 Binary files /dev/null and b/2026/day-33/images/day33-task-1.png differ diff --git a/2026/day-33/images/day33-task-2.png b/2026/day-33/images/day33-task-2.png new file mode 100644 index 0000000000..6987dfcde6 Binary files /dev/null and b/2026/day-33/images/day33-task-2.png differ diff --git a/2026/day-33/images/day33-task-3-complete.png b/2026/day-33/images/day33-task-3-complete.png new file mode 100644 index 0000000000..2bfcb1290e Binary files /dev/null and b/2026/day-33/images/day33-task-3-complete.png differ diff --git a/2026/day-33/images/day33-task-3-wp-com.png b/2026/day-33/images/day33-task-3-wp-com.png new file mode 100644 index 0000000000..a91b19ed82 Binary files /dev/null and b/2026/day-33/images/day33-task-3-wp-com.png differ diff --git a/2026/day-33/images/day33-task-3-wp-data.png b/2026/day-33/images/day33-task-3-wp-data.png new file mode 100644 index 0000000000..68b9ea510e Binary files /dev/null and b/2026/day-33/images/day33-task-3-wp-data.png differ diff --git a/2026/day-33/images/day33-task-3-wp-login.png b/2026/day-33/images/day33-task-3-wp-login.png new file mode 100644 index 0000000000..22d1812e0a Binary files /dev/null and b/2026/day-33/images/day33-task-3-wp-login.png differ diff --git a/2026/day-33/images/day33-task-3.png b/2026/day-33/images/day33-task-3.png new file mode 100644 index 0000000000..1b8016ba80 Binary files /dev/null and b/2026/day-33/images/day33-task-3.png differ diff --git a/2026/day-33/images/day33-task-3post.png b/2026/day-33/images/day33-task-3post.png new file mode 100644 index 0000000000..0ee42c58a6 Binary files /dev/null and b/2026/day-33/images/day33-task-3post.png differ diff --git a/2026/day-33/images/day33-task-4-complete.png b/2026/day-33/images/day33-task-4-complete.png new file mode 100644 index 0000000000..6d8f8941d7 Binary files /dev/null and b/2026/day-33/images/day33-task-4-complete.png differ diff --git a/2026/day-33/images/day33-task-4-logs.png b/2026/day-33/images/day33-task-4-logs.png new file mode 100644 index 0000000000..8059346265 Binary files /dev/null and b/2026/day-33/images/day33-task-4-logs.png differ diff --git a/2026/day-33/images/day33-task-4.png b/2026/day-33/images/day33-task-4.png new file mode 100644 index 0000000000..69bc00146a Binary files /dev/null and b/2026/day-33/images/day33-task-4.png differ diff --git a/2026/day-33/images/day33-task-5.png b/2026/day-33/images/day33-task-5.png new file mode 100644 index 0000000000..de6443f7ba Binary files /dev/null and b/2026/day-33/images/day33-task-5.png differ diff --git a/2026/day-33/wordpress/.gitignore b/2026/day-33/wordpress/.gitignore new file mode 100644 index 0000000000..62f013f482 --- /dev/null +++ b/2026/day-33/wordpress/.gitignore @@ -0,0 +1,3 @@ +env +*.env +*venv \ No newline at end of file diff --git a/2026/day-33/wordpress/docker-compose.yaml b/2026/day-33/wordpress/docker-compose.yaml new file mode 100644 index 0000000000..69b37b3527 --- /dev/null +++ b/2026/day-33/wordpress/docker-compose.yaml @@ -0,0 +1,28 @@ +services: + mysql_db: + image: mysql:8.0 + container_name: mysql_db + restart: always + environment: + MYSQL_ROOT_PASSWORD: ${MYSQL_ROOT_PASSWORD} + MYSQL_DATABASE: ${MYSQL_DATABASE} + MYSQL_USER: ${MYSQL_USER} + MYSQL_PASSWORD: ${MYSQL_PASSWORD} + volumes: + - mysql_data:/var/lib/mysql + wordpress: + image: wordpress:latest + container_name: wordpress-app + depends_on: + - mysql_db + ports: + - "8080:80" + restart: always + environment: + WORDPRESS_DB_HOST: ${WORDPRESS_DB_HOST} + WORDPRESS_DB_USER: ${WORDPRESS_DB_USER} + WORDPRESS_DB_PASSWORD: ${WORDPRESS_DB_PASSWORD} + WORDPRESS_DB_NAME: ${WORDPRESS_DB_NAME} + +volumes: + mysql_data: \ No newline at end of file diff --git a/2026/day-34/Docker-restart-behavior.md b/2026/day-34/Docker-restart-behavior.md new file mode 100644 index 0000000000..4043888ee1 --- /dev/null +++ b/2026/day-34/Docker-restart-behavior.md @@ -0,0 +1,188 @@ +**Docker restart behavior.** + +--- + +# What just happened + +when you direct killing your database container + +You ran: + +```bash +docker kill postgres_db +``` + +Then: + +```text +postgres_db → Exited (137) +``` + +And it **did NOT restart**, despite: + +```yaml +restart: always +``` + +--- + +# Why it didn’t restart + +This is the key rule: + +> **`restart: always` only works under the Docker daemon, not manual user intervention** + +When you use: + +* `docker stop` +* `docker kill` + +Docker interprets that as: + +> “The user explicitly wants this container stopped” + +So it **will not restart it automatically**. + +--- + +# How to prove restart policy works + +Instead of killing it manually, simulate a failure *inside* the container: + +### Option 1: Kill PID 1 inside container + +```bash +docker exec postgres_db kill 1 +``` + +Now check: + +```bash +docker ps +``` + +You should see: + +```text +postgres_db → restarting → Up again +``` + +--- + +### Option 2: Let it crash naturally (misconfig) + +Temporarily break env: + +```yaml +POSTGRES_PASSWORD: "" +``` + +Then: + +```bash +docker compose up +``` + +It will crash → restart loop (because of `always`) + +--- + +# Difference: `always` vs `on-failure` + +### `restart: always` + +* Restarts on: + + * crash + * daemon restart +* Does NOT restart if *you manually stop/kill it* + +--- + +### `restart: on-failure` + +* Restarts **only if exit code ≠ 0** +* Does NOT restart on: + + * clean exit + * manual stop + +--- + +# Why your test behaved this way + +```text +Exit code: 137 +``` + +That means: + +* SIGKILL (you killed it) +* Docker treats this as **intentional termination** + +--- + +# Subtle but important Compose behavior + +Also note: + +Your `depends_on`: + +```yaml +depends_on: + pg-data: + condition: service_healthy +``` + +Only affects: + +* **startup order** + +It does **NOT**: + +* restart the web app if DB dies +* re-trigger dependency checks after startup + +So your system now is: + +```text +flask_app → running (but DB is gone) +redis → running +postgres → dead +``` + +--- + +# Real-world implication + +This is why production systems use: + +* retry logic in the app (you partially added it 👍) +* or orchestration (Kubernetes liveness/readiness probes) + +--- + +# If you want DB to come back automatically after manual kill + +You’d need to restart via Compose, not Docker: + +```bash +docker compose restart pg-data +``` + +or: + +```bash +docker compose up -d +``` + +--- + +# Quick Summary + +* Your config is correct +* Your test method bypassed restart policy +* `depends_on` is **not runtime dependency management**, only startup sequencing + +--- + diff --git a/2026/day-34/day-34-compose-advanced.md b/2026/day-34/day-34-compose-advanced.md new file mode 100644 index 0000000000..a1ffdfbdeb --- /dev/null +++ b/2026/day-34/day-34-compose-advanced.md @@ -0,0 +1,116 @@ +# Day 34 – Docker Compose: Real-World Multi-Container Apps + +--- +## Task 1: Build Your Own App Stack +Done + +--- + +## Task 2: depends_on & Healthchecks + +Done +--- + +## Task 3: Restart Policies +| Policy | Behavior | +| ------------ | -------------------------------------------------------- | +| `always` | Restarts no matter what (even manual stop in some cases) | +| `on-failure` | Only restarts if exit code ≠ 0 | +| `no` | Never restart | + +* When to use: +- always +- Databases +- Critical infrastructure +- Long-running services +- on-failure +- Batch jobs +- Workers (retry on crash only) + +--- + +## Task 4: Custom Dockerfiles in Compose +Done + +--- + +## Task 5: Named Networks & Volumes +* Why: + +- Predictable service discovery +- Isolation from other stacks + +* Why: + +- Persistent DB storage +- Survives container deletion + +--- + +## Task 6: Scaling (Bonus) + +Command: + +``` +docker compose up --scale flask_app=3 +``` + +What happens: +3 containers start: +flask_app_1, flask_app_2, flask_app_3 +BUT: +Problem: + +``` +ports: + - "5000:5000" +``` + +Only one container can bind to port 5000 on the host + +Result: +Scaling fails OR only one instance is accessible +Why scaling breaks with port mapping + +Because: + +- Port binding is host-level + +You cannot map: + +host:5000 → multiple containers +Correct pattern (real-world): + +Remove ports and use: + +Reverse proxy (NGINX / Traefik) +Load balancer +Docker internal DNS + +Example: +``` +web: + deploy: + replicas: 3 +``` +And expose via: + +NGINX upstream +Or Kubernetes service (in real production) +Summary of What You Built + +You now have: + +Multi-service containerized app +Proper startup sequencing (healthchecks + depends_on) +Restart resilience +Custom build pipeline +Persistent storage +Network isolation +Understanding of scaling limitations + +--- + +![alt text](images/day34-task-1-dockerfile.png) ![alt text](images/day34-task-1.png) ![alt text](images/day34-task-2-docker-compose-build.png) ![alt text](images/day34-task-2-docker-compose.png) ![alt text](images/day34-task-2-docker-ps.png) ![alt text](images/day34-task-2.png) ![alt text](images/day34-task-3.png) ![alt text](images/day34-task-4-image.png) ![alt text](images/day34-task-4-on-failure-d.png) ![alt text](images/day34-task-4-on-failure.png) ![alt text](images/day34-task-4-restart-on-f.png) ![alt text](images/day34-task-4-restart-on-failure.png) ![alt text](images/day34-task-4-restart.png) ![alt text](images/day34-task-4.png) ![alt text](images/day34-task-6-1.png) ![alt text](images/day34-task-6-scale-up.png) ![alt text](images/day34-task-6.2.png) ![alt text](images/day34-task-6.3.png) ![alt text](images/day34-task-6.4.png) ![alt text](images/day34-task-6.png) ![alt text](images/day34-task6.5.png) + +--- \ No newline at end of file diff --git a/2026/day-34/docker-compose-advanced/Dockerfile b/2026/day-34/docker-compose-advanced/Dockerfile new file mode 100644 index 0000000000..bb90b17b54 --- /dev/null +++ b/2026/day-34/docker-compose-advanced/Dockerfile @@ -0,0 +1,13 @@ +FROM python:3.11-slim + +WORKDIR /app + +COPY requirements.txt ./ + +RUN pip install -r requirements.txt + +COPY . . + +EXPOSE 5000 + +CMD ["python","app.py"] \ No newline at end of file diff --git a/2026/day-34/docker-compose-advanced/app.py b/2026/day-34/docker-compose-advanced/app.py new file mode 100644 index 0000000000..bdafe9b9df --- /dev/null +++ b/2026/day-34/docker-compose-advanced/app.py @@ -0,0 +1,56 @@ +from flask import Flask +import psycopg2 +import redis +import os +import time + +app = Flask(__name__) + +def get_db_connection(): + return psycopg2.connect( + host=os.environ.get("DB_HOST"), + database=os.environ.get("DB_NAME"), + user=os.environ.get("DB_USER"), + password=os.environ.get("DB_PASSWORD") + ) + +def get_redis(): + return redis.Redis(host=os.environ.get("REDIS_HOST"), port=6379) + +@app.route("/") +def hello(): + # DB check + try: + conn = get_db_connection() + cur = conn.cursor() + cur.execute("SELECT 1;") + cur.close() + conn.close() + db_status = "connected" + except Exception as e: + db_status = f"error: {e}" + + # Redis check + try: + r = get_redis() + r.set("ping", "pong") + redis_status = r.get("ping").decode() + except Exception as e: + redis_status = f"error: {e}" + + return { + "message": "Hello World", + "database": db_status, + "redis": redis_status + } + +if __name__ == "__main__": + # Small retry loop (defensive, even with depends_on) + for i in range(5): + try: + get_db_connection() + break + except: + time.sleep(2) + + app.run(host="0.0.0.0", port=5000) \ No newline at end of file diff --git a/2026/day-34/docker-compose-advanced/docker-compose.yml b/2026/day-34/docker-compose-advanced/docker-compose.yml new file mode 100644 index 0000000000..2292601a49 --- /dev/null +++ b/2026/day-34/docker-compose-advanced/docker-compose.yml @@ -0,0 +1,57 @@ + +services: + flask_app: + image: flask-app:latest + container_name: flask_app + ports: + - "5000:5000" + environment: + DB_HOST: pg-data + DB_NAME: pg-db + DB_USER: Robin + DB_PASSWORD: Test@123 + REDIS_HOST: redis + depends_on: + pg-data: + condition: service_healthy + redis: + condition: service_started + networks: + - new_net + labels: + - "project: demo-stack" + - "tier: frontend" + + pg-data: + image: postgres:15 + container_name: postgres_db + restart: on-failure + environment: + POSTGRES_DB: pg-db + POSTGRES_USER: Robin + POSTGRES_PASSWORD: Test@123 + volumes: + - pg-data:/var/lib/postgresql/data + healthcheck: + test: ["CMD-SHELL","pg_isready -U Robin -d pg-db"] + interval: 5s + timeout: 3s + retries: 5 + networks: + - new_net + labels: + - "project: demo-stack" + - "tier: database" + + redis: + image: redis:7 + container_name: redis_cache + networks: + - new_net + labels: + - "project: demo-stack" + - "tier: cache" +networks: + new_net: +volumes: + pg-data: \ No newline at end of file diff --git a/2026/day-34/docker-compose-advanced/requirements.txt b/2026/day-34/docker-compose-advanced/requirements.txt new file mode 100644 index 0000000000..ed4fd425d6 --- /dev/null +++ b/2026/day-34/docker-compose-advanced/requirements.txt @@ -0,0 +1,3 @@ +flask +psycopg2-binary +redis \ No newline at end of file diff --git a/2026/day-34/docker-compose-advanced/task-6/docker-compose.yaml b/2026/day-34/docker-compose-advanced/task-6/docker-compose.yaml new file mode 100644 index 0000000000..4f0ad4e4dd --- /dev/null +++ b/2026/day-34/docker-compose-advanced/task-6/docker-compose.yaml @@ -0,0 +1,54 @@ + +services: + flask_app: + image: flask-app:latest + environment: + DB_HOST: pg-data + DB_NAME: pg-db + DB_USER: Robin + DB_PASSWORD: Test@123 + REDIS_HOST: redis + depends_on: + pg-data: + condition: service_healthy + redis: + condition: service_started + networks: + - new_net + labels: + - "project: demo-stack" + - "tier: frontend" + + pg-data: + image: postgres:15 + container_name: postgres_db + restart: on-failure + environment: + POSTGRES_DB: pg-db + POSTGRES_USER: Robin + POSTGRES_PASSWORD: Test@123 + volumes: + - pg-data:/var/lib/postgresql/data + healthcheck: + test: ["CMD-SHELL","pg_isready -U Robin -d pg-db"] + interval: 5s + timeout: 3s + retries: 5 + networks: + - new_net + labels: + - "project: demo-stack" + - "tier: database" + + redis: + image: redis:7 + container_name: redis_cache + networks: + - new_net + labels: + - "project: demo-stack" + - "tier: cache" +networks: + new_net: +volumes: + pg-data: \ No newline at end of file diff --git a/2026/day-34/images/day34-task-1-dockerfile.png b/2026/day-34/images/day34-task-1-dockerfile.png new file mode 100644 index 0000000000..a0ec51d816 Binary files /dev/null and b/2026/day-34/images/day34-task-1-dockerfile.png differ diff --git a/2026/day-34/images/day34-task-1.png b/2026/day-34/images/day34-task-1.png new file mode 100644 index 0000000000..c3958c41cb Binary files /dev/null and b/2026/day-34/images/day34-task-1.png differ diff --git a/2026/day-34/images/day34-task-2-docker-compose-build.png b/2026/day-34/images/day34-task-2-docker-compose-build.png new file mode 100644 index 0000000000..8c74cf11a5 Binary files /dev/null and b/2026/day-34/images/day34-task-2-docker-compose-build.png differ diff --git a/2026/day-34/images/day34-task-2-docker-compose.png b/2026/day-34/images/day34-task-2-docker-compose.png new file mode 100644 index 0000000000..d3185cca77 Binary files /dev/null and b/2026/day-34/images/day34-task-2-docker-compose.png differ diff --git a/2026/day-34/images/day34-task-2-docker-ps.png b/2026/day-34/images/day34-task-2-docker-ps.png new file mode 100644 index 0000000000..4bf0a8036d Binary files /dev/null and b/2026/day-34/images/day34-task-2-docker-ps.png differ diff --git a/2026/day-34/images/day34-task-2.png b/2026/day-34/images/day34-task-2.png new file mode 100644 index 0000000000..5061d59b31 Binary files /dev/null and b/2026/day-34/images/day34-task-2.png differ diff --git a/2026/day-34/images/day34-task-3.png b/2026/day-34/images/day34-task-3.png new file mode 100644 index 0000000000..c8af57930e Binary files /dev/null and b/2026/day-34/images/day34-task-3.png differ diff --git a/2026/day-34/images/day34-task-4-image.png b/2026/day-34/images/day34-task-4-image.png new file mode 100644 index 0000000000..9fe45fde93 Binary files /dev/null and b/2026/day-34/images/day34-task-4-image.png differ diff --git a/2026/day-34/images/day34-task-4-on-failure-d.png b/2026/day-34/images/day34-task-4-on-failure-d.png new file mode 100644 index 0000000000..140bba9381 Binary files /dev/null and b/2026/day-34/images/day34-task-4-on-failure-d.png differ diff --git a/2026/day-34/images/day34-task-4-on-failure.png b/2026/day-34/images/day34-task-4-on-failure.png new file mode 100644 index 0000000000..ae84c9415f Binary files /dev/null and b/2026/day-34/images/day34-task-4-on-failure.png differ diff --git a/2026/day-34/images/day34-task-4-restart-on-f.png b/2026/day-34/images/day34-task-4-restart-on-f.png new file mode 100644 index 0000000000..df1ed12ee2 Binary files /dev/null and b/2026/day-34/images/day34-task-4-restart-on-f.png differ diff --git a/2026/day-34/images/day34-task-4-restart-on-failure.png b/2026/day-34/images/day34-task-4-restart-on-failure.png new file mode 100644 index 0000000000..4ffd7dec6d Binary files /dev/null and b/2026/day-34/images/day34-task-4-restart-on-failure.png differ diff --git a/2026/day-34/images/day34-task-4-restart.png b/2026/day-34/images/day34-task-4-restart.png new file mode 100644 index 0000000000..14516228b6 Binary files /dev/null and b/2026/day-34/images/day34-task-4-restart.png differ diff --git a/2026/day-34/images/day34-task-4.png b/2026/day-34/images/day34-task-4.png new file mode 100644 index 0000000000..63bb8b3933 Binary files /dev/null and b/2026/day-34/images/day34-task-4.png differ diff --git a/2026/day-34/images/day34-task-6-1.png b/2026/day-34/images/day34-task-6-1.png new file mode 100644 index 0000000000..26a9f23289 Binary files /dev/null and b/2026/day-34/images/day34-task-6-1.png differ diff --git a/2026/day-34/images/day34-task-6-scale-up.png b/2026/day-34/images/day34-task-6-scale-up.png new file mode 100644 index 0000000000..839cf82411 Binary files /dev/null and b/2026/day-34/images/day34-task-6-scale-up.png differ diff --git a/2026/day-34/images/day34-task-6.2.png b/2026/day-34/images/day34-task-6.2.png new file mode 100644 index 0000000000..c6d57e2847 Binary files /dev/null and b/2026/day-34/images/day34-task-6.2.png differ diff --git a/2026/day-34/images/day34-task-6.3.png b/2026/day-34/images/day34-task-6.3.png new file mode 100644 index 0000000000..d2a73fc91d Binary files /dev/null and b/2026/day-34/images/day34-task-6.3.png differ diff --git a/2026/day-34/images/day34-task-6.4.png b/2026/day-34/images/day34-task-6.4.png new file mode 100644 index 0000000000..70f881652c Binary files /dev/null and b/2026/day-34/images/day34-task-6.4.png differ diff --git a/2026/day-34/images/day34-task-6.png b/2026/day-34/images/day34-task-6.png new file mode 100644 index 0000000000..eba85bedde Binary files /dev/null and b/2026/day-34/images/day34-task-6.png differ diff --git a/2026/day-34/images/day34-task6.5.png b/2026/day-34/images/day34-task6.5.png new file mode 100644 index 0000000000..f67ae9ba21 Binary files /dev/null and b/2026/day-34/images/day34-task6.5.png differ diff --git a/2026/day-35/day-35-multistage-hub.md b/2026/day-35/day-35-multistage-hub.md new file mode 100644 index 0000000000..5a18d26153 --- /dev/null +++ b/2026/day-35/day-35-multistage-hub.md @@ -0,0 +1,207 @@ +# Day 35 – Multi-Stage Builds & Docker Hub + +--- + +# Task 1: Single-Stage Build (Inefficient Image) + +### 1. Simple App + +### 2. Single-stage Dockerfile + +### 3. Build the image + +```bash +docker build -t single-stage-demo . +``` + +### 4. Check size + +```bash +docker images +``` + + Typical size: + +* `node:20` base image ≈ **900MB+** +* Final image ≈ **900MB–1GB** + +--- + +# Problem + +You're shipping: + +* Full Node runtime +* Build tools +* OS packages you don’t need + +This is operationally expensive (bandwidth, storage, cold start latency). + +--- + +## Task 2: Multi-Stage Build (Optimized) + +### 1. Multi-stage Dockerfile + + +### 2. Build optimized image + +```bash +docker build -t multi-stage-demo . +``` + +### 3. Check size again + +```bash +docker images +``` + + Typical result: + +* `node:20-alpine` ≈ **50–70MB** +* Final image ≈ **~60MB** + +--- + +### Comparison + +| Build Type | Size | +| ------------ | ------ | +| Single-stage | ~900MB | +| Multi-stage | ~60MB | + +--- + +### Why Multi-Stage is Smaller + +Because it **eliminates build-time artifacts and unnecessary layers**: + +* Only final runtime files are copied +* No compilers / package managers in final image +* Alpine base is drastically smaller than Debian-based Node +* Reduces attack surface and CVE exposure + +--- + +## Task 3: Push to Docker Hub + +### 1. Login + +```bash +docker login +``` + +### 2. Tag image + +```bash +docker tag multi-stage-demo yourusername/node-demo:v1 +``` +- Example +```bash +docker tag multi-stage-demo sumit9165/node-demo:v1 +``` + +### 3. Push + +```bash +docker push yourusername/node-demo:v1 +``` +```bash +docker push sumit9165/node-demo:v1 +``` + +### 4. Verify pull + +```bash +docker pull yourusername/node-demo:v1 +``` +```bash +docker pull sumit9165/node-demo:v1 +``` +(Test) + +```bash +docker run -d -p 80:3000 yourusername/node-demo:v1 +``` +```bash +docker run -d -p 80:3000 sumit9165/node-demo:v1 +``` +--- + +## Task 4: Docker Hub Exploration + +### Key Observations + +**Tags tab:** + +* `latest` → default if no tag specified +* `v1`, `v2`, etc → versioned releases + +### Behavior + +```bash +docker pull yourusername/node-demo +``` + +➡ pulls `latest` + +```bash +docker pull yourusername/node-demo:v1 +``` + +➡ pulls that exact immutable version + +### Best practice: + +* Never rely on `latest` in production +* Always pin versions + +--- + +## Task 5: Best Practices Applied + +### Improved Dockerfile + +```Dockerfile +FROM node:20-alpine + +WORKDIR /app + +# Create non-root user +RUN addgroup -S appgroup && adduser -S appuser -G appgroup + +COPY app.js . + +USER appuser + +CMD ["node", "app.js"] +``` + +--- + +### Improvements Explained + +| Practice | Effect | +| ------------------------------- | ----------------------- | +| Alpine base | Smaller footprint | +| Non-root USER | Better security | +| No unnecessary layers | Smaller + cleaner image | +| Specific tag (`node:20-alpine`) | Reproducibility | + +--- + +### Expected Final Size + +~50–60MB + +--- + +### Key Takeaways + +* Image size is dominated by the **base image** +* Multi-stage builds = **separation of concerns** +* Smaller images = faster deploys + lower cost + better security +* Docker Hub tags are effectively **version control for images** + +--- + diff --git a/2026/day-35/images/day35-java-multistage-build.png b/2026/day-35/images/day35-java-multistage-build.png new file mode 100644 index 0000000000..ce491c4fdf Binary files /dev/null and b/2026/day-35/images/day35-java-multistage-build.png differ diff --git a/2026/day-35/images/day35-java-multistage-docker-ps.png b/2026/day-35/images/day35-java-multistage-docker-ps.png new file mode 100644 index 0000000000..e42c29eb03 Binary files /dev/null and b/2026/day-35/images/day35-java-multistage-docker-ps.png differ diff --git a/2026/day-35/images/day35-react-dockerfile-running.png b/2026/day-35/images/day35-react-dockerfile-running.png new file mode 100644 index 0000000000..cb49825a6a Binary files /dev/null and b/2026/day-35/images/day35-react-dockerfile-running.png differ diff --git a/2026/day-35/images/day35-react-multistage.png b/2026/day-35/images/day35-react-multistage.png new file mode 100644 index 0000000000..83a7381e9c Binary files /dev/null and b/2026/day-35/images/day35-react-multistage.png differ diff --git a/2026/day-35/images/day35-task-1-dockerfile.png b/2026/day-35/images/day35-task-1-dockerfile.png new file mode 100644 index 0000000000..25f684208b Binary files /dev/null and b/2026/day-35/images/day35-task-1-dockerfile.png differ diff --git a/2026/day-35/images/day35-task-1-go-docker-ps.png b/2026/day-35/images/day35-task-1-go-docker-ps.png new file mode 100644 index 0000000000..95241ac90d Binary files /dev/null and b/2026/day-35/images/day35-task-1-go-docker-ps.png differ diff --git a/2026/day-35/images/day35-task-1-go-dockerfile.png b/2026/day-35/images/day35-task-1-go-dockerfile.png new file mode 100644 index 0000000000..866708363c Binary files /dev/null and b/2026/day-35/images/day35-task-1-go-dockerfile.png differ diff --git a/2026/day-35/images/day35-task-1-java.png b/2026/day-35/images/day35-task-1-java.png new file mode 100644 index 0000000000..600c1f7220 Binary files /dev/null and b/2026/day-35/images/day35-task-1-java.png differ diff --git a/2026/day-35/images/day35-task-1-react-multistage.png b/2026/day-35/images/day35-task-1-react-multistage.png new file mode 100644 index 0000000000..1d8601a13d Binary files /dev/null and b/2026/day-35/images/day35-task-1-react-multistage.png differ diff --git a/2026/day-35/images/day35-task-2-distroless-dockerfile.png b/2026/day-35/images/day35-task-2-distroless-dockerfile.png new file mode 100644 index 0000000000..4dd4972bb4 Binary files /dev/null and b/2026/day-35/images/day35-task-2-distroless-dockerfile.png differ diff --git a/2026/day-35/images/day35-task-2-distroless-running.png b/2026/day-35/images/day35-task-2-distroless-running.png new file mode 100644 index 0000000000..62506dfe04 Binary files /dev/null and b/2026/day-35/images/day35-task-2-distroless-running.png differ diff --git a/2026/day-35/images/day35-task-2-docker-multistage-file.png b/2026/day-35/images/day35-task-2-docker-multistage-file.png new file mode 100644 index 0000000000..1d2a5e65ad Binary files /dev/null and b/2026/day-35/images/day35-task-2-docker-multistage-file.png differ diff --git a/2026/day-35/images/day35-task-2-docker-ps.png b/2026/day-35/images/day35-task-2-docker-ps.png new file mode 100644 index 0000000000..18d99daba0 Binary files /dev/null and b/2026/day-35/images/day35-task-2-docker-ps.png differ diff --git a/2026/day-35/images/day35-task-2-go-app-running-distroless.png b/2026/day-35/images/day35-task-2-go-app-running-distroless.png new file mode 100644 index 0000000000..657e65bea8 Binary files /dev/null and b/2026/day-35/images/day35-task-2-go-app-running-distroless.png differ diff --git a/2026/day-35/images/day35-task-2-go-distroless-dockerfile.png b/2026/day-35/images/day35-task-2-go-distroless-dockerfile.png new file mode 100644 index 0000000000..7d8aa03090 Binary files /dev/null and b/2026/day-35/images/day35-task-2-go-distroless-dockerfile.png differ diff --git a/2026/day-35/images/day35-task-2-java-dockerfile.png b/2026/day-35/images/day35-task-2-java-dockerfile.png new file mode 100644 index 0000000000..7081082fda Binary files /dev/null and b/2026/day-35/images/day35-task-2-java-dockerfile.png differ diff --git a/2026/day-35/images/day35-task-2-java-multistage-running.png b/2026/day-35/images/day35-task-2-java-multistage-running.png new file mode 100644 index 0000000000..a9d6b1118e Binary files /dev/null and b/2026/day-35/images/day35-task-2-java-multistage-running.png differ diff --git a/2026/day-35/images/day35-task-2-multistage-app-running.png b/2026/day-35/images/day35-task-2-multistage-app-running.png new file mode 100644 index 0000000000..39c899e102 Binary files /dev/null and b/2026/day-35/images/day35-task-2-multistage-app-running.png differ diff --git a/2026/day-35/images/day35-task-2-react-running-multistage.png b/2026/day-35/images/day35-task-2-react-running-multistage.png new file mode 100644 index 0000000000..750a27004b Binary files /dev/null and b/2026/day-35/images/day35-task-2-react-running-multistage.png differ diff --git a/2026/day-35/images/day35-task-4-docker-pull-running.png b/2026/day-35/images/day35-task-4-docker-pull-running.png new file mode 100644 index 0000000000..9a18acb4b1 Binary files /dev/null and b/2026/day-35/images/day35-task-4-docker-pull-running.png differ diff --git a/2026/day-35/images/day35-task-4-docker-pull.png b/2026/day-35/images/day35-task-4-docker-pull.png new file mode 100644 index 0000000000..7fb61017b3 Binary files /dev/null and b/2026/day-35/images/day35-task-4-docker-pull.png differ diff --git a/2026/day-35/images/day35-task-4-dockerhub-push-images.png b/2026/day-35/images/day35-task-4-dockerhub-push-images.png new file mode 100644 index 0000000000..f28026281a Binary files /dev/null and b/2026/day-35/images/day35-task-4-dockerhub-push-images.png differ diff --git a/2026/day-35/images/day35-task-4-go-app-running-distroless.png b/2026/day-35/images/day35-task-4-go-app-running-distroless.png new file mode 100644 index 0000000000..c3d41b38c3 Binary files /dev/null and b/2026/day-35/images/day35-task-4-go-app-running-distroless.png differ diff --git a/2026/day-35/images/day35-task-4-go-app-running.png b/2026/day-35/images/day35-task-4-go-app-running.png new file mode 100644 index 0000000000..0ec983ae00 Binary files /dev/null and b/2026/day-35/images/day35-task-4-go-app-running.png differ diff --git a/2026/day-35/images/day35-task-4-java-distroles-running.png b/2026/day-35/images/day35-task-4-java-distroles-running.png new file mode 100644 index 0000000000..8a14730e4d Binary files /dev/null and b/2026/day-35/images/day35-task-4-java-distroles-running.png differ diff --git a/2026/day-35/images/day35-task-4-java-distroless-exec.png b/2026/day-35/images/day35-task-4-java-distroless-exec.png new file mode 100644 index 0000000000..07236fb41b Binary files /dev/null and b/2026/day-35/images/day35-task-4-java-distroless-exec.png differ diff --git a/2026/day-35/images/day35-task-4-java-docker-pull.png b/2026/day-35/images/day35-task-4-java-docker-pull.png new file mode 100644 index 0000000000..73dacaad26 Binary files /dev/null and b/2026/day-35/images/day35-task-4-java-docker-pull.png differ diff --git a/2026/day-35/images/day35-task-4-java-docker-push.png b/2026/day-35/images/day35-task-4-java-docker-push.png new file mode 100644 index 0000000000..c0524f4f07 Binary files /dev/null and b/2026/day-35/images/day35-task-4-java-docker-push.png differ diff --git a/2026/day-35/images/day35-task-4-java-running.png b/2026/day-35/images/day35-task-4-java-running.png new file mode 100644 index 0000000000..1070248934 Binary files /dev/null and b/2026/day-35/images/day35-task-4-java-running.png differ diff --git a/2026/day-35/images/day35-task-5-go-app-docker.png b/2026/day-35/images/day35-task-5-go-app-docker.png new file mode 100644 index 0000000000..3f848cb7fc Binary files /dev/null and b/2026/day-35/images/day35-task-5-go-app-docker.png differ diff --git a/2026/day-35/images/day35-task-5-go-app-pull-running.png b/2026/day-35/images/day35-task-5-go-app-pull-running.png new file mode 100644 index 0000000000..6c7e043fbf Binary files /dev/null and b/2026/day-35/images/day35-task-5-go-app-pull-running.png differ diff --git a/2026/day-35/images/day35-task-5-java-dockerhub-push.png b/2026/day-35/images/day35-task-5-java-dockerhub-push.png new file mode 100644 index 0000000000..47b4811f5f Binary files /dev/null and b/2026/day-35/images/day35-task-5-java-dockerhub-push.png differ diff --git a/2026/day-35/images/day35-task-5-running-flask-app.png b/2026/day-35/images/day35-task-5-running-flask-app.png new file mode 100644 index 0000000000..7bcd5d29bf Binary files /dev/null and b/2026/day-35/images/day35-task-5-running-flask-app.png differ diff --git a/2026/day-35/practice-apps/README.md b/2026/day-35/practice-apps/README.md new file mode 100644 index 0000000000..7b22124d6e --- /dev/null +++ b/2026/day-35/practice-apps/README.md @@ -0,0 +1,138 @@ +# Docker Practice Projects + +A collection of four simple web applications across different tech stacks, purpose-built for Docker learning and practice. Each app is a working REST API or UI with real dependency files — no Dockerfiles included, so you can write them yourself! + +--- + +## Projects Overview + +| Project | Language | Framework | Port | App Type | +|---------------|------------|-----------------|------|-----------------| +| `flask-app` | Python 3.11| Flask 3.0 | 5000 | Task CRUD API | +| `java-app` | Java 17 | Spring Boot 3.3 | 8080 | Book CRUD API | +| `go-app` | Go 1.22 | stdlib only | 8080 | Product CRUD API| +| `react-app` | JavaScript | React 18 | 3000 | Notes UI | + +--- + +## Project Structure + +``` +docker-practice/ +├── flask-app/ +│ ├── app.py +│ ├── requirements.txt +│ └── README.md +│ +├── java-app/ +│ ├── src/main/java/com/example/bookapi/ +│ │ ├── BookApiApplication.java +│ │ ├── Book.java +│ │ └── BookController.java +│ ├── src/main/resources/application.properties +│ ├── pom.xml +│ └── README.md +│ +├── go-app/ +│ ├── main.go +│ ├── go.mod +│ └── README.md +│ +├── react-app/ +│ ├── public/index.html +│ ├── src/ +│ │ ├── index.js +│ │ └── App.js +│ ├── package.json +│ ├── nginx.conf +│ ├── .env +│ └── README.md +│ +└── README.md ← you are here +``` + +--- + +## Docker Concepts to Practice Per App + +### 🐍 Flask App — Fundamentals +- `FROM python:3.11-slim` +- `COPY` and `RUN pip install -r requirements.txt` +- `CMD ["gunicorn", "app:app", "--bind", "0.0.0.0:5000"]` +- `EXPOSE 5000` +- Port mapping: `-p 5000:5000` +- Environment variables: `-e FLASK_ENV=production` + +### ☕ Java App — Multi-Stage Builds +- Stage 1: `FROM maven:3.9-eclipse-temurin-17 AS builder` → `mvn clean package` +- Stage 2: `FROM eclipse-temurin:17-jre-alpine` → copy JAR from builder +- `ENTRYPOINT ["java", "-jar", "app.jar"]` +- Practice `COPY --from=builder` +- `JAVA_OPTS` env variable for memory tuning + +### 🐹 Go App — Minimal Images +- Stage 1: `FROM golang:1.22-alpine AS builder` → `CGO_ENABLED=0 go build -o server .` +- Stage 2: `FROM scratch` or `FROM alpine:3.19` +- Copy only the static binary — no runtime needed! +- See how small the final image is (often < 15MB with scratch) + +### ⚛️ React App — Static Asset Serving +- Stage 1: `FROM node:18-alpine AS builder` → `npm install && npm run build` +- Stage 2: `FROM nginx:alpine` → copy `build/` to `/usr/share/nginx/html` +- Use the provided `nginx.conf` for SPA routing +- `EXPOSE 80` +- Understand why Node.js doesn't need to be in the final image + +--- + +## General Docker Commands Reference + +```bash +# Build an image +docker build -t my-app:1.0 . + +# Run a container +docker run -d -p HOST_PORT:CONTAINER_PORT --name my-container my-app:1.0 + +# List running containers +docker ps + +# View logs +docker logs my-container + +# Stop & remove a container +docker stop my-container && docker rm my-container + +# List images +docker images + +# Remove an image +docker rmi my-app:1.0 + +# Open a shell inside a running container +docker exec -it my-container sh + +# Inspect a container +docker inspect my-container +``` + +--- + +## Learning Path + +1. **Start with Flask** — simplest to Dockerize, great for learning the basics +2. **Move to Go** — practice multi-stage builds and understand tiny images +3. **Try Java** — more complex multi-stage build, explore JVM in containers +4. **Finish with React** — learn about build artifacts and Nginx serving + +Each project folder has its own `README.md` with specific Docker hints and example `curl` commands to test the running container. + +--- + +## Tips + +- Always use specific image tags (e.g., `python:3.11-slim`), never `latest` in practice +- Use `.dockerignore` to exclude `node_modules`, `target/`, `__pycache__`, etc. +- Keep images small — prefer `slim` or `alpine` variants +- One process per container is a good rule of thumb +- Use `HEALTHCHECK` in your Dockerfiles to make containers self-aware diff --git a/2026/day-35/practice-apps/flask-app/.dockerignore b/2026/day-35/practice-apps/flask-app/.dockerignore new file mode 100644 index 0000000000..e7ae1fd4f3 --- /dev/null +++ b/2026/day-35/practice-apps/flask-app/.dockerignore @@ -0,0 +1,20 @@ +__pycache__/ +*.pyc +*.pyo +*.pyd + +venv/ +.env/ +.venv/ + +.git +.gitignore + +Dockerfile* +docker-compose* + +tests/ +coverage/ +htmlcov/ + +*.log \ No newline at end of file diff --git a/2026/day-35/practice-apps/flask-app/.gitignore b/2026/day-35/practice-apps/flask-app/.gitignore new file mode 100644 index 0000000000..9fb3e87ee7 --- /dev/null +++ b/2026/day-35/practice-apps/flask-app/.gitignore @@ -0,0 +1,38 @@ +# Byte-compiled / cache +__pycache__/ +*.py[cod] +*$py.class + +# Virtual environments +venv/ +.env/ +.venv/ + +# Environment variables +.env +.env.* + +# Flask instance folder +instance/ +.webassets-cache + +# Packaging +build/ +dist/ +*.egg-info/ + +# Logs +*.log + +# Testing / coverage +.coverage +htmlcov/ +.pytest_cache/ + +# IDEs +.vscode/ +.idea/ + +# OS +.DS_Store +Thumbs.db \ No newline at end of file diff --git a/2026/day-35/practice-apps/flask-app/Dockerfile b/2026/day-35/practice-apps/flask-app/Dockerfile new file mode 100644 index 0000000000..91f4d10b30 --- /dev/null +++ b/2026/day-35/practice-apps/flask-app/Dockerfile @@ -0,0 +1,42 @@ +# 1. Use a minimal, specific, trusted base image +FROM python:3.11.8-alpine3.19 + +# 2. Metadata labeling (best practice for maintainability) +LABEL maintainer="SUMIT" \ + version="1.0" \ + description="Optimized Python application" + +# 3. Environment variables (prevent Python cache, ensure clean logs) +ENV PYTHONDONTWRITEBYTECODE=1 \ + PYTHONUNBUFFERED=1 + +# 4. Create non-root user early +RUN addgroup -S flask && adduser -S python -G flask + +# 5. Set working directory +WORKDIR /app + +# 6. Install system dependencies (only if needed) +# Combine RUN commands + cleanup +RUN apk add --no-cache build-base + +# 7. Copy dependency file first (layer caching optimization) +COPY requirements.txt . + +# 8. Install dependencies without cache +RUN pip install --no-cache-dir -r requirements.txt + +# 9. Copy only necessary files (use .dockerignore!) +COPY . . + +# 10. Adjust ownership (security) +RUN chown -R python:flask /app + +# 11. Switch to non-root user +USER python + +# 12. Expose only required port +EXPOSE 8000 + +# 13. Use exec form CMD (best signal handling) +CMD ["python", "app.py"] diff --git a/2026/day-35/practice-apps/flask-app/README.md b/2026/day-35/practice-apps/flask-app/README.md new file mode 100644 index 0000000000..c0ce601442 --- /dev/null +++ b/2026/day-35/practice-apps/flask-app/README.md @@ -0,0 +1,74 @@ +# Flask Task API + +A simple RESTful Task Manager API built with Python and Flask. Designed for Docker practice. + +## Tech Stack + +- **Language:** Python 3.11+ +- **Framework:** Flask 3.0 +- **Server:** Gunicorn (production) + +## Project Structure + +``` +flask-app/ +├── app.py # Main application & routes +├── requirements.txt # Python dependencies +└── README.md +``` + +## API Endpoints + +| Method | Endpoint | Description | +|--------|------------------|--------------------| +| GET | `/` | Welcome message | +| GET | `/health` | Health check | +| GET | `/tasks` | List all tasks | +| GET | `/tasks/` | Get a single task | +| POST | `/tasks` | Create a new task | +| PUT | `/tasks/` | Update a task | +| DELETE | `/tasks/` | Delete a task | + +## Running Locally (without Docker) + +```bash +# Create virtual environment +python -m venv venv +source venv/bin/activate # Windows: venv\Scripts\activate + +# Install dependencies +pip install -r requirements.txt + +# Run development server +python app.py +``` + +App runs at: `http://localhost:5000` + +## Example Requests + +```bash +# Get all tasks +curl http://localhost:5000/tasks + +# Create a task +curl -X POST http://localhost:5000/tasks \ + -H "Content-Type: application/json" \ + -d '{"title": "Dockerize this app"}' + +# Update a task +curl -X PUT http://localhost:5000/tasks/1 \ + -H "Content-Type: application/json" \ + -d '{"done": true}' + +# Delete a task +curl -X DELETE http://localhost:5000/tasks/1 +``` + +## Docker Practice Goals + +- Build a Python image using `python:3.11-slim` +- Install dependencies from `requirements.txt` +- Expose port `5000` +- Run with `gunicorn app:app --bind 0.0.0.0:5000` +- Practice environment variables, volume mounts, and port mapping diff --git a/2026/day-35/practice-apps/flask-app/app.py b/2026/day-35/practice-apps/flask-app/app.py new file mode 100644 index 0000000000..108ab315b8 --- /dev/null +++ b/2026/day-35/practice-apps/flask-app/app.py @@ -0,0 +1,61 @@ +from flask import Flask, jsonify, request + +app = Flask(__name__) + +tasks = [ + {"id": 1, "title": "Learn Docker", "done": False}, + {"id": 2, "title": "Build Flask App", "done": True}, +] + +@app.route("/") +def index(): + return jsonify({"message": "Welcome to Flask Task API", "version": "1.0.0"}) + +@app.route("/health") +def health(): + return jsonify({"status": "healthy"}) + +@app.route("/tasks", methods=["GET"]) +def get_tasks(): + return jsonify({"tasks": tasks, "count": len(tasks)}) + +@app.route("/tasks/", methods=["GET"]) +def get_task(task_id): + task = next((t for t in tasks if t["id"] == task_id), None) + if task is None: + return jsonify({"error": "Task not found"}), 404 + return jsonify(task) + +@app.route("/tasks", methods=["POST"]) +def create_task(): + data = request.get_json() + if not data or "title" not in data: + return jsonify({"error": "Title is required"}), 400 + new_task = { + "id": len(tasks) + 1, + "title": data["title"], + "done": data.get("done", False), + } + tasks.append(new_task) + return jsonify(new_task), 201 + +@app.route("/tasks/", methods=["PUT"]) +def update_task(task_id): + task = next((t for t in tasks if t["id"] == task_id), None) + if task is None: + return jsonify({"error": "Task not found"}), 404 + data = request.get_json() + task.update({k: v for k, v in data.items() if k in ("title", "done")}) + return jsonify(task) + +@app.route("/tasks/", methods=["DELETE"]) +def delete_task(task_id): + global tasks + task = next((t for t in tasks if t["id"] == task_id), None) + if task is None: + return jsonify({"error": "Task not found"}), 404 + tasks = [t for t in tasks if t["id"] != task_id] + return jsonify({"message": "Task deleted successfully"}) + +if __name__ == "__main__": + app.run(host="0.0.0.0", port=5000, debug=True) diff --git a/2026/day-35/practice-apps/flask-app/docker-distroless b/2026/day-35/practice-apps/flask-app/docker-distroless new file mode 100644 index 0000000000..89a77b02e1 --- /dev/null +++ b/2026/day-35/practice-apps/flask-app/docker-distroless @@ -0,0 +1,21 @@ +FROM python:3.11 AS build + +WORKDIR /app + +COPY requirements.txt . + +RUN pip install -r requirements.txt --no-cache --target=/app/dist + +COPY . . + +# 2nd Stage + +FROM gcr.io/distroless/python3-debian12 + +WORKDIR /app + +COPY --from=build /app /app + +ENV PYTHONPATH=/app/dist + +ENTRYPOINT ["/usr/bin/python3.11","app.py"] diff --git a/2026/day-35/practice-apps/flask-app/docker-multistage b/2026/day-35/practice-apps/flask-app/docker-multistage new file mode 100644 index 0000000000..c693085c71 --- /dev/null +++ b/2026/day-35/practice-apps/flask-app/docker-multistage @@ -0,0 +1,25 @@ +# ---- Builder stage ---- +FROM python:3.11.8-alpine3.19 AS builder + +WORKDIR /build + +RUN apk add --no-cache build-base + +COPY requirements.txt . + +RUN pip install --no-cache-dir --prefix=/install -r requirements.txt + +# ---- Final stage ---- +FROM python:3.11.8-alpine3.19 + +RUN addgroup -S flask && adduser -S python -G flask + +WORKDIR /app + +COPY --from=builder /install /usr/local + +COPY . . + +USER python + +CMD ["python", "app.py"] diff --git a/2026/day-35/practice-apps/flask-app/dockerfiles-without-best-practice/Dockerfile b/2026/day-35/practice-apps/flask-app/dockerfiles-without-best-practice/Dockerfile new file mode 100644 index 0000000000..77f580ac86 --- /dev/null +++ b/2026/day-35/practice-apps/flask-app/dockerfiles-without-best-practice/Dockerfile @@ -0,0 +1,13 @@ +FROM python:3.11 + +WORKDIR /app + +COPY requirements.txt ./ + +RUN pip install -r requirements.txt --no-cache + +COPY . . + +EXPOSE 5000 + +CMD ["python","app.py"] diff --git a/2026/day-35/practice-apps/flask-app/dockerfiles-without-best-practice/docker-distroless b/2026/day-35/practice-apps/flask-app/dockerfiles-without-best-practice/docker-distroless new file mode 100644 index 0000000000..89a77b02e1 --- /dev/null +++ b/2026/day-35/practice-apps/flask-app/dockerfiles-without-best-practice/docker-distroless @@ -0,0 +1,21 @@ +FROM python:3.11 AS build + +WORKDIR /app + +COPY requirements.txt . + +RUN pip install -r requirements.txt --no-cache --target=/app/dist + +COPY . . + +# 2nd Stage + +FROM gcr.io/distroless/python3-debian12 + +WORKDIR /app + +COPY --from=build /app /app + +ENV PYTHONPATH=/app/dist + +ENTRYPOINT ["/usr/bin/python3.11","app.py"] diff --git a/2026/day-35/practice-apps/flask-app/dockerfiles-without-best-practice/docker-multistage b/2026/day-35/practice-apps/flask-app/dockerfiles-without-best-practice/docker-multistage new file mode 100644 index 0000000000..dc23a32147 --- /dev/null +++ b/2026/day-35/practice-apps/flask-app/dockerfiles-without-best-practice/docker-multistage @@ -0,0 +1,25 @@ +# === This is first stage ===== + +FROM python:3.11-slim AS build + +WORKDIR /app + +COPY requirements.txt . + +RUN pip install -r requirements.txt --no-cache --target=/app/dist + +COPY . . + +# ======== This is Second stage ============== + +FROM python:3.11-alpine + +WORKDIR /app + +COPY --from=build /app /app + +ENV PYTHONPATH=/app/dist + +EXPOSE 5000 + +CMD ["python","app.py"] diff --git a/2026/day-35/practice-apps/flask-app/requirements.txt b/2026/day-35/practice-apps/flask-app/requirements.txt new file mode 100644 index 0000000000..4fb2116346 --- /dev/null +++ b/2026/day-35/practice-apps/flask-app/requirements.txt @@ -0,0 +1,3 @@ +flask==3.0.3 +flask-cors==4.0.1 +gunicorn==22.0.0 diff --git a/2026/day-35/practice-apps/go-app/.dockerignore b/2026/day-35/practice-apps/go-app/.dockerignore new file mode 100644 index 0000000000..d8dde16548 --- /dev/null +++ b/2026/day-35/practice-apps/go-app/.dockerignore @@ -0,0 +1,15 @@ +.git +.gitignore + +bin/ +build/ +dist/ + +*.log +*.test + +Dockerfile* +docker-compose* + +.vscode/ +.idea/ \ No newline at end of file diff --git a/2026/day-35/practice-apps/go-app/.gitignore b/2026/day-35/practice-apps/go-app/.gitignore new file mode 100644 index 0000000000..e70e9de010 --- /dev/null +++ b/2026/day-35/practice-apps/go-app/.gitignore @@ -0,0 +1,23 @@ +# Binaries +bin/ +*.exe +*.out +*.test + +# Build artifacts +build/ +dist/ + +# Vendor (optional depending on strategy) +vendor/ + +# Logs +*.log + +# IDE +.vscode/ +.idea/ + +# OS +.DS_Store +Thumbs.db \ No newline at end of file diff --git a/2026/day-35/practice-apps/go-app/Dockerfile b/2026/day-35/practice-apps/go-app/Dockerfile new file mode 100644 index 0000000000..4947f55909 --- /dev/null +++ b/2026/day-35/practice-apps/go-app/Dockerfile @@ -0,0 +1,40 @@ +# 1. Minimal, specific base image +FROM golang:1.22.3-alpine3.19 + +# 2. Metadata +LABEL maintainer="SUMIT" \ + version="1.0" \ + description="Go app - single stage optimized" + +# 3. Environment (static build) +ENV CGO_ENABLED=0 GOOS=linux GOARCH=amd64 + +# 4. Create non-root user early +RUN addgroup -S gogrp && adduser -S gousr -G gogrp + +WORKDIR /app + +# 5. Install only required packages +RUN apk add --no-cache git + +# 6. Cache dependencies first +COPY go.mod ./ +RUN go mod download + +# 7. Copy source +COPY . . + +# 8. Build binary (strip debug symbols to reduce size) +RUN go build -ldflags="-s -w" -o app + +# 9. Adjust ownership +RUN chown -R gousr:gogrp /app + +# 10. Switch user +USER gousr + +# 11. Expose port +EXPOSE 8080 + +# 12. Exec form +CMD ["./app"] diff --git a/2026/day-35/practice-apps/go-app/README.md b/2026/day-35/practice-apps/go-app/README.md new file mode 100644 index 0000000000..27c2db1166 --- /dev/null +++ b/2026/day-35/practice-apps/go-app/README.md @@ -0,0 +1,70 @@ +# Go Product API + +A lightweight RESTful Product Manager API built with Go using only the standard library. Designed for Docker practice. + +## Tech Stack + +- **Language:** Go 1.22 +- **Framework:** Standard library (`net/http`) +- **Dependencies:** None (zero external dependencies!) + +## Project Structure + +``` +go-app/ +├── main.go # All-in-one: models, handlers, server +├── go.mod # Go module definition +└── README.md +``` + +## API Endpoints + +| Method | Endpoint | Description | +|--------|---------------------|----------------------| +| GET | `/` | Welcome message | +| GET | `/health` | Health check | +| GET | `/products` | List all products | +| GET | `/products/{id}` | Get a single product | +| POST | `/products` | Create a product | +| DELETE | `/products/{id}` | Delete a product | + +## Running Locally (without Docker) + +**Prerequisites:** Go 1.22+ + +```bash +# Run directly +go run main.go + +# Or build and run the binary +go build -o server . +./server +``` + +App runs at: `http://localhost:8080` + +## Example Requests + +```bash +# Get all products +curl http://localhost:8080/products + +# Create a product +curl -X POST http://localhost:8080/products \ + -H "Content-Type: application/json" \ + -d '{"name":"USB Hub","price":34.99,"category":"Electronics","in_stock":true}' + +# Get product by ID +curl http://localhost:8080/products/1 + +# Delete a product +curl -X DELETE http://localhost:8080/products/2 +``` + +## Docker Practice Goals + +- Use multi-stage build: `golang:1.22-alpine` for build, `alpine:3.19` (or `scratch`) for runtime +- Build a static binary: `CGO_ENABLED=0 GOOS=linux go build -o server .` +- Expose port `8080` +- Notice how tiny the final image is compared to Java/Python! +- Practice using `scratch` as base image for minimal containers diff --git a/2026/day-35/practice-apps/go-app/docker-distroless b/2026/day-35/practice-apps/go-app/docker-distroless new file mode 100644 index 0000000000..80578c6670 --- /dev/null +++ b/2026/day-35/practice-apps/go-app/docker-distroless @@ -0,0 +1,26 @@ +# Builder +FROM golang:1.22.3-alpine3.19 AS builder + +WORKDIR /build + +ENV CGO_ENABLED=0 + +# COPY go.mod go.sum ./ +COPY go.mod ./ + +RUN go mod download + +COPY . . + +RUN go build -ldflags="-s -w" -o app + +# Final (no shell, no package manager) +FROM gcr.io/distroless/base-debian12 + +WORKDIR /app + +COPY --from=builder /build/app . + +USER nonroot:nonroot + +CMD ["/app/app"] diff --git a/2026/day-35/practice-apps/go-app/docker-multistage b/2026/day-35/practice-apps/go-app/docker-multistage new file mode 100644 index 0000000000..af16a0f2b8 --- /dev/null +++ b/2026/day-35/practice-apps/go-app/docker-multistage @@ -0,0 +1,57 @@ +# ----------- Builder Stage ----------- +FROM golang:1.22.3-alpine3.19 AS builder + +# Metadata (optional in builder) +LABEL stage=builder + +WORKDIR /build + +# Install build dependencies +RUN apk add --no-cache git + +# Enable static build +ENV CGO_ENABLED=0 GOOS=linux GOARCH=amd64 + +# Cache dependencies +# COPY go.mod go.sum ./ +COPY go.mod ./ + +RUN go mod download + +# Copy source +COPY . . + +# Build optimized binary +RUN go build -ldflags="-s -w" -o app + +# ----------- Final Stage ----------- +# 1. Use ultra-minimal base image +FROM alpine:3.19 + +# Alternative (even smaller, but stricter): +# FROM scratch + +# 2. Metadata +LABEL maintainer="SUMIT" \ + version="1.0" \ + description="Go app - production optimized" + +# 3. Create non-root user +RUN addgroup -S gogrp && adduser -S gousr -G gogrp + +WORKDIR /app + +# 4. Copy only binary (no source, no compiler) +COPY --from=builder /build/app . + +# 5. Ownership +RUN chown gousr:gogrp /app/app + +# 6. Switch user +USER gousr + +# 7. Expose port +EXPOSE 8080 + +# 8. Run +CMD ["./app"] diff --git a/2026/day-35/practice-apps/go-app/go-app-without-best-practice/Dockerfile b/2026/day-35/practice-apps/go-app/go-app-without-best-practice/Dockerfile new file mode 100644 index 0000000000..a58782e572 --- /dev/null +++ b/2026/day-35/practice-apps/go-app/go-app-without-best-practice/Dockerfile @@ -0,0 +1,19 @@ +FROM golang:1.22 + +WORKDIR /app + +# 1. Copy only the module files first +COPY go.mod ./ +# 2. Download dependencies (this layer is cached) +RUN go mod download + +# 3. NOW copy the source code +COPY . . + +# 4. Build the binary (now the files actually exist!) +RUN CGO_ENABLED=0 GOOS=linux go build -o main . + +EXPOSE 8080 + +# Recommended: use the full path or ./ to be explicit +CMD ["./main"] diff --git a/2026/day-35/practice-apps/go-app/go-app-without-best-practice/docker-multistage b/2026/day-35/practice-apps/go-app/go-app-without-best-practice/docker-multistage new file mode 100644 index 0000000000..530e0bbab1 --- /dev/null +++ b/2026/day-35/practice-apps/go-app/go-app-without-best-practice/docker-multistage @@ -0,0 +1,26 @@ +# Stage 1: Build the binary +FROM golang:1.22-alpine AS build + +WORKDIR /app + +# Copy module files first (for better caching) +COPY go.mod ./ +# RUN go mod download <-- Uncomment if you have a go.sum file + +COPY . . + +# Build the application +# CGO_ENABLED=0 creates a static binary (required for Distroless) +RUN CGO_ENABLED=0 GOOS=linux go build -o main . + +# Stage 2: Final Distroless image +FROM gcr.io/distroless/static-debian12 + +WORKDIR /app + +# Copy the binary from the build stage +COPY --from=build /app/main . + +EXPOSE 8080 + +CMD ["./main"] diff --git a/2026/day-35/practice-apps/go-app/go.mod b/2026/day-35/practice-apps/go-app/go.mod new file mode 100644 index 0000000000..3cce72679e --- /dev/null +++ b/2026/day-35/practice-apps/go-app/go.mod @@ -0,0 +1,3 @@ +module github.com/example/go-product-api + +go 1.22 diff --git a/2026/day-35/practice-apps/go-app/main.go b/2026/day-35/practice-apps/go-app/main.go new file mode 100644 index 0000000000..e6fa760cd5 --- /dev/null +++ b/2026/day-35/practice-apps/go-app/main.go @@ -0,0 +1,135 @@ +package main + +import ( + "encoding/json" + "fmt" + "log" + "net/http" + "strconv" + "strings" + "sync" + "time" +) + +// Product represents a store product +type Product struct { + ID int `json:"id"` + Name string `json:"name"` + Price float64 `json:"price"` + Category string `json:"category"` + InStock bool `json:"in_stock"` + CreatedAt string `json:"created_at"` +} + +var ( + products = []Product{ + {1, "Mechanical Keyboard", 129.99, "Electronics", true, time.Now().Format(time.RFC3339)}, + {2, "Ergonomic Mouse", 59.99, "Electronics", true, time.Now().Format(time.RFC3339)}, + {3, "Standing Desk", 499.99, "Furniture", false, time.Now().Format(time.RFC3339)}, + } + mu sync.RWMutex + counter = 4 +) + +func writeJSON(w http.ResponseWriter, status int, data interface{}) { + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(status) + json.NewEncoder(w).Encode(data) +} + +func indexHandler(w http.ResponseWriter, r *http.Request) { + if r.URL.Path != "/" { + http.NotFound(w, r) + return + } + writeJSON(w, http.StatusOK, map[string]string{ + "message": "Welcome to Go Product API", + "version": "1.0.0", + }) +} + +func healthHandler(w http.ResponseWriter, r *http.Request) { + writeJSON(w, http.StatusOK, map[string]string{"status": "healthy"}) +} + +func productsHandler(w http.ResponseWriter, r *http.Request) { + switch r.Method { + case http.MethodGet: + mu.RLock() + defer mu.RUnlock() + writeJSON(w, http.StatusOK, map[string]interface{}{ + "products": products, + "count": len(products), + }) + + case http.MethodPost: + var p Product + if err := json.NewDecoder(r.Body).Decode(&p); err != nil { + writeJSON(w, http.StatusBadRequest, map[string]string{"error": "Invalid JSON"}) + return + } + if strings.TrimSpace(p.Name) == "" { + writeJSON(w, http.StatusBadRequest, map[string]string{"error": "Name is required"}) + return + } + mu.Lock() + p.ID = counter + p.CreatedAt = time.Now().Format(time.RFC3339) + counter++ + products = append(products, p) + mu.Unlock() + writeJSON(w, http.StatusCreated, p) + + default: + http.Error(w, "Method not allowed", http.StatusMethodNotAllowed) + } +} + +func productByIDHandler(w http.ResponseWriter, r *http.Request) { + idStr := strings.TrimPrefix(r.URL.Path, "/products/") + id, err := strconv.Atoi(idStr) + if err != nil { + writeJSON(w, http.StatusBadRequest, map[string]string{"error": "Invalid ID"}) + return + } + + switch r.Method { + case http.MethodGet: + mu.RLock() + defer mu.RUnlock() + for _, p := range products { + if p.ID == id { + writeJSON(w, http.StatusOK, p) + return + } + } + writeJSON(w, http.StatusNotFound, map[string]string{"error": "Product not found"}) + + case http.MethodDelete: + mu.Lock() + defer mu.Unlock() + for i, p := range products { + if p.ID == id { + products = append(products[:i], products[i+1:]...) + writeJSON(w, http.StatusOK, map[string]string{"message": "Product deleted"}) + return + } + } + writeJSON(w, http.StatusNotFound, map[string]string{"error": "Product not found"}) + + default: + http.Error(w, "Method not allowed", http.StatusMethodNotAllowed) + } +} + +func main() { + mux := http.NewServeMux() + mux.HandleFunc("/", indexHandler) + mux.HandleFunc("/health", healthHandler) + mux.HandleFunc("/products", productsHandler) + mux.HandleFunc("/products/", productByIDHandler) + + port := "8080" + fmt.Printf("🚀 Go Product API running on http://localhost:%s\n", port) + log.Fatal(http.ListenAndServe(":"+port, mux)) +} diff --git a/2026/day-35/practice-apps/java-app/.dockerignore b/2026/day-35/practice-apps/java-app/.dockerignore new file mode 100644 index 0000000000..4c53da34d1 --- /dev/null +++ b/2026/day-35/practice-apps/java-app/.dockerignore @@ -0,0 +1,14 @@ +.git +.gitignore + +target/ +build/ +.gradle/ + +*.log + +Dockerfile* +docker-compose* + +.vscode/ +.idea/ \ No newline at end of file diff --git a/2026/day-35/practice-apps/java-app/.gitignore b/2026/day-35/practice-apps/java-app/.gitignore new file mode 100644 index 0000000000..57b356b8f1 --- /dev/null +++ b/2026/day-35/practice-apps/java-app/.gitignore @@ -0,0 +1,24 @@ +# Compiled class files +*.class + +# Logs +*.log + +# Maven +target/ + +# Gradle +.gradle/ +build/ + +# Dependency directories +node_modules/ + +# IDE +.vscode/ +.idea/ +*.iml + +# OS +.DS_Store +Thumbs.db \ No newline at end of file diff --git a/2026/day-35/practice-apps/java-app/Dockerfile b/2026/day-35/practice-apps/java-app/Dockerfile new file mode 100644 index 0000000000..53bc59fe7c --- /dev/null +++ b/2026/day-35/practice-apps/java-app/Dockerfile @@ -0,0 +1,39 @@ +FROM maven:3.9.9-eclipse-temurin-17 + +# Metadata +LABEL maintainer="SUMIT" \ + version="1.0" \ + description="Book API - single stage with best practices" + +# Environment optimization +ENV JAVA_OPTS="-XX:+UseContainerSupport -XX:MaxRAMPercentage=75.0" + +# Create non-root user early +RUN useradd -m javausr + +WORKDIR /app + +# Copy only pom.xml first (better caching) +COPY pom.xml ./ + +# Cache dependencies (quiet + batch mode) +RUN mvn -B -q -e -DskipTests dependency:go-offline + +# Copy source separately +COPY src ./src + +# Build + rename jar (fixed typo skipTests) +RUN mvn -B -q -DskipTests clean package \ + && cp target/book-api-1.0.0.jar app.jar + +# Change ownership for security +RUN chown -R javausr:javausr /app + +# Switch to non-root user +USER javausr + +# Expose only required port +EXPOSE 8080 + +# Use exec form with env support +ENTRYPOINT ["sh", "-c", "java $JAVA_OPTS -jar app.jar"] diff --git a/2026/day-35/practice-apps/java-app/README.md b/2026/day-35/practice-apps/java-app/README.md new file mode 100644 index 0000000000..81a8a98833 --- /dev/null +++ b/2026/day-35/practice-apps/java-app/README.md @@ -0,0 +1,74 @@ +# Java Book API + +A simple RESTful Book Manager API built with Java 17 and Spring Boot 3. Designed for Docker practice. + +## Tech Stack + +- **Language:** Java 17 +- **Framework:** Spring Boot 3.3 +- **Build Tool:** Maven +- **Server:** Embedded Tomcat + +## Project Structure + +``` +java-app/ +├── src/ +│ └── main/ +│ ├── java/com/example/bookapi/ +│ │ ├── BookApiApplication.java # Entry point +│ │ ├── Book.java # Model class +│ │ └── BookController.java # REST controller +│ └── resources/ +│ └── application.properties # App configuration +├── pom.xml # Maven dependencies +└── README.md +``` + +## API Endpoints + +| Method | Endpoint | Description | +|--------|-------------------|-------------------| +| GET | `/api/` | Welcome message | +| GET | `/api/health` | Health check | +| GET | `/api/books` | List all books | +| GET | `/api/books/{id}` | Get a single book | +| POST | `/api/books` | Add a new book | +| DELETE | `/api/books/{id}` | Remove a book | + +## Running Locally (without Docker) + +**Prerequisites:** Java 17+, Maven 3.8+ + +```bash +# Build the project +mvn clean package + +# Run the JAR +java -jar target/book-api-1.0.0.jar +``` + +App runs at: `http://localhost:8080` + +## Example Requests + +```bash +# Get all books +curl http://localhost:8080/api/books + +# Add a book +curl -X POST http://localhost:8080/api/books \ + -H "Content-Type: application/json" \ + -d '{"title":"Clean Architecture","author":"Robert C. Martin","isbn":"978-0134494166","year":2017}' + +# Delete a book +curl -X DELETE http://localhost:8080/api/books/1 +``` + +## Docker Practice Goals + +- Use multi-stage build: `maven:3.9-eclipse-temurin-17` for build stage, `eclipse-temurin:17-jre-alpine` for runtime +- Copy the fat JAR from `/target/*.jar` in the build stage +- Expose port `8080` +- Practice `ENTRYPOINT ["java", "-jar", "app.jar"]` +- Explore `JAVA_OPTS` environment variable for JVM tuning diff --git a/2026/day-35/practice-apps/java-app/docker-distroless b/2026/day-35/practice-apps/java-app/docker-distroless new file mode 100644 index 0000000000..4c04923ae0 --- /dev/null +++ b/2026/day-35/practice-apps/java-app/docker-distroless @@ -0,0 +1,24 @@ +# ----------- Builder ----------- +FROM maven:3.9.9-eclipse-temurin-17 AS builder + +WORKDIR /build + +COPY pom.xml . +RUN mvn -B -q -DskipTests dependency:go-offline + +COPY src ./src +RUN mvn -B -q -DskipTests package + +# ----------- Runtime ----------- +FROM gcr.io/distroless/java17-debian12 + +WORKDIR /app + +COPY --from=builder /build/target/book-api-1.0.0.jar app.jar + +# Non-root by default +USER nonroot:nonroot + +EXPOSE 8080 + +ENTRYPOINT ["java","-jar","/app/app.jar"] diff --git a/2026/day-35/practice-apps/java-app/docker-multistage b/2026/day-35/practice-apps/java-app/docker-multistage new file mode 100644 index 0000000000..c36eacafc8 --- /dev/null +++ b/2026/day-35/practice-apps/java-app/docker-multistage @@ -0,0 +1,39 @@ +# ----------- Builder Stage ----------- +FROM maven:3.9.9-eclipse-temurin-17 AS builder + +WORKDIR /build + +# Cache dependencies +COPY pom.xml . +RUN mvn -B -q -e -DskipTests dependency:go-offline + +# Copy source +COPY src ./src + +# Build artifact +RUN mvn -B -q -DskipTests package + +# ----------- Runtime Stage ----------- +FROM eclipse-temurin:17.0.10_7-jre-jammy + +LABEL maintainer="yourname@example.com" \ + version="1.0" \ + description="Book API - multi-stage optimized" + +ENV JAVA_OPTS="-XX:+UseContainerSupport -XX:MaxRAMPercentage=75.0" + +# Create non-root user +RUN useradd -m javausr + +WORKDIR /app + +# Copy only jar +COPY --from=builder /build/target/book-api-1.0.0.jar app.jar + +RUN chown javausr:javausr /app/app.jar + +USER javausr + +EXPOSE 8080 + +ENTRYPOINT ["sh", "-c", "java $JAVA_OPTS -jar app.jar"] diff --git a/2026/day-35/practice-apps/java-app/dockerfile-without-best-practice/Dockerfile b/2026/day-35/practice-apps/java-app/dockerfile-without-best-practice/Dockerfile new file mode 100644 index 0000000000..4a8131deb3 --- /dev/null +++ b/2026/day-35/practice-apps/java-app/dockerfile-without-best-practice/Dockerfile @@ -0,0 +1,16 @@ +FROM maven:3.9-eclipse-temurin-17 + +WORKDIR /app + +COPY pom.xml ./ + +RUN mvn dependency:go-offline + +COPY src ./src + +RUN mvn clean package -DskipTest && cp target/book-api-1.0.0.jar app.jar + +EXPOSE 8080 + +ENTRYPOINT ["java","-jar","app.jar"] + diff --git a/2026/day-35/practice-apps/java-app/dockerfile-without-best-practice/docker-multistage b/2026/day-35/practice-apps/java-app/dockerfile-without-best-practice/docker-multistage new file mode 100644 index 0000000000..00234c5c40 --- /dev/null +++ b/2026/day-35/practice-apps/java-app/dockerfile-without-best-practice/docker-multistage @@ -0,0 +1,30 @@ +# Stage 1: Build +FROM maven:3.9-eclipse-temurin-17 AS build + +WORKDIR /app + +# Copy pom.xml and download dependencies (cached layer) +COPY pom.xml . + +RUN mvn dependency:go-offline + +# Copy source code and build the JAR +COPY src ./src + +RUN mvn clean package -DskipTests + +# Stage 2: Runtime +FROM eclipse-temurin:17-jre-alpine + +WORKDIR /app + +# Copy the built JAR from the build stage and rename it to app.jar +COPY --from=build /app/target/book-api-1.0.0.jar app.jar + +# Configuration +ENV JAVA_OPTS="-Xms256m -Xmx512m" + +EXPOSE 8080 + +# Run the application +ENTRYPOINT ["sh", "-c", "java $JAVA_OPTS -jar app.jar"] diff --git a/2026/day-35/practice-apps/java-app/pom.xml b/2026/day-35/practice-apps/java-app/pom.xml new file mode 100644 index 0000000000..e7a03feb6e --- /dev/null +++ b/2026/day-35/practice-apps/java-app/pom.xml @@ -0,0 +1,48 @@ + + + 4.0.0 + + + org.springframework.boot + spring-boot-starter-parent + 3.3.0 + + + + com.example + book-api + 1.0.0 + book-api + Simple Book API for Docker practice + + + 17 + + + + + org.springframework.boot + spring-boot-starter-web + + + org.springframework.boot + spring-boot-starter-actuator + + + org.springframework.boot + spring-boot-starter-test + test + + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + + diff --git a/2026/day-35/practice-apps/java-app/src/main/java/com/example/bookapi/Book.java b/2026/day-35/practice-apps/java-app/src/main/java/com/example/bookapi/Book.java new file mode 100644 index 0000000000..ab2cd14b55 --- /dev/null +++ b/2026/day-35/practice-apps/java-app/src/main/java/com/example/bookapi/Book.java @@ -0,0 +1,34 @@ +package com.example.bookapi; + +public class Book { + private Long id; + private String title; + private String author; + private String isbn; + private int year; + + public Book() {} + + public Book(Long id, String title, String author, String isbn, int year) { + this.id = id; + this.title = title; + this.author = author; + this.isbn = isbn; + this.year = year; + } + + public Long getId() { return id; } + public void setId(Long id) { this.id = id; } + + public String getTitle() { return title; } + public void setTitle(String title) { this.title = title; } + + public String getAuthor() { return author; } + public void setAuthor(String author) { this.author = author; } + + public String getIsbn() { return isbn; } + public void setIsbn(String isbn) { this.isbn = isbn; } + + public int getYear() { return year; } + public void setYear(int year) { this.year = year; } +} diff --git a/2026/day-35/practice-apps/java-app/src/main/java/com/example/bookapi/BookApiApplication.java b/2026/day-35/practice-apps/java-app/src/main/java/com/example/bookapi/BookApiApplication.java new file mode 100644 index 0000000000..7465e6b6e1 --- /dev/null +++ b/2026/day-35/practice-apps/java-app/src/main/java/com/example/bookapi/BookApiApplication.java @@ -0,0 +1,11 @@ +package com.example.bookapi; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class BookApiApplication { + public static void main(String[] args) { + SpringApplication.run(BookApiApplication.class, args); + } +} diff --git a/2026/day-35/practice-apps/java-app/src/main/java/com/example/bookapi/BookController.java b/2026/day-35/practice-apps/java-app/src/main/java/com/example/bookapi/BookController.java new file mode 100644 index 0000000000..0fe6b28bf2 --- /dev/null +++ b/2026/day-35/practice-apps/java-app/src/main/java/com/example/bookapi/BookController.java @@ -0,0 +1,67 @@ +package com.example.bookapi; + +import org.springframework.http.HttpStatus; +import org.springframework.http.ResponseEntity; +import org.springframework.web.bind.annotation.*; + +import java.util.ArrayList; +import java.util.List; +import java.util.Map; +import java.util.concurrent.atomic.AtomicLong; + +@RestController +@RequestMapping("/api") +public class BookController { + + private final List books = new ArrayList<>(); + private final AtomicLong counter = new AtomicLong(); + + public BookController() { + books.add(new Book(counter.incrementAndGet(), "The Pragmatic Programmer", "David Thomas", "978-0135957059", 2019)); + books.add(new Book(counter.incrementAndGet(), "Clean Code", "Robert C. Martin", "978-0132350884", 2008)); + books.add(new Book(counter.incrementAndGet(), "Docker Deep Dive", "Nigel Poulton", "978-1916585300", 2023)); + } + + @GetMapping("/") + public ResponseEntity> index() { + return ResponseEntity.ok(Map.of("message", "Welcome to Book API", "version", "1.0.0")); + } + + @GetMapping("/health") + public ResponseEntity> health() { + return ResponseEntity.ok(Map.of("status", "healthy")); + } + + @GetMapping("/books") + public ResponseEntity> getAllBooks() { + return ResponseEntity.ok(Map.of("books", books, "count", books.size())); + } + + @GetMapping("/books/{id}") + public ResponseEntity getBook(@PathVariable Long id) { + return books.stream() + .filter(b -> b.getId().equals(id)) + .findFirst() + .>map(ResponseEntity::ok) + .orElse(ResponseEntity.status(HttpStatus.NOT_FOUND).body(Map.of("error", "Book not found"))); + } + + @PostMapping("/books") + public ResponseEntity createBook(@RequestBody Book book) { + if (book.getTitle() == null || book.getTitle().isBlank()) { + return ResponseEntity.badRequest().body(Map.of("error", "Title is required")); + } + book.setId(counter.incrementAndGet()); + books.add(book); + return ResponseEntity.status(HttpStatus.CREATED).body(book); + } + + @DeleteMapping("/books/{id}") + public ResponseEntity deleteBook(@PathVariable Long id) { + boolean removed = books.removeIf(b -> b.getId().equals(id)); + if (!removed) { + return ResponseEntity.status(HttpStatus.NOT_FOUND).body(Map.of("error", "Book not found")); + } + return ResponseEntity.ok(Map.of("message", "Book deleted successfully")); + } +} diff --git a/2026/day-35/practice-apps/java-app/src/main/resources/application.properties b/2026/day-35/practice-apps/java-app/src/main/resources/application.properties new file mode 100644 index 0000000000..f48efebfeb --- /dev/null +++ b/2026/day-35/practice-apps/java-app/src/main/resources/application.properties @@ -0,0 +1,4 @@ +server.port=8080 +spring.application.name=book-api +management.endpoints.web.exposure.include=health,info +management.endpoint.health.show-details=always diff --git a/2026/day-35/practice-apps/react-app/.dockerignore b/2026/day-35/practice-apps/react-app/.dockerignore new file mode 100644 index 0000000000..146f25ab3e --- /dev/null +++ b/2026/day-35/practice-apps/react-app/.dockerignore @@ -0,0 +1,24 @@ +node_modules +build +.git +.gitignore +Dockerfile* +README.md +*.log +.env +node_modules/ +build/ +dist/ + +.git +.gitignore + +*.log + +Dockerfile* +docker-compose* + +coverage/ + +.vscode/ +.idea/ \ No newline at end of file diff --git a/2026/day-35/practice-apps/react-app/.dockerignore copy b/2026/day-35/practice-apps/react-app/.dockerignore copy new file mode 100644 index 0000000000..e69de29bb2 diff --git a/2026/day-35/practice-apps/react-app/.gitignore b/2026/day-35/practice-apps/react-app/.gitignore new file mode 100644 index 0000000000..904336b5bf --- /dev/null +++ b/2026/day-35/practice-apps/react-app/.gitignore @@ -0,0 +1,27 @@ +# Dependencies +node_modules/ + +# Build outputs +build/ +dist/ + +# Logs +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* + +# Env files +.env +.env.* + +# Testing +coverage/ + +# IDE +.vscode/ +.idea/ + +# OS +.DS_Store +Thumbs.db \ No newline at end of file diff --git a/2026/day-35/practice-apps/react-app/Dockerfile b/2026/day-35/practice-apps/react-app/Dockerfile new file mode 100644 index 0000000000..de1a90345b --- /dev/null +++ b/2026/day-35/practice-apps/react-app/Dockerfile @@ -0,0 +1,18 @@ +FROM node:18-slim + +WORKDIR /app + +COPY package.json . + +RUN npm install + +COPY . . + +RUN npm run build + +RUN npm install -g serve + +EXPOSE 3000 + +CMD ["serve","-s","build","-l","3000"] + diff --git a/2026/day-35/practice-apps/react-app/README.md b/2026/day-35/practice-apps/react-app/README.md new file mode 100644 index 0000000000..dc05ef00ff --- /dev/null +++ b/2026/day-35/practice-apps/react-app/README.md @@ -0,0 +1,71 @@ +# React Notes App + +A simple sticky-note style Notes application built with React 18. Designed for Docker practice. + +## Tech Stack + +- **Language:** JavaScript (ES2022) +- **Framework:** React 18 +- **Build Tool:** Create React App +- **Production Server:** Nginx (via nginx.conf) + +## Project Structure + +``` +react-app/ +├── public/ +│ └── index.html # HTML shell +├── src/ +│ ├── index.js # React entry point +│ └── App.js # Main Notes component +├── package.json # npm dependencies & scripts +├── nginx.conf # Nginx config for serving built app +├── .env # Environment variables +└── README.md +``` + +## Features + +- Create, view, and delete notes +- Color-coded notes +- Search/filter notes by title or content +- Fully client-side (no backend required) + +## Running Locally (without Docker) + +**Prerequisites:** Node.js 18+, npm 9+ + +```bash +# Install dependencies +npm install + +# Start development server +npm start +``` + +App runs at: `http://localhost:3000` + +## Building for Production + +```bash +npm run build +``` + +This creates an optimized production build in the `build/` folder. Serve it with any static file server. + +## Docker Practice Goals + +- Use multi-stage build: `node:18-alpine` for build stage, `nginx:alpine` for runtime +- Run `npm run build` in the build stage to generate the `build/` folder +- Copy the `build/` output to `/usr/share/nginx/html` in the nginx image +- Use the provided `nginx.conf` for proper SPA routing (`try_files`) +- Expose port `80` +- This shows how to drastically reduce image size by not shipping Node.js to production + +## Environment Variables + +| Variable | Default | Description | +|--------------------|------------|----------------------| +| `REACT_APP_NAME` | Notes App | Application name | +| `REACT_APP_VERSION`| 1.0.0 | App version | +| `PORT` | 3000 | Dev server port | diff --git a/2026/day-35/practice-apps/react-app/docker-distroless b/2026/day-35/practice-apps/react-app/docker-distroless new file mode 100644 index 0000000000..b765309d3b --- /dev/null +++ b/2026/day-35/practice-apps/react-app/docker-distroless @@ -0,0 +1,26 @@ +# ----------- Builder ----------- +FROM node:18.20.3-alpine3.19 AS builder + +WORKDIR /build + +COPY package.json package-lock.json* ./ +RUN npm ci + +COPY . . +RUN npm run build + +# ----------- Runtime ----------- +FROM nginx:1.27-alpine + +# Remove default content +RUN rm -rf /usr/share/nginx/html/* + +# Copy React build +COPY --from=builder /build/build /usr/share/nginx/html + +# Optional: SPA routing fix +COPY nginx.conf /etc/nginx/nginx.conf + +EXPOSE 80 + +CMD ["nginx", "-g", "daemon off;"] diff --git a/2026/day-35/practice-apps/react-app/docker-multistage b/2026/day-35/practice-apps/react-app/docker-multistage new file mode 100644 index 0000000000..56d1cba5ef --- /dev/null +++ b/2026/day-35/practice-apps/react-app/docker-multistage @@ -0,0 +1,29 @@ +FROM node:18.20.3-alpine3.19 AS builder + +WORKDIR /build + +ENV NODE_ENV=development + +COPY package.json ./ + +# Fallback to npm install +RUN npm install + +COPY . . +RUN npm run build + +FROM nginx:1.27.0-alpine + +LABEL maintainer="SUMIT" \ + version="1.0" \ + description="React app - multi-stage (no lock file)" + +RUN rm -rf /usr/share/nginx/html/* + +COPY --from=builder /build/build /usr/share/nginx/html + +USER nginx + +EXPOSE 80 + +CMD ["nginx", "-g", "daemon off;"] diff --git a/2026/day-35/practice-apps/react-app/dockerfile-multistage b/2026/day-35/practice-apps/react-app/dockerfile-multistage new file mode 100644 index 0000000000..a7209f6439 --- /dev/null +++ b/2026/day-35/practice-apps/react-app/dockerfile-multistage @@ -0,0 +1,31 @@ +# Stage 1: Build the React application +FROM node:18-alpine AS build + +WORKDIR /app + +# Install dependencies separately for better caching +COPY package.json package-lock.json* ./ + +RUN npm install + +# Copy source code and build the production assets +COPY . . + +RUN npm run build + +# Stage 2: Serve the application with Nginx +FROM nginx:alpine + +WORKDIR /usr/share/nginx/html + +# Clean the default Nginx public files +RUN rm -rf ./* + +# Copy the build output from the first stage +COPY --from=build /app/build . + +# Expose port 80 for traffic +EXPOSE 80 + +# Start Nginx +CMD ["nginx", "-g", "daemon off;"] diff --git a/2026/day-35/practice-apps/react-app/dockerfile-without-best-practices/Dockerfile b/2026/day-35/practice-apps/react-app/dockerfile-without-best-practices/Dockerfile new file mode 100644 index 0000000000..de1a90345b --- /dev/null +++ b/2026/day-35/practice-apps/react-app/dockerfile-without-best-practices/Dockerfile @@ -0,0 +1,18 @@ +FROM node:18-slim + +WORKDIR /app + +COPY package.json . + +RUN npm install + +COPY . . + +RUN npm run build + +RUN npm install -g serve + +EXPOSE 3000 + +CMD ["serve","-s","build","-l","3000"] + diff --git a/2026/day-35/practice-apps/react-app/dockerfile-without-best-practices/dockerfile-multistage b/2026/day-35/practice-apps/react-app/dockerfile-without-best-practices/dockerfile-multistage new file mode 100644 index 0000000000..a7209f6439 --- /dev/null +++ b/2026/day-35/practice-apps/react-app/dockerfile-without-best-practices/dockerfile-multistage @@ -0,0 +1,31 @@ +# Stage 1: Build the React application +FROM node:18-alpine AS build + +WORKDIR /app + +# Install dependencies separately for better caching +COPY package.json package-lock.json* ./ + +RUN npm install + +# Copy source code and build the production assets +COPY . . + +RUN npm run build + +# Stage 2: Serve the application with Nginx +FROM nginx:alpine + +WORKDIR /usr/share/nginx/html + +# Clean the default Nginx public files +RUN rm -rf ./* + +# Copy the build output from the first stage +COPY --from=build /app/build . + +# Expose port 80 for traffic +EXPOSE 80 + +# Start Nginx +CMD ["nginx", "-g", "daemon off;"] diff --git a/2026/day-35/practice-apps/react-app/nginx.conf b/2026/day-35/practice-apps/react-app/nginx.conf new file mode 100644 index 0000000000..5f8c912b55 --- /dev/null +++ b/2026/day-35/practice-apps/react-app/nginx.conf @@ -0,0 +1,21 @@ +events{} +http{ +server { + listen 80; + server_name localhost; + root /usr/share/nginx/html; + index index.html; + + location / { + try_files $uri $uri/ /index.html; + } + + location /static/ { + expires 1y; + add_header Cache-Control "public, immutable"; + } + + gzip on; + gzip_types text/plain text/css application/json application/javascript text/xml application/xml; +} +} diff --git a/2026/day-35/practice-apps/react-app/package-lock.json b/2026/day-35/practice-apps/react-app/package-lock.json new file mode 100644 index 0000000000..5b12d4b73a --- /dev/null +++ b/2026/day-35/practice-apps/react-app/package-lock.json @@ -0,0 +1,15785 @@ +{ + "name": "react-notes-app", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "react-notes-app", + "version": "1.0.0", + "dependencies": { + "lucide-react": "^0.400.0", + "react": "^18.3.1", + "react-dom": "^18.3.1", + "react-scripts": "^5.0.1" + } + }, + "node_modules/@alloc/quick-lru": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", + "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.0.tgz", + "integrity": "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==", + "dependencies": { + "@babel/helper-validator-identifier": "^7.28.5", + "js-tokens": "^4.0.0", + "picocolors": "^1.1.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.29.0.tgz", + "integrity": "sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.0.tgz", + "integrity": "sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==", + "dependencies": { + "@babel/code-frame": "^7.29.0", + "@babel/generator": "^7.29.0", + "@babel/helper-compilation-targets": "^7.28.6", + "@babel/helper-module-transforms": "^7.28.6", + "@babel/helpers": "^7.28.6", + "@babel/parser": "^7.29.0", + "@babel/template": "^7.28.6", + "@babel/traverse": "^7.29.0", + "@babel/types": "^7.29.0", + "@jridgewell/remapping": "^2.3.5", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/core/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/eslint-parser": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.28.6.tgz", + "integrity": "sha512-QGmsKi2PBO/MHSQk+AAgA9R6OHQr+VqnniFE0eMWZcVcfBZoA2dKn2hUsl3Csg/Plt9opRUWdY7//VXsrIlEiA==", + "dependencies": { + "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1", + "eslint-visitor-keys": "^2.1.0", + "semver": "^6.3.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || >=14.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.11.0", + "eslint": "^7.5.0 || ^8.0.0 || ^9.0.0" + } + }, + "node_modules/@babel/eslint-parser/node_modules/eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "engines": { + "node": ">=10" + } + }, + "node_modules/@babel/eslint-parser/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/generator": { + "version": "7.29.1", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.1.tgz", + "integrity": "sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==", + "dependencies": { + "@babel/parser": "^7.29.0", + "@babel/types": "^7.29.0", + "@jridgewell/gen-mapping": "^0.3.12", + "@jridgewell/trace-mapping": "^0.3.28", + "jsesc": "^3.0.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-annotate-as-pure": { + "version": "7.27.3", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.27.3.tgz", + "integrity": "sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==", + "dependencies": { + "@babel/types": "^7.27.3" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.28.6.tgz", + "integrity": "sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==", + "dependencies": { + "@babel/compat-data": "^7.28.6", + "@babel/helper-validator-option": "^7.27.1", + "browserslist": "^4.24.0", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.28.6.tgz", + "integrity": "sha512-dTOdvsjnG3xNT9Y0AUg1wAl38y+4Rl4sf9caSQZOXdNqVn+H+HbbJ4IyyHaIqNR6SW9oJpA/RuRjsjCw2IdIow==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.3", + "@babel/helper-member-expression-to-functions": "^7.28.5", + "@babel/helper-optimise-call-expression": "^7.27.1", + "@babel/helper-replace-supers": "^7.28.6", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", + "@babel/traverse": "^7.28.6", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-class-features-plugin/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.28.5.tgz", + "integrity": "sha512-N1EhvLtHzOvj7QQOUCCS3NrPJP8c5W6ZXCHDn7Yialuy1iu4r5EmIYkXlKNqT99Ciw+W0mDqWoR6HWMZlFP3hw==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.3", + "regexpu-core": "^6.3.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.6.8", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.8.tgz", + "integrity": "sha512-47UwBLPpQi1NoWzLuHNjRoHlYXMwIJoBf7MFou6viC/sIHWYygpvr0B6IAyh5sBdA2nr2LPIRww8lfaUVQINBA==", + "dependencies": { + "@babel/helper-compilation-targets": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6", + "debug": "^4.4.3", + "lodash.debounce": "^4.0.8", + "resolve": "^1.22.11" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/@babel/helper-globals": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz", + "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.28.5.tgz", + "integrity": "sha512-cwM7SBRZcPCLgl8a7cY0soT1SptSzAlMH39vwiRpOQkJlh53r5hdHwLSCZpQdVLT39sZt+CRpNwYG4Y2v77atg==", + "dependencies": { + "@babel/traverse": "^7.28.5", + "@babel/types": "^7.28.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.28.6.tgz", + "integrity": "sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==", + "dependencies": { + "@babel/traverse": "^7.28.6", + "@babel/types": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.6.tgz", + "integrity": "sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==", + "dependencies": { + "@babel/helper-module-imports": "^7.28.6", + "@babel/helper-validator-identifier": "^7.28.5", + "@babel/traverse": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.27.1.tgz", + "integrity": "sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==", + "dependencies": { + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.28.6.tgz", + "integrity": "sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-remap-async-to-generator": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.27.1.tgz", + "integrity": "sha512-7fiA521aVw8lSPeI4ZOD3vRFkoqkJcS+z4hFo82bFSH/2tNd6eJ5qCVMS5OzDmZh/kaHQeBaeyxK6wljcPtveA==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.1", + "@babel/helper-wrap-function": "^7.27.1", + "@babel/traverse": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.28.6.tgz", + "integrity": "sha512-mq8e+laIk94/yFec3DxSjCRD2Z0TAjhVbEJY3UQrlwVo15Lmt7C2wAUbK4bjnTs4APkwsYLTahXRraQXhb1WCg==", + "dependencies": { + "@babel/helper-member-expression-to-functions": "^7.28.5", + "@babel/helper-optimise-call-expression": "^7.27.1", + "@babel/traverse": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.27.1.tgz", + "integrity": "sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==", + "dependencies": { + "@babel/traverse": "^7.27.1", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", + "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz", + "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-wrap-function": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.28.6.tgz", + "integrity": "sha512-z+PwLziMNBeSQJonizz2AGnndLsP2DeGHIxDAn+wdHOGuo4Fo1x1HBPPXeE9TAOPHNNWQKCSlA2VZyYyyibDnQ==", + "dependencies": { + "@babel/template": "^7.28.6", + "@babel/traverse": "^7.28.6", + "@babel/types": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.29.2", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.29.2.tgz", + "integrity": "sha512-HoGuUs4sCZNezVEKdVcwqmZN8GoHirLUcLaYVNBK2J0DadGtdcqgr3BCbvH8+XUo4NGjNl3VOtSjEKNzqfFgKw==", + "dependencies": { + "@babel/template": "^7.28.6", + "@babel/types": "^7.29.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.29.2", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.2.tgz", + "integrity": "sha512-4GgRzy/+fsBa72/RZVJmGKPmZu9Byn8o4MoLpmNe1m8ZfYnz5emHLQz3U4gLud6Zwl0RZIcgiLD7Uq7ySFuDLA==", + "dependencies": { + "@babel/types": "^7.29.0" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.28.5.tgz", + "integrity": "sha512-87GDMS3tsmMSi/3bWOte1UblL+YUTFMV8SZPZ2eSEL17s74Cw/l63rR6NmGVKMYW2GYi85nE+/d6Hw5N0bEk2Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/traverse": "^7.28.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-safari-class-field-initializer-scope": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.27.1.tgz", + "integrity": "sha512-qNeq3bCKnGgLkEXUuFry6dPlGfCdQNZbn7yUAPCInwAJHMU7THJfrBSozkcWq5sNM6RcF3S8XyQL2A52KNR9IA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.27.1.tgz", + "integrity": "sha512-g4L7OYun04N1WyqMNjldFwlfPCLVkgB54A/YCXICZYBsvJJE3kByKv9c9+R/nAfmIfjl2rKYLNyMHboYbZaWaA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.27.1.tgz", + "integrity": "sha512-oO02gcONcD5O1iTLi/6frMJBIwWEHceWGSGqrpCmEL8nogiS6J9PBlE48CaK20/Jx1LuRml9aDftLgdjXT8+Cw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", + "@babel/plugin-transform-optional-chaining": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.13.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.28.6.tgz", + "integrity": "sha512-a0aBScVTlNaiUe35UtfxAN7A/tehvvG4/ByO6+46VPKTRSlfnAFsgKy0FUh+qAkQrDTmhDkT+IBOKlOoMUxQ0g==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/traverse": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-proposal-class-properties": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", + "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-decorators": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.29.0.tgz", + "integrity": "sha512-CVBVv3VY/XRMxRYq5dwr2DS7/MvqPm23cOCjbwNnVrfOqcWlnefua1uUs0sjdKOGjvPUG633o07uWzJq4oI6dA==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/plugin-syntax-decorators": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", + "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead.", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-numeric-separator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", + "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead.", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-optional-chaining": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz", + "integrity": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead.", + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-private-methods": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz", + "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-methods instead.", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-private-property-in-object": { + "version": "7.21.0-placeholder-for-preset-env.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", + "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-decorators": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.28.6.tgz", + "integrity": "sha512-71EYI0ONURHJBL4rSFXnITXqXrrY8q4P0q006DPfN+Rk+ASM+++IBXem/ruokgBZR8YNEWZ8R6B+rCb8VcUTqA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-flow": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.28.6.tgz", + "integrity": "sha512-D+OrJumc9McXNEBI/JmFnc/0uCM2/Y3PEBG3gfV3QIYkKv5pvnpzFrl1kYCrcHJP8nOeFB/SHi1IHz29pNGuew==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-assertions": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.28.6.tgz", + "integrity": "sha512-pSJUpFHdx9z5nqTSirOCMtYVP2wFgoWhP0p3g8ONK/4IHhLIBd0B9NYqAvIUAhq+OkhO4VM1tENCt0cjlsNShw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-attributes": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.28.6.tgz", + "integrity": "sha512-jiLC0ma9XkQT3TKJ9uYvlakm66Pamywo+qwL+oL8HJOvc6TWdZXVfhqJr8CCzbSGUAbDOzlGHJC1U+vRfLQDvw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.28.6.tgz", + "integrity": "sha512-wgEmr06G6sIpqr8YDwA2dSRTE3bJ+V0IfpzfSY3Lfgd7YWOaAdlykvJi13ZKBt8cZHfgH1IXN+CL656W3uUa4w==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.28.6.tgz", + "integrity": "sha512-+nDNmQye7nlnuuHDboPbGm00Vqg3oO8niRRL27/4LYHUsHYh0zJ1xWOz0uRwNFmM1Avzk8wZbc6rdiYhomzv/A==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-unicode-sets-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", + "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-arrow-functions": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.27.1.tgz", + "integrity": "sha512-8Z4TGic6xW70FKThA5HYEKKyBpOOsucTOD1DjU3fZxDg+K3zBJcXMFnt/4yQiZnf5+MiOMSXQ9PaEK/Ilh1DeA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-generator-functions": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.29.0.tgz", + "integrity": "sha512-va0VdWro4zlBr2JsXC+ofCPB2iG12wPtVGTWFx2WLDOM3nYQZZIGP82qku2eW/JR83sD+k2k+CsNtyEbUqhU6w==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/helper-remap-async-to-generator": "^7.27.1", + "@babel/traverse": "^7.29.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-to-generator": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.28.6.tgz", + "integrity": "sha512-ilTRcmbuXjsMmcZ3HASTe4caH5Tpo93PkTxF9oG2VZsSWsahydmcEHhix9Ik122RcTnZnUzPbmux4wh1swfv7g==", + "dependencies": { + "@babel/helper-module-imports": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/helper-remap-async-to-generator": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoped-functions": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.27.1.tgz", + "integrity": "sha512-cnqkuOtZLapWYZUYM5rVIdv1nXYuFVIltZ6ZJ7nIj585QsjKM5dhL2Fu/lICXZ1OyIAFc7Qy+bvDAtTXqGrlhg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoping": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.28.6.tgz", + "integrity": "sha512-tt/7wOtBmwHPNMPu7ax4pdPz6shjFrmHDghvNC+FG9Qvj7D6mJcoRQIF5dy4njmxR941l6rgtvfSB2zX3VlUIw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-class-properties": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.28.6.tgz", + "integrity": "sha512-dY2wS3I2G7D697VHndN91TJr8/AAfXQNt5ynCTI/MpxMsSzHp+52uNivYT5wCPax3whc47DR8Ba7cmlQMg24bw==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-class-static-block": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.28.6.tgz", + "integrity": "sha512-rfQ++ghVwTWTqQ7w8qyDxL1XGihjBss4CmTgGRCTAC9RIbhVpyp4fOeZtta0Lbf+dTNIVJer6ych2ibHwkZqsQ==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.12.0" + } + }, + "node_modules/@babel/plugin-transform-classes": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.28.6.tgz", + "integrity": "sha512-EF5KONAqC5zAqT783iMGuM2ZtmEBy+mJMOKl2BCvPZ2lVrwvXnB6o+OBWCS+CoeCCpVRF2sA2RBKUxvT8tQT5Q==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.3", + "@babel/helper-compilation-targets": "^7.28.6", + "@babel/helper-globals": "^7.28.0", + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/helper-replace-supers": "^7.28.6", + "@babel/traverse": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-computed-properties": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.28.6.tgz", + "integrity": "sha512-bcc3k0ijhHbc2lEfpFHgx7eYw9KNXqOerKWfzbxEHUGKnS3sz9C4CNL9OiFN1297bDNfUiSO7DaLzbvHQQQ1BQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/template": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-destructuring": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.28.5.tgz", + "integrity": "sha512-Kl9Bc6D0zTUcFUvkNuQh4eGXPKKNDOJQXVyyM4ZAQPMveniJdxi8XMJwLo+xSoW3MIq81bD33lcUe9kZpl0MCw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/traverse": "^7.28.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-dotall-regex": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.28.6.tgz", + "integrity": "sha512-SljjowuNKB7q5Oayv4FoPzeB74g3QgLt8IVJw9ADvWy3QnUb/01aw8I4AVv8wYnPvQz2GDDZ/g3GhcNyDBI4Bg==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.28.5", + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-duplicate-keys": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.27.1.tgz", + "integrity": "sha512-MTyJk98sHvSs+cvZ4nOauwTTG1JeonDjSGvGGUNHreGQns+Mpt6WX/dVzWBHgg+dYZhkC4X+zTDfkTU+Vy9y7Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-duplicate-named-capturing-groups-regex": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.29.0.tgz", + "integrity": "sha512-zBPcW2lFGxdiD8PUnPwJjag2J9otbcLQzvbiOzDxpYXyCuYX9agOwMPGn1prVH0a4qzhCKu24rlH4c1f7yA8rw==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.28.5", + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-dynamic-import": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.27.1.tgz", + "integrity": "sha512-MHzkWQcEmjzzVW9j2q8LGjwGWpG2mjwaaB0BNQwst3FIjqsg8Ct/mIZlvSPJvfi9y2AC8mi/ktxbFVL9pZ1I4A==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-explicit-resource-management": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-explicit-resource-management/-/plugin-transform-explicit-resource-management-7.28.6.tgz", + "integrity": "sha512-Iao5Konzx2b6g7EPqTy40UZbcdXE126tTxVFr/nAIj+WItNxjKSYTEw3RC+A2/ZetmdJsgueL1KhaMCQHkLPIg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/plugin-transform-destructuring": "^7.28.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-exponentiation-operator": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.28.6.tgz", + "integrity": "sha512-WitabqiGjV/vJ0aPOLSFfNY1u9U3R7W36B03r5I2KoNix+a3sOhJ3pKFB3R5It9/UiK78NiO0KE9P21cMhlPkw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-export-namespace-from": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.27.1.tgz", + "integrity": "sha512-tQvHWSZ3/jH2xuq/vZDy0jNn+ZdXJeM8gHvX4lnJmsc3+50yPlWdZXIc5ay+umX+2/tJIqHqiEqcJvxlmIvRvQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-flow-strip-types": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.27.1.tgz", + "integrity": "sha512-G5eDKsu50udECw7DL2AcsysXiQyB7Nfg521t2OAJ4tbfTJ27doHLeF/vlI1NZGlLdbb/v+ibvtL1YBQqYOwJGg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/plugin-syntax-flow": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-for-of": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.27.1.tgz", + "integrity": "sha512-BfbWFFEJFQzLCQ5N8VocnCtA8J1CLkNTe2Ms2wocj75dd6VpiqS5Z5quTYcUoo4Yq+DN0rtikODccuv7RU81sw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-function-name": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.27.1.tgz", + "integrity": "sha512-1bQeydJF9Nr1eBCMMbC+hdwmRlsv5XYOMu03YSWFwNs0HsAmtSxxF1fyuYPqemVldVyFmlCU7w8UE14LupUSZQ==", + "dependencies": { + "@babel/helper-compilation-targets": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/traverse": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-json-strings": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.28.6.tgz", + "integrity": "sha512-Nr+hEN+0geQkzhbdgQVPoqr47lZbm+5fCUmO70722xJZd0Mvb59+33QLImGj6F+DkK3xgDi1YVysP8whD6FQAw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-literals": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.27.1.tgz", + "integrity": "sha512-0HCFSepIpLTkLcsi86GG3mTUzxV5jpmbv97hTETW3yzrAij8aqlD36toB1D0daVFJM8NK6GvKO0gslVQmm+zZA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-logical-assignment-operators": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.28.6.tgz", + "integrity": "sha512-+anKKair6gpi8VsM/95kmomGNMD0eLz1NQ8+Pfw5sAwWH9fGYXT50E55ZpV0pHUHWf6IUTWPM+f/7AAff+wr9A==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-member-expression-literals": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.27.1.tgz", + "integrity": "sha512-hqoBX4dcZ1I33jCSWcXrP+1Ku7kdqXf1oeah7ooKOIiAdKQ+uqftgCFNOSzA5AMS2XIHEYeGFg4cKRCdpxzVOQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-amd": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.27.1.tgz", + "integrity": "sha512-iCsytMg/N9/oFq6n+gFTvUYDZQOMK5kEdeYxmxt91fcJGycfxVP9CnrxoliM0oumFERba2i8ZtwRUCMhvP1LnA==", + "dependencies": { + "@babel/helper-module-transforms": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.28.6.tgz", + "integrity": "sha512-jppVbf8IV9iWWwWTQIxJMAJCWBuuKx71475wHwYytrRGQ2CWiDvYlADQno3tcYpS/T2UUWFQp3nVtYfK/YBQrA==", + "dependencies": { + "@babel/helper-module-transforms": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-systemjs": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.29.0.tgz", + "integrity": "sha512-PrujnVFbOdUpw4UHiVwKvKRLMMic8+eC0CuNlxjsyZUiBjhFdPsewdXCkveh2KqBA9/waD0W1b4hXSOBQJezpQ==", + "dependencies": { + "@babel/helper-module-transforms": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/helper-validator-identifier": "^7.28.5", + "@babel/traverse": "^7.29.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-umd": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.27.1.tgz", + "integrity": "sha512-iQBE/xC5BV1OxJbp6WG7jq9IWiD+xxlZhLrdwpPkTX3ydmXdvoCpyfJN7acaIBZaOqTfr76pgzqBJflNbeRK+w==", + "dependencies": { + "@babel/helper-module-transforms": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.29.0.tgz", + "integrity": "sha512-1CZQA5KNAD6ZYQLPw7oi5ewtDNxH/2vuCh+6SmvgDfhumForvs8a1o9n0UrEoBD8HU4djO2yWngTQlXl1NDVEQ==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.28.5", + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-new-target": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.27.1.tgz", + "integrity": "sha512-f6PiYeqXQ05lYq3TIfIDu/MtliKUbNwkGApPUvyo6+tc7uaR4cPjPe7DFPr15Uyycg2lZU6btZ575CuQoYh7MQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.28.6.tgz", + "integrity": "sha512-3wKbRgmzYbw24mDJXT7N+ADXw8BC/imU9yo9c9X9NKaLF1fW+e5H1U5QjMUBe4Qo4Ox/o++IyUkl1sVCLgevKg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-numeric-separator": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.28.6.tgz", + "integrity": "sha512-SJR8hPynj8outz+SlStQSwvziMN4+Bq99it4tMIf5/Caq+3iOc0JtKyse8puvyXkk3eFRIA5ID/XfunGgO5i6w==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-rest-spread": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.28.6.tgz", + "integrity": "sha512-5rh+JR4JBC4pGkXLAcYdLHZjXudVxWMXbB6u6+E9lRL5TrGVbHt1TjxGbZ8CkmYw9zjkB7jutzOROArsqtncEA==", + "dependencies": { + "@babel/helper-compilation-targets": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/plugin-transform-destructuring": "^7.28.5", + "@babel/plugin-transform-parameters": "^7.27.7", + "@babel/traverse": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-super": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.27.1.tgz", + "integrity": "sha512-SFy8S9plRPbIcxlJ8A6mT/CxFdJx/c04JEctz4jf8YZaVS2px34j7NXRrlGlHkN/M2gnpL37ZpGRGVFLd3l8Ng==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-replace-supers": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-optional-catch-binding": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.28.6.tgz", + "integrity": "sha512-R8ja/Pyrv0OGAvAXQhSTmWyPJPml+0TMqXlO5w+AsMEiwb2fg3WkOvob7UxFSL3OIttFSGSRFKQsOhJ/X6HQdQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-optional-chaining": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.28.6.tgz", + "integrity": "sha512-A4zobikRGJTsX9uqVFdafzGkqD30t26ck2LmOzAuLL8b2x6k3TIqRiT2xVvA9fNmFeTX484VpsdgmKNA0bS23w==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-parameters": { + "version": "7.27.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.27.7.tgz", + "integrity": "sha512-qBkYTYCb76RRxUM6CcZA5KRu8K4SM8ajzVeUgVdMVO9NN9uI/GaVmBg/WKJJGnNokV9SY8FxNOVWGXzqzUidBg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-methods": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.28.6.tgz", + "integrity": "sha512-piiuapX9CRv7+0st8lmuUlRSmX6mBcVeNQ1b4AYzJxfCMuBfB0vBXDiGSmm03pKJw1v6cZ8KSeM+oUnM6yAExg==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-property-in-object": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.28.6.tgz", + "integrity": "sha512-b97jvNSOb5+ehyQmBpmhOCiUC5oVK4PMnpRvO7+ymFBoqYjeDHIU9jnrNUuwHOiL9RpGDoKBpSViarV+BU+eVA==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.3", + "@babel/helper-create-class-features-plugin": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-property-literals": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.27.1.tgz", + "integrity": "sha512-oThy3BCuCha8kDZ8ZkgOg2exvPYUlprMukKQXI1r1pJ47NCvxfkEy8vK+r/hT9nF0Aa4H1WUPZZjHTFtAhGfmQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-constant-elements": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.27.1.tgz", + "integrity": "sha512-edoidOjl/ZxvYo4lSBOQGDSyToYVkTAwyVoa2tkuYTSmjrB1+uAedoL5iROVLXkxH+vRgA7uP4tMg2pUJpZ3Ug==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-display-name": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.28.0.tgz", + "integrity": "sha512-D6Eujc2zMxKjfa4Zxl4GHMsmhKKZ9VpcqIchJLvwTxad9zWIYulwYItBovpDOoNLISpcZSXoDJ5gaGbQUDqViA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.28.6.tgz", + "integrity": "sha512-61bxqhiRfAACulXSLd/GxqmAedUSrRZIu/cbaT18T1CetkTmtDN15it7i80ru4DVqRK1WMxQhXs+Lf9kajm5Ow==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.3", + "@babel/helper-module-imports": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/plugin-syntax-jsx": "^7.28.6", + "@babel/types": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-development": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.27.1.tgz", + "integrity": "sha512-ykDdF5yI4f1WrAolLqeF3hmYU12j9ntLQl/AOG1HAS21jxyg1Q0/J/tpREuYLfatGdGmXp/3yS0ZA76kOlVq9Q==", + "dependencies": { + "@babel/plugin-transform-react-jsx": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-pure-annotations": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.27.1.tgz", + "integrity": "sha512-JfuinvDOsD9FVMTHpzA/pBLisxpv1aSf+OIV8lgH3MuWrks19R27e6a6DipIg4aX1Zm9Wpb04p8wljfKrVSnPA==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-regenerator": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.29.0.tgz", + "integrity": "sha512-FijqlqMA7DmRdg/aINBSs04y8XNTYw/lr1gJ2WsmBnnaNw1iS43EPkJW+zK7z65auG3AWRFXWj+NcTQwYptUog==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-regexp-modifiers": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.28.6.tgz", + "integrity": "sha512-QGWAepm9qxpaIs7UM9FvUSnCGlb8Ua1RhyM4/veAxLwt3gMat/LSGrZixyuj4I6+Kn9iwvqCyPTtbdxanYoWYg==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.28.5", + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-reserved-words": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.27.1.tgz", + "integrity": "sha512-V2ABPHIJX4kC7HegLkYoDpfg9PVmuWy/i6vUM5eGK22bx4YVFD3M5F0QQnWQoDs6AGsUWTVOopBiMFQgHaSkVw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-runtime": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.29.0.tgz", + "integrity": "sha512-jlaRT5dJtMaMCV6fAuLbsQMSwz/QkvaHOHOSXRitGGwSpR1blCY4KUKoyP2tYO8vJcqYe8cEj96cqSztv3uF9w==", + "dependencies": { + "@babel/helper-module-imports": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6", + "babel-plugin-polyfill-corejs2": "^0.4.14", + "babel-plugin-polyfill-corejs3": "^0.13.0", + "babel-plugin-polyfill-regenerator": "^0.6.5", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-runtime/node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.13.0.tgz", + "integrity": "sha512-U+GNwMdSFgzVmfhNm8GJUX88AadB3uo9KpJqS3FaqNIPKgySuvMb+bHPsOmmuWyIcuqZj/pzt1RUIUZns4y2+A==", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.6.5", + "core-js-compat": "^3.43.0" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/@babel/plugin-transform-runtime/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/plugin-transform-shorthand-properties": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.27.1.tgz", + "integrity": "sha512-N/wH1vcn4oYawbJ13Y/FxcQrWk63jhfNa7jef0ih7PHSIHX2LB7GWE1rkPrOnka9kwMxb6hMl19p7lidA+EHmQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-spread": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.28.6.tgz", + "integrity": "sha512-9U4QObUC0FtJl05AsUcodau/RWDytrU6uKgkxu09mLR9HLDAtUMoPuuskm5huQsoktmsYpI+bGmq+iapDcriKA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-sticky-regex": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.27.1.tgz", + "integrity": "sha512-lhInBO5bi/Kowe2/aLdBAawijx+q1pQzicSgnkB6dUPc1+RC8QmJHKf2OjvU+NZWitguJHEaEmbV6VWEouT58g==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-template-literals": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.27.1.tgz", + "integrity": "sha512-fBJKiV7F2DxZUkg5EtHKXQdbsbURW3DZKQUWphDum0uRP6eHGGa/He9mc0mypL680pb+e/lDIthRohlv8NCHkg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typeof-symbol": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.27.1.tgz", + "integrity": "sha512-RiSILC+nRJM7FY5srIyc4/fGIwUhyDuuBSdWn4y6yT6gm652DpCHZjIipgn6B7MQ1ITOUnAKWixEUjQRIBIcLw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typescript": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.28.6.tgz", + "integrity": "sha512-0YWL2RFxOqEm9Efk5PvreamxPME8OyY0wM5wh5lHjF+VtVhdneCWGzZeSqzOfiobVqQaNCd2z0tQvnI9DaPWPw==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.3", + "@babel/helper-create-class-features-plugin": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", + "@babel/plugin-syntax-typescript": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-escapes": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.27.1.tgz", + "integrity": "sha512-Ysg4v6AmF26k9vpfFuTZg8HRfVWzsh1kVfowA23y9j/Gu6dOuahdUVhkLqpObp3JIv27MLSii6noRnuKN8H0Mg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-property-regex": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.28.6.tgz", + "integrity": "sha512-4Wlbdl/sIZjzi/8St0evF0gEZrgOswVO6aOzqxh1kDZOl9WmLrHq2HtGhnOJZmHZYKP8WZ1MDLCt5DAWwRo57A==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.28.5", + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-regex": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.27.1.tgz", + "integrity": "sha512-xvINq24TRojDuyt6JGtHmkVkrfVV3FPT16uytxImLeBZqW3/H52yN+kM1MGuyPkIQxrzKwPHs5U/MP3qKyzkGw==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-sets-regex": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.28.6.tgz", + "integrity": "sha512-/wHc/paTUmsDYN7SZkpWxogTOBNnlx7nBQYfy6JJlCT7G3mVhltk3e++N7zV0XfgGsrqBxd4rJQt9H16I21Y1Q==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.28.5", + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/preset-env": { + "version": "7.29.2", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.29.2.tgz", + "integrity": "sha512-DYD23veRYGvBFhcTY1iUvJnDNpuqNd/BzBwCvzOTKUnJjKg5kpUBh3/u9585Agdkgj+QuygG7jLfOPWMa2KVNw==", + "dependencies": { + "@babel/compat-data": "^7.29.0", + "@babel/helper-compilation-targets": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/helper-validator-option": "^7.27.1", + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.28.5", + "@babel/plugin-bugfix-safari-class-field-initializer-scope": "^7.27.1", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.27.1", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.27.1", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.28.6", + "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", + "@babel/plugin-syntax-import-assertions": "^7.28.6", + "@babel/plugin-syntax-import-attributes": "^7.28.6", + "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", + "@babel/plugin-transform-arrow-functions": "^7.27.1", + "@babel/plugin-transform-async-generator-functions": "^7.29.0", + "@babel/plugin-transform-async-to-generator": "^7.28.6", + "@babel/plugin-transform-block-scoped-functions": "^7.27.1", + "@babel/plugin-transform-block-scoping": "^7.28.6", + "@babel/plugin-transform-class-properties": "^7.28.6", + "@babel/plugin-transform-class-static-block": "^7.28.6", + "@babel/plugin-transform-classes": "^7.28.6", + "@babel/plugin-transform-computed-properties": "^7.28.6", + "@babel/plugin-transform-destructuring": "^7.28.5", + "@babel/plugin-transform-dotall-regex": "^7.28.6", + "@babel/plugin-transform-duplicate-keys": "^7.27.1", + "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^7.29.0", + "@babel/plugin-transform-dynamic-import": "^7.27.1", + "@babel/plugin-transform-explicit-resource-management": "^7.28.6", + "@babel/plugin-transform-exponentiation-operator": "^7.28.6", + "@babel/plugin-transform-export-namespace-from": "^7.27.1", + "@babel/plugin-transform-for-of": "^7.27.1", + "@babel/plugin-transform-function-name": "^7.27.1", + "@babel/plugin-transform-json-strings": "^7.28.6", + "@babel/plugin-transform-literals": "^7.27.1", + "@babel/plugin-transform-logical-assignment-operators": "^7.28.6", + "@babel/plugin-transform-member-expression-literals": "^7.27.1", + "@babel/plugin-transform-modules-amd": "^7.27.1", + "@babel/plugin-transform-modules-commonjs": "^7.28.6", + "@babel/plugin-transform-modules-systemjs": "^7.29.0", + "@babel/plugin-transform-modules-umd": "^7.27.1", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.29.0", + "@babel/plugin-transform-new-target": "^7.27.1", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.28.6", + "@babel/plugin-transform-numeric-separator": "^7.28.6", + "@babel/plugin-transform-object-rest-spread": "^7.28.6", + "@babel/plugin-transform-object-super": "^7.27.1", + "@babel/plugin-transform-optional-catch-binding": "^7.28.6", + "@babel/plugin-transform-optional-chaining": "^7.28.6", + "@babel/plugin-transform-parameters": "^7.27.7", + "@babel/plugin-transform-private-methods": "^7.28.6", + "@babel/plugin-transform-private-property-in-object": "^7.28.6", + "@babel/plugin-transform-property-literals": "^7.27.1", + "@babel/plugin-transform-regenerator": "^7.29.0", + "@babel/plugin-transform-regexp-modifiers": "^7.28.6", + "@babel/plugin-transform-reserved-words": "^7.27.1", + "@babel/plugin-transform-shorthand-properties": "^7.27.1", + "@babel/plugin-transform-spread": "^7.28.6", + "@babel/plugin-transform-sticky-regex": "^7.27.1", + "@babel/plugin-transform-template-literals": "^7.27.1", + "@babel/plugin-transform-typeof-symbol": "^7.27.1", + "@babel/plugin-transform-unicode-escapes": "^7.27.1", + "@babel/plugin-transform-unicode-property-regex": "^7.28.6", + "@babel/plugin-transform-unicode-regex": "^7.27.1", + "@babel/plugin-transform-unicode-sets-regex": "^7.28.6", + "@babel/preset-modules": "0.1.6-no-external-plugins", + "babel-plugin-polyfill-corejs2": "^0.4.15", + "babel-plugin-polyfill-corejs3": "^0.14.0", + "babel-plugin-polyfill-regenerator": "^0.6.6", + "core-js-compat": "^3.48.0", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-env/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/preset-modules": { + "version": "0.1.6-no-external-plugins", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", + "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/@babel/preset-react": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.28.5.tgz", + "integrity": "sha512-Z3J8vhRq7CeLjdC58jLv4lnZ5RKFUJWqH5emvxmv9Hv3BD1T9R/Im713R4MTKwvFaV74ejZ3sM01LyEKk4ugNQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-validator-option": "^7.27.1", + "@babel/plugin-transform-react-display-name": "^7.28.0", + "@babel/plugin-transform-react-jsx": "^7.27.1", + "@babel/plugin-transform-react-jsx-development": "^7.27.1", + "@babel/plugin-transform-react-pure-annotations": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-typescript": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.28.5.tgz", + "integrity": "sha512-+bQy5WOI2V6LJZpPVxY+yp66XdZ2yifu0Mc1aP5CQKgjn4QM5IN2i5fAZ4xKop47pr8rpVhiAeu+nDQa12C8+g==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-validator-option": "^7.27.1", + "@babel/plugin-syntax-jsx": "^7.27.1", + "@babel/plugin-transform-modules-commonjs": "^7.27.1", + "@babel/plugin-transform-typescript": "^7.28.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/runtime": { + "version": "7.29.2", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.29.2.tgz", + "integrity": "sha512-JiDShH45zKHWyGe4ZNVRrCjBz8Nh9TMmZG1kh4QTK8hCBTWBi8Da+i7s1fJw7/lYpM4ccepSNfqzZ/QvABBi5g==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.28.6.tgz", + "integrity": "sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==", + "dependencies": { + "@babel/code-frame": "^7.28.6", + "@babel/parser": "^7.28.6", + "@babel/types": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.0.tgz", + "integrity": "sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==", + "dependencies": { + "@babel/code-frame": "^7.29.0", + "@babel/generator": "^7.29.0", + "@babel/helper-globals": "^7.28.0", + "@babel/parser": "^7.29.0", + "@babel/template": "^7.28.6", + "@babel/types": "^7.29.0", + "debug": "^4.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.0.tgz", + "integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==", + "dependencies": { + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.28.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==" + }, + "node_modules/@csstools/normalize.css": { + "version": "12.1.1", + "resolved": "https://registry.npmjs.org/@csstools/normalize.css/-/normalize.css-12.1.1.tgz", + "integrity": "sha512-YAYeJ+Xqh7fUou1d1j9XHl44BmsuThiTr4iNrgCQ3J27IbhXsxXDGZ1cXv8Qvs99d4rBbLiSKy3+WZiet32PcQ==" + }, + "node_modules/@csstools/postcss-cascade-layers": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-1.1.1.tgz", + "integrity": "sha512-+KdYrpKC5TgomQr2DlZF4lDEpHcoxnj5IGddYYfBWJAKfj1JtuHUIqMa+E1pJJ+z3kvDViWMqyqPlG4Ja7amQA==", + "dependencies": { + "@csstools/selector-specificity": "^2.0.2", + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-color-function": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-color-function/-/postcss-color-function-1.1.1.tgz", + "integrity": "sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw==", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-font-format-keywords": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-font-format-keywords/-/postcss-font-format-keywords-1.0.1.tgz", + "integrity": "sha512-ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-hwb-function": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@csstools/postcss-hwb-function/-/postcss-hwb-function-1.0.2.tgz", + "integrity": "sha512-YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-ic-unit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-ic-unit/-/postcss-ic-unit-1.0.1.tgz", + "integrity": "sha512-Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw==", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-is-pseudo-class": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-2.0.7.tgz", + "integrity": "sha512-7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA==", + "dependencies": { + "@csstools/selector-specificity": "^2.0.0", + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-nested-calc": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-nested-calc/-/postcss-nested-calc-1.0.0.tgz", + "integrity": "sha512-JCsQsw1wjYwv1bJmgjKSoZNvf7R6+wuHDAbi5f/7MbFhl2d/+v+TvBTU4BJH3G1X1H87dHl0mh6TfYogbT/dJQ==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-normalize-display-values": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-1.0.1.tgz", + "integrity": "sha512-jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-oklab-function": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-oklab-function/-/postcss-oklab-function-1.1.1.tgz", + "integrity": "sha512-nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA==", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-progressive-custom-properties": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-1.3.0.tgz", + "integrity": "sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "node_modules/@csstools/postcss-stepped-value-functions": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-1.0.1.tgz", + "integrity": "sha512-dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-text-decoration-shorthand": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-1.0.0.tgz", + "integrity": "sha512-c1XwKJ2eMIWrzQenN0XbcfzckOLLJiczqy+YvfGmzoVXd7pT9FfObiSEfzs84bpE/VqfpEuAZ9tCRbZkZxxbdw==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-trigonometric-functions": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-1.0.2.tgz", + "integrity": "sha512-woKaLO///4bb+zZC2s80l+7cm07M7268MsyG3M0ActXXEFi6SuhvriQYcb58iiKGbjwwIU7n45iRLEHypB47Og==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-unset-value": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@csstools/postcss-unset-value/-/postcss-unset-value-1.0.2.tgz", + "integrity": "sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g==", + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/selector-specificity": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-2.2.0.tgz", + "integrity": "sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw==", + "engines": { + "node": "^14 || ^16 || >=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss-selector-parser": "^6.0.10" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.1.tgz", + "integrity": "sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==", + "dependencies": { + "eslint-visitor-keys": "^3.4.3" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.12.2", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.2.tgz", + "integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==", + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", + "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.6.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/eslintrc/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + }, + "node_modules/@eslint/eslintrc/node_modules/js-yaml": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz", + "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/@eslint/js": { + "version": "8.57.1", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.1.tgz", + "integrity": "sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.13.0.tgz", + "integrity": "sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==", + "deprecated": "Use @eslint/config-array instead", + "dependencies": { + "@humanwhocodes/object-schema": "^2.0.3", + "debug": "^4.3.1", + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", + "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", + "deprecated": "Use @eslint/object-schema instead" + }, + "node_modules/@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "dependencies": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/console": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz", + "integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/core": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-27.5.1.tgz", + "integrity": "sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==", + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/reporters": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.8.1", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^27.5.1", + "jest-config": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-resolve-dependencies": "^27.5.1", + "jest-runner": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "jest-watcher": "^27.5.1", + "micromatch": "^4.0.4", + "rimraf": "^3.0.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/environment": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.5.1.tgz", + "integrity": "sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==", + "dependencies": { + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/fake-timers": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz", + "integrity": "sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==", + "dependencies": { + "@jest/types": "^27.5.1", + "@sinonjs/fake-timers": "^8.0.1", + "@types/node": "*", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/globals": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-27.5.1.tgz", + "integrity": "sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/types": "^27.5.1", + "expect": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/reporters": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-27.5.1.tgz", + "integrity": "sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==", + "dependencies": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.2", + "graceful-fs": "^4.2.9", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^5.1.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.1.3", + "jest-haste-map": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "slash": "^3.0.0", + "source-map": "^0.6.0", + "string-length": "^4.0.1", + "terminal-link": "^2.0.0", + "v8-to-istanbul": "^8.1.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/reporters/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@jest/schemas": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.1.3.tgz", + "integrity": "sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==", + "dependencies": { + "@sinclair/typebox": "^0.24.1" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@jest/source-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-27.5.1.tgz", + "integrity": "sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==", + "dependencies": { + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9", + "source-map": "^0.6.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/source-map/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@jest/test-result": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz", + "integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==", + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/test-sequencer": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz", + "integrity": "sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==", + "dependencies": { + "@jest/test-result": "^27.5.1", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-runtime": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/transform": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", + "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/types": "^27.5.1", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-util": "^27.5.1", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/transform/node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" + }, + "node_modules/@jest/transform/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.13", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/remapping": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz", + "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/source-map": { + "version": "0.3.11", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.11.tgz", + "integrity": "sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA==", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.31", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@leichtgewicht/ip-codec": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.5.tgz", + "integrity": "sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==" + }, + "node_modules/@nicolo-ribaudo/eslint-scope-5-internals": { + "version": "5.1.1-v1", + "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz", + "integrity": "sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==", + "dependencies": { + "eslint-scope": "5.1.1" + } + }, + "node_modules/@nicolo-ribaudo/eslint-scope-5-internals/node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/@nicolo-ribaudo/eslint-scope-5-internals/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin": { + "version": "0.5.17", + "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.17.tgz", + "integrity": "sha512-tXDyE1/jzFsHXjhRZQ3hMl0IVhYe5qula43LDWIhVfjp9G/nT5OQY5AORVOrkEGAUltBJOfOWeETbmhm6kHhuQ==", + "dependencies": { + "ansi-html": "^0.0.9", + "core-js-pure": "^3.23.3", + "error-stack-parser": "^2.0.6", + "html-entities": "^2.1.0", + "loader-utils": "^2.0.4", + "schema-utils": "^4.2.0", + "source-map": "^0.7.3" + }, + "engines": { + "node": ">= 10.13" + }, + "peerDependencies": { + "@types/webpack": "4.x || 5.x", + "react-refresh": ">=0.10.0 <1.0.0", + "sockjs-client": "^1.4.0", + "type-fest": ">=0.17.0 <5.0.0", + "webpack": ">=4.43.0 <6.0.0", + "webpack-dev-server": "3.x || 4.x || 5.x", + "webpack-hot-middleware": "2.x", + "webpack-plugin-serve": "0.x || 1.x" + }, + "peerDependenciesMeta": { + "@types/webpack": { + "optional": true + }, + "sockjs-client": { + "optional": true + }, + "type-fest": { + "optional": true + }, + "webpack-dev-server": { + "optional": true + }, + "webpack-hot-middleware": { + "optional": true + }, + "webpack-plugin-serve": { + "optional": true + } + } + }, + "node_modules/@rollup/plugin-babel": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@rollup/plugin-babel/-/plugin-babel-5.3.1.tgz", + "integrity": "sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==", + "dependencies": { + "@babel/helper-module-imports": "^7.10.4", + "@rollup/pluginutils": "^3.1.0" + }, + "engines": { + "node": ">= 10.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "@types/babel__core": "^7.1.9", + "rollup": "^1.20.0||^2.0.0" + }, + "peerDependenciesMeta": { + "@types/babel__core": { + "optional": true + } + } + }, + "node_modules/@rollup/plugin-node-resolve": { + "version": "11.2.1", + "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.2.1.tgz", + "integrity": "sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==", + "dependencies": { + "@rollup/pluginutils": "^3.1.0", + "@types/resolve": "1.17.1", + "builtin-modules": "^3.1.0", + "deepmerge": "^4.2.2", + "is-module": "^1.0.0", + "resolve": "^1.19.0" + }, + "engines": { + "node": ">= 10.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0" + } + }, + "node_modules/@rollup/plugin-replace": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-2.4.2.tgz", + "integrity": "sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==", + "dependencies": { + "@rollup/pluginutils": "^3.1.0", + "magic-string": "^0.25.7" + }, + "peerDependencies": { + "rollup": "^1.20.0 || ^2.0.0" + } + }, + "node_modules/@rollup/pluginutils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz", + "integrity": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==", + "dependencies": { + "@types/estree": "0.0.39", + "estree-walker": "^1.0.1", + "picomatch": "^2.2.2" + }, + "engines": { + "node": ">= 8.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0" + } + }, + "node_modules/@rollup/pluginutils/node_modules/@types/estree": { + "version": "0.0.39", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz", + "integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==" + }, + "node_modules/@rtsao/scc": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@rtsao/scc/-/scc-1.1.0.tgz", + "integrity": "sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==" + }, + "node_modules/@rushstack/eslint-patch": { + "version": "1.16.1", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.16.1.tgz", + "integrity": "sha512-TvZbIpeKqGQQ7X0zSCvPH9riMSFQFSggnfBjFZ1mEoILW+UuXCKwOoPcgjMwiUtRqFZ8jWhPJc4um14vC6I4ag==" + }, + "node_modules/@sinclair/typebox": { + "version": "0.24.51", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz", + "integrity": "sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==" + }, + "node_modules/@sinonjs/commons": { + "version": "1.8.6", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz", + "integrity": "sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==", + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/@sinonjs/fake-timers": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz", + "integrity": "sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==", + "dependencies": { + "@sinonjs/commons": "^1.7.0" + } + }, + "node_modules/@surma/rollup-plugin-off-main-thread": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-2.2.3.tgz", + "integrity": "sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==", + "dependencies": { + "ejs": "^3.1.6", + "json5": "^2.2.0", + "magic-string": "^0.25.0", + "string.prototype.matchall": "^4.0.6" + } + }, + "node_modules/@svgr/babel-plugin-add-jsx-attribute": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz", + "integrity": "sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-remove-jsx-attribute": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz", + "integrity": "sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz", + "integrity": "sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz", + "integrity": "sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-svg-dynamic-title": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz", + "integrity": "sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-svg-em-dimensions": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz", + "integrity": "sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-transform-react-native-svg": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz", + "integrity": "sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-transform-svg-component": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.5.0.tgz", + "integrity": "sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-preset": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-5.5.0.tgz", + "integrity": "sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==", + "dependencies": { + "@svgr/babel-plugin-add-jsx-attribute": "^5.4.0", + "@svgr/babel-plugin-remove-jsx-attribute": "^5.4.0", + "@svgr/babel-plugin-remove-jsx-empty-expression": "^5.0.1", + "@svgr/babel-plugin-replace-jsx-attribute-value": "^5.0.1", + "@svgr/babel-plugin-svg-dynamic-title": "^5.4.0", + "@svgr/babel-plugin-svg-em-dimensions": "^5.4.0", + "@svgr/babel-plugin-transform-react-native-svg": "^5.4.0", + "@svgr/babel-plugin-transform-svg-component": "^5.5.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/core": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/core/-/core-5.5.0.tgz", + "integrity": "sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==", + "dependencies": { + "@svgr/plugin-jsx": "^5.5.0", + "camelcase": "^6.2.0", + "cosmiconfig": "^7.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/hast-util-to-babel-ast": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.5.0.tgz", + "integrity": "sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==", + "dependencies": { + "@babel/types": "^7.12.6" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/plugin-jsx": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-5.5.0.tgz", + "integrity": "sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==", + "dependencies": { + "@babel/core": "^7.12.3", + "@svgr/babel-preset": "^5.5.0", + "@svgr/hast-util-to-babel-ast": "^5.5.0", + "svg-parser": "^2.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/plugin-svgo": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-5.5.0.tgz", + "integrity": "sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==", + "dependencies": { + "cosmiconfig": "^7.0.0", + "deepmerge": "^4.2.2", + "svgo": "^1.2.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/webpack": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/webpack/-/webpack-5.5.0.tgz", + "integrity": "sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==", + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/plugin-transform-react-constant-elements": "^7.12.1", + "@babel/preset-env": "^7.12.1", + "@babel/preset-react": "^7.12.5", + "@svgr/core": "^5.5.0", + "@svgr/plugin-jsx": "^5.5.0", + "@svgr/plugin-svgo": "^5.5.0", + "loader-utils": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@tootallnate/once": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", + "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/@types/babel__core": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", + "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.27.0", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz", + "integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==", + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", + "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.28.0.tgz", + "integrity": "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==", + "dependencies": { + "@babel/types": "^7.28.2" + } + }, + "node_modules/@types/body-parser": { + "version": "1.19.6", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.6.tgz", + "integrity": "sha512-HLFeCYgz89uk22N5Qg3dvGvsv46B8GLvKKo1zKG4NybA8U2DiEO3w9lqGg29t/tfLRJpJ6iQxnVw4OnB7MoM9g==", + "dependencies": { + "@types/connect": "*", + "@types/node": "*" + } + }, + "node_modules/@types/bonjour": { + "version": "3.5.13", + "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.13.tgz", + "integrity": "sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/connect": { + "version": "3.4.38", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz", + "integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/connect-history-api-fallback": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.4.tgz", + "integrity": "sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==", + "dependencies": { + "@types/express-serve-static-core": "*", + "@types/node": "*" + } + }, + "node_modules/@types/eslint": { + "version": "8.56.12", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.56.12.tgz", + "integrity": "sha512-03ruubjWyOHlmljCVoxSuNDdmfZDzsrrz0P2LeJsOXr+ZwFQ+0yQIwNCwt/GYhV7Z31fgtXJTAEs+FYlEL851g==", + "dependencies": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "node_modules/@types/eslint-scope": { + "version": "3.7.7", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", + "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", + "dependencies": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "node_modules/@types/estree": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==" + }, + "node_modules/@types/express": { + "version": "4.17.25", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.25.tgz", + "integrity": "sha512-dVd04UKsfpINUnK0yBoYHDF3xu7xVH4BuDotC/xGuycx4CgbP48X/KF/586bcObxT0HENHXEU8Nqtu6NR+eKhw==", + "dependencies": { + "@types/body-parser": "*", + "@types/express-serve-static-core": "^4.17.33", + "@types/qs": "*", + "@types/serve-static": "^1" + } + }, + "node_modules/@types/express-serve-static-core": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-5.1.1.tgz", + "integrity": "sha512-v4zIMr/cX7/d2BpAEX3KNKL/JrT1s43s96lLvvdTmza1oEvDudCqK9aF/djc/SWgy8Yh0h30TZx5VpzqFCxk5A==", + "dependencies": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*", + "@types/send": "*" + } + }, + "node_modules/@types/express/node_modules/@types/express-serve-static-core": { + "version": "4.19.8", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.8.tgz", + "integrity": "sha512-02S5fmqeoKzVZCHPZid4b8JH2eM5HzQLZWN2FohQEy/0eXTq8VXZfSN6Pcr3F6N9R/vNrj7cpgbhjie6m/1tCA==", + "dependencies": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*", + "@types/send": "*" + } + }, + "node_modules/@types/graceful-fs": { + "version": "4.1.9", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", + "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==" + }, + "node_modules/@types/http-errors": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.5.tgz", + "integrity": "sha512-r8Tayk8HJnX0FztbZN7oVqGccWgw98T/0neJphO91KkmOzug1KkofZURD4UaD5uH8AqcFLfdPErnBod0u71/qg==" + }, + "node_modules/@types/http-proxy": { + "version": "1.17.17", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.17.tgz", + "integrity": "sha512-ED6LB+Z1AVylNTu7hdzuBqOgMnvG/ld6wGCG8wFnAzKX5uyW2K3WD52v0gnLCTK/VLpXtKckgWuyScYK6cSPaw==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", + "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==" + }, + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz", + "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==", + "dependencies": { + "@types/istanbul-lib-coverage": "*" + } + }, + "node_modules/@types/istanbul-reports": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz", + "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==", + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==" + }, + "node_modules/@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" + }, + "node_modules/@types/mime": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz", + "integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==" + }, + "node_modules/@types/node": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/@types/node/-/node-25.5.0.tgz", + "integrity": "sha512-jp2P3tQMSxWugkCUKLRPVUpGaL5MVFwF8RDuSRztfwgN1wmqJeMSbKlnEtQqU8UrhTmzEmZdu2I6v2dpp7XIxw==", + "dependencies": { + "undici-types": "~7.18.0" + } + }, + "node_modules/@types/node-forge": { + "version": "1.3.14", + "resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.3.14.tgz", + "integrity": "sha512-mhVF2BnD4BO+jtOp7z1CdzaK4mbuK0LLQYAvdOLqHTavxFNq4zA1EmYkpnFjP8HOUzedfQkRnp0E2ulSAYSzAw==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/parse-json": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz", + "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==" + }, + "node_modules/@types/prettier": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.3.tgz", + "integrity": "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==" + }, + "node_modules/@types/q": { + "version": "1.5.8", + "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.8.tgz", + "integrity": "sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw==" + }, + "node_modules/@types/qs": { + "version": "6.15.0", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.15.0.tgz", + "integrity": "sha512-JawvT8iBVWpzTrz3EGw9BTQFg3BQNmwERdKE22vlTxawwtbyUSlMppvZYKLZzB5zgACXdXxbD3m1bXaMqP/9ow==" + }, + "node_modules/@types/range-parser": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz", + "integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==" + }, + "node_modules/@types/resolve": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.17.1.tgz", + "integrity": "sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==" + }, + "node_modules/@types/semver": { + "version": "7.7.1", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.7.1.tgz", + "integrity": "sha512-FmgJfu+MOcQ370SD0ev7EI8TlCAfKYU+B4m5T3yXc1CiRN94g/SZPtsCkk506aUDtlMnFZvasDwHHUcZUEaYuA==" + }, + "node_modules/@types/send": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@types/send/-/send-1.2.1.tgz", + "integrity": "sha512-arsCikDvlU99zl1g69TcAB3mzZPpxgw0UQnaHeC1Nwb015xp8bknZv5rIfri9xTOcMuaVgvabfIRA7PSZVuZIQ==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/serve-index": { + "version": "1.9.4", + "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.4.tgz", + "integrity": "sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==", + "dependencies": { + "@types/express": "*" + } + }, + "node_modules/@types/serve-static": { + "version": "1.15.10", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.10.tgz", + "integrity": "sha512-tRs1dB+g8Itk72rlSI2ZrW6vZg0YrLI81iQSTkMmOqnqCaNr/8Ek4VwWcN5vZgCYWbg/JJSGBlUaYGAOP73qBw==", + "dependencies": { + "@types/http-errors": "*", + "@types/node": "*", + "@types/send": "<1" + } + }, + "node_modules/@types/serve-static/node_modules/@types/send": { + "version": "0.17.6", + "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.6.tgz", + "integrity": "sha512-Uqt8rPBE8SY0RK8JB1EzVOIZ32uqy8HwdxCnoCOsYrvnswqmFZ/k+9Ikidlk/ImhsdvBsloHbAlewb2IEBV/Og==", + "dependencies": { + "@types/mime": "^1", + "@types/node": "*" + } + }, + "node_modules/@types/sockjs": { + "version": "0.3.36", + "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.36.tgz", + "integrity": "sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/stack-utils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", + "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==" + }, + "node_modules/@types/trusted-types": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.7.tgz", + "integrity": "sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==" + }, + "node_modules/@types/ws": { + "version": "8.18.1", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.18.1.tgz", + "integrity": "sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/yargs": { + "version": "16.0.11", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.11.tgz", + "integrity": "sha512-sbtvk8wDN+JvEdabmZExoW/HNr1cB7D/j4LT08rMiuikfA7m/JNJg7ATQcgzs34zHnoScDkY0ZRSl29Fkmk36g==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@types/yargs-parser": { + "version": "21.0.3", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", + "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==" + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz", + "integrity": "sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==", + "dependencies": { + "@eslint-community/regexpp": "^4.4.0", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/type-utils": "5.62.0", + "@typescript-eslint/utils": "5.62.0", + "debug": "^4.3.4", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "natural-compare-lite": "^1.4.0", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^5.0.0", + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/experimental-utils": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.62.0.tgz", + "integrity": "sha512-RTXpeB3eMkpoclG3ZHft6vG/Z30azNHuqY6wKPBHlVMZFuEvrtlEDe8gMqDb+SO+9hjC/pLekeSCryf9vMZlCw==", + "dependencies": { + "@typescript-eslint/utils": "5.62.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.62.0.tgz", + "integrity": "sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==", + "dependencies": { + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz", + "integrity": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==", + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz", + "integrity": "sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==", + "dependencies": { + "@typescript-eslint/typescript-estree": "5.62.0", + "@typescript-eslint/utils": "5.62.0", + "debug": "^4.3.4", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/types": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.62.0.tgz", + "integrity": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz", + "integrity": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==", + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.62.0.tgz", + "integrity": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==", + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@types/json-schema": "^7.0.9", + "@types/semver": "^7.3.12", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", + "eslint-scope": "^5.1.1", + "semver": "^7.3.7" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/@typescript-eslint/utils/node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/@typescript-eslint/utils/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz", + "integrity": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==", + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@ungap/structured-clone": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz", + "integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==" + }, + "node_modules/@webassemblyjs/ast": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz", + "integrity": "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==", + "dependencies": { + "@webassemblyjs/helper-numbers": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2" + } + }, + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz", + "integrity": "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==" + }, + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz", + "integrity": "sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==" + }, + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz", + "integrity": "sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==" + }, + "node_modules/@webassemblyjs/helper-numbers": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz", + "integrity": "sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==", + "dependencies": { + "@webassemblyjs/floating-point-hex-parser": "1.13.2", + "@webassemblyjs/helper-api-error": "1.13.2", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz", + "integrity": "sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==" + }, + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz", + "integrity": "sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==", + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/wasm-gen": "1.14.1" + } + }, + "node_modules/@webassemblyjs/ieee754": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz", + "integrity": "sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==", + "dependencies": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "node_modules/@webassemblyjs/leb128": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.13.2.tgz", + "integrity": "sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==", + "dependencies": { + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/utf8": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.13.2.tgz", + "integrity": "sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==" + }, + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz", + "integrity": "sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==", + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/helper-wasm-section": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-opt": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1", + "@webassemblyjs/wast-printer": "1.14.1" + } + }, + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz", + "integrity": "sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==", + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" + } + }, + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz", + "integrity": "sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==", + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1" + } + }, + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz", + "integrity": "sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==", + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-api-error": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" + } + }, + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz", + "integrity": "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==", + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" + }, + "node_modules/@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" + }, + "node_modules/abab": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", + "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", + "deprecated": "Use your platform's native atob() and btoa() methods instead" + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/accepts/node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/acorn": { + "version": "8.16.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.16.0.tgz", + "integrity": "sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-globals": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", + "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", + "dependencies": { + "acorn": "^7.1.1", + "acorn-walk": "^7.1.1" + } + }, + "node_modules/acorn-globals/node_modules/acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-import-phases": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/acorn-import-phases/-/acorn-import-phases-1.0.4.tgz", + "integrity": "sha512-wKmbr/DDiIXzEOiWrTTUcDm24kQ2vGfZQvM2fwg2vXqR5uW6aapr7ObPtj1th32b9u90/Pf4AItvdTh42fBmVQ==", + "engines": { + "node": ">=10.13.0" + }, + "peerDependencies": { + "acorn": "^8.14.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/acorn-walk": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", + "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/address": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/address/-/address-1.2.2.tgz", + "integrity": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/adjust-sourcemap-loader": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz", + "integrity": "sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==", + "dependencies": { + "loader-utils": "^2.0.0", + "regex-parser": "^2.2.11" + }, + "engines": { + "node": ">=8.9" + } + }, + "node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/ajv": { + "version": "6.14.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.14.0.tgz", + "integrity": "sha512-IWrosm/yrn43eiKqkfkHis7QioDleaXQHdDVPKg0FSwwd/DuvyX79TZnFOnYpB7dcsFAMmtFztZuXPDvSePkFw==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/ajv-formats/node_modules/ajv": { + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.18.0.tgz", + "integrity": "sha512-PlXPeEWMXMZ7sPYOHqmDyCJzcfNrUr3fGNKtezX14ykXOEIvyK81d+qydx89KY5O71FKMPaQ2vBfBFI5NHR63A==", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-escapes/node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-html": { + "version": "0.0.9", + "resolved": "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.9.tgz", + "integrity": "sha512-ozbS3LuenHVxNRh/wdnN16QapUHzauqSomAl1jwwJRRsGwFwtj644lIhxfWu0Fy0acCij2+AEgHvjscq3dlVXg==", + "engines": [ + "node >= 0.8.0" + ], + "bin": { + "ansi-html": "bin/ansi-html" + } + }, + "node_modules/ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "engines": [ + "node >= 0.8.0" + ], + "bin": { + "ansi-html": "bin/ansi-html" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==" + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==" + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/aria-query": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.2.tgz", + "integrity": "sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz", + "integrity": "sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==", + "dependencies": { + "call-bound": "^1.0.3", + "is-array-buffer": "^3.0.5" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" + }, + "node_modules/array-includes": { + "version": "3.1.9", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.9.tgz", + "integrity": "sha512-FmeCCAenzH0KH381SPT5FZmiA/TmpndpcaShhfgEN9eCVjnFBqq3l1xrI42y8+PPLI6hypzou4GXw00WHmPBLQ==", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "define-properties": "^1.2.1", + "es-abstract": "^1.24.0", + "es-object-atoms": "^1.1.1", + "get-intrinsic": "^1.3.0", + "is-string": "^1.1.1", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/array.prototype.findlast": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz", + "integrity": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.findlastindex": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.6.tgz", + "integrity": "sha512-F/TKATkzseUExPlfvmwQKGITM3DGTK+vkAsCZoDc5daVygbJBnjEUCbgkAvVFsgfXfX4YIqZ/27G3k3tdXrTxQ==", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.9", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "es-shim-unscopables": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flat": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.3.tgz", + "integrity": "sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==", + "dependencies": { + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flatmap": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.3.tgz", + "integrity": "sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==", + "dependencies": { + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.reduce": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.8.tgz", + "integrity": "sha512-DwuEqgXFBwbmZSRqt3BpQigWNUoqw9Ml2dTWdF3B2zQlQX4OeUE0zyuzX0fX0IbTvjdkZbcBTU3idgpO78qkTw==", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.9", + "es-array-method-boxes-properly": "^1.0.0", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "is-string": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.tosorted": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz", + "integrity": "sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.3", + "es-errors": "^1.3.0", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz", + "integrity": "sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==", + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "is-array-buffer": "^3.0.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==" + }, + "node_modules/ast-types-flow": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz", + "integrity": "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==" + }, + "node_modules/async": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.6.tgz", + "integrity": "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==" + }, + "node_modules/async-function": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/async-function/-/async-function-1.0.0.tgz", + "integrity": "sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + }, + "node_modules/at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/autoprefixer": { + "version": "10.4.27", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.27.tgz", + "integrity": "sha512-NP9APE+tO+LuJGn7/9+cohklunJsXWiaWEfV3si4Gi/XHDwVNgkwr1J3RQYFIvPy76GmJ9/bW8vyoU1LcxwKHA==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "browserslist": "^4.28.1", + "caniuse-lite": "^1.0.30001774", + "fraction.js": "^5.3.4", + "picocolors": "^1.1.1", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/available-typed-arrays": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", + "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", + "dependencies": { + "possible-typed-array-names": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/axe-core": { + "version": "4.11.1", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.11.1.tgz", + "integrity": "sha512-BASOg+YwO2C+346x3LZOeoovTIoTrRqEsqMa6fmfAV0P+U9mFr9NsyOEpiYvFjbc64NMrSswhV50WdXzdb/Z5A==", + "engines": { + "node": ">=4" + } + }, + "node_modules/axobject-query": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.1.0.tgz", + "integrity": "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/babel-jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-27.5.1.tgz", + "integrity": "sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==", + "dependencies": { + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^27.5.1", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.8.0" + } + }, + "node_modules/babel-loader": { + "version": "8.4.1", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.4.1.tgz", + "integrity": "sha512-nXzRChX+Z1GoE6yWavBQg6jDslyFF3SDjl2paADuoQtQW10JqShJt62R6eJQ5m/pjJFDT8xgKIWSP85OY8eXeA==", + "dependencies": { + "find-cache-dir": "^3.3.1", + "loader-utils": "^2.0.4", + "make-dir": "^3.1.0", + "schema-utils": "^2.6.5" + }, + "engines": { + "node": ">= 8.9" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "webpack": ">=2" + } + }, + "node_modules/babel-loader/node_modules/schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dependencies": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-jest-hoist": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz", + "integrity": "sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==", + "dependencies": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.0.0", + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/babel-plugin-macros": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", + "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", + "dependencies": { + "@babel/runtime": "^7.12.5", + "cosmiconfig": "^7.0.0", + "resolve": "^1.19.0" + }, + "engines": { + "node": ">=10", + "npm": ">=6" + } + }, + "node_modules/babel-plugin-named-asset-import": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.8.tgz", + "integrity": "sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==", + "peerDependencies": { + "@babel/core": "^7.1.0" + } + }, + "node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.4.17", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.17.tgz", + "integrity": "sha512-aTyf30K/rqAsNwN76zYrdtx8obu0E4KoUME29B1xj+B3WxgvWkp943vYQ+z8Mv3lw9xHXMHpvSPOBxzAkIa94w==", + "dependencies": { + "@babel/compat-data": "^7.28.6", + "@babel/helper-define-polyfill-provider": "^0.6.8", + "semver": "^6.3.1" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.14.2", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.14.2.tgz", + "integrity": "sha512-coWpDLJ410R781Npmn/SIBZEsAetR4xVi0SxLMXPaMO4lSf1MwnkGYMtkFxew0Dn8B3/CpbpYxN0JCgg8mn67g==", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.6.8", + "core-js-compat": "^3.48.0" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.6.8", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.8.tgz", + "integrity": "sha512-M762rNHfSF1EV3SLtnCJXFoQbbIIz0OyRwnCmV0KPC7qosSfCO0QLTSuJX3ayAebubhE6oYBAYPrBA5ljowaZg==", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.6.8" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-transform-react-remove-prop-types": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz", + "integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==" + }, + "node_modules/babel-preset-current-node-syntax": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.2.0.tgz", + "integrity": "sha512-E/VlAEzRrsLEb2+dv8yp3bo4scof3l9nR4lrld+Iy5NyVqgVYUJnDAmunkhPMisRI32Qc4iRiz425d8vM++2fg==", + "dependencies": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-import-attributes": "^7.24.7", + "@babel/plugin-syntax-import-meta": "^7.10.4", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5" + }, + "peerDependencies": { + "@babel/core": "^7.0.0 || ^8.0.0-0" + } + }, + "node_modules/babel-preset-jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz", + "integrity": "sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==", + "dependencies": { + "babel-plugin-jest-hoist": "^27.5.1", + "babel-preset-current-node-syntax": "^1.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-preset-react-app": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/babel-preset-react-app/-/babel-preset-react-app-10.1.0.tgz", + "integrity": "sha512-f9B1xMdnkCIqe+2dHrJsoQFRz7reChaAHE/65SdaykPklQqhme2WaC08oD3is77x9ff98/9EazAKFDZv5rFEQg==", + "dependencies": { + "@babel/core": "^7.16.0", + "@babel/plugin-proposal-class-properties": "^7.16.0", + "@babel/plugin-proposal-decorators": "^7.16.4", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.0", + "@babel/plugin-proposal-numeric-separator": "^7.16.0", + "@babel/plugin-proposal-optional-chaining": "^7.16.0", + "@babel/plugin-proposal-private-methods": "^7.16.0", + "@babel/plugin-proposal-private-property-in-object": "^7.16.7", + "@babel/plugin-transform-flow-strip-types": "^7.16.0", + "@babel/plugin-transform-react-display-name": "^7.16.0", + "@babel/plugin-transform-runtime": "^7.16.4", + "@babel/preset-env": "^7.16.4", + "@babel/preset-react": "^7.16.0", + "@babel/preset-typescript": "^7.16.0", + "@babel/runtime": "^7.16.3", + "babel-plugin-macros": "^3.1.0", + "babel-plugin-transform-react-remove-prop-types": "^0.4.24" + } + }, + "node_modules/babel-preset-react-app/node_modules/@babel/plugin-proposal-private-property-in-object": { + "version": "7.21.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.11.tgz", + "integrity": "sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-property-in-object instead.", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-create-class-features-plugin": "^7.21.0", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + }, + "node_modules/baseline-browser-mapping": { + "version": "2.10.12", + "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.12.tgz", + "integrity": "sha512-qyq26DxfY4awP2gIRXhhLWfwzwI+N5Nxk6iQi8EFizIaWIjqicQTE4sLnZZVdeKPRcVNoJOkkpfzoIYuvCKaIQ==", + "bin": { + "baseline-browser-mapping": "dist/cli.cjs" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==" + }, + "node_modules/bfj": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/bfj/-/bfj-7.1.0.tgz", + "integrity": "sha512-I6MMLkn+anzNdCUp9hMRyui1HaNEUCco50lxbvNS4+EyXg8lN3nJ48PjPWtbH8UVS9CuMoaKE9U2V3l29DaRQw==", + "dependencies": { + "bluebird": "^3.7.2", + "check-types": "^11.2.3", + "hoopy": "^0.1.4", + "jsonpath": "^1.1.1", + "tryer": "^1.0.1" + }, + "engines": { + "node": ">= 8.0.0" + } + }, + "node_modules/big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "engines": { + "node": "*" + } + }, + "node_modules/binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" + }, + "node_modules/body-parser": { + "version": "1.20.4", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.4.tgz", + "integrity": "sha512-ZTgYYLMOXY9qKU/57FAo8F+HA2dGX7bqGc71txDRC1rS4frdFI5R7NhluHxH6M0YItAP0sHB4uqAOcYKxO6uGA==", + "dependencies": { + "bytes": "~3.1.2", + "content-type": "~1.0.5", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "~1.2.0", + "http-errors": "~2.0.1", + "iconv-lite": "~0.4.24", + "on-finished": "~2.4.1", + "qs": "~6.14.0", + "raw-body": "~2.5.3", + "type-is": "~1.6.18", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/body-parser/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/body-parser/node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/body-parser/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/bonjour-service": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.3.0.tgz", + "integrity": "sha512-3YuAUiSkWykd+2Azjgyxei8OWf8thdn8AITIog2M4UICzoqfjlqr64WIjEXZllf/W6vK1goqleSR6brGomxQqA==", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "multicast-dns": "^7.2.5" + } + }, + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" + }, + "node_modules/brace-expansion": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.13.tgz", + "integrity": "sha512-9ZLprWS6EENmhEOpjCYW2c8VkmOvckIJZfkr7rBW6dObmfgJ/L1GpSYW5Hpo9lDz4D1+n0Ckz8rU7FwHDQiG/w==", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browser-process-hrtime": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", + "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==" + }, + "node_modules/browserslist": { + "version": "4.28.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.1.tgz", + "integrity": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "baseline-browser-mapping": "^2.9.0", + "caniuse-lite": "^1.0.30001759", + "electron-to-chromium": "^1.5.263", + "node-releases": "^2.0.27", + "update-browserslist-db": "^1.2.0" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "dependencies": { + "node-int64": "^0.4.0" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" + }, + "node_modules/builtin-modules": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz", + "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/call-bind": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz", + "integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==", + "dependencies": { + "call-bind-apply-helpers": "^1.0.0", + "es-define-property": "^1.0.0", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/call-bound": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", + "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "get-intrinsic": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "dependencies": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "dependencies": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001781", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001781.tgz", + "integrity": "sha512-RdwNCyMsNBftLjW6w01z8bKEvT6e/5tpPVEgtn22TiLGlstHOVecsX2KHFkD5e/vRnIE4EGzpuIODb3mtswtkw==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/case-sensitive-paths-webpack-plugin": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.4.0.tgz", + "integrity": "sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "engines": { + "node": ">=10" + } + }, + "node_modules/check-types": { + "version": "11.2.3", + "resolved": "https://registry.npmjs.org/check-types/-/check-types-11.2.3.tgz", + "integrity": "sha512-+67P1GkJRaxQD6PKK0Et9DhwQB+vGg3PM5+aavopCpZT1lj9jeqfvpgTLAWErNj8qApkkmXlu/Ug74kmhagkXg==" + }, + "node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chokidar/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/chrome-trace-event": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz", + "integrity": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==", + "engines": { + "node": ">=6.0" + } + }, + "node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "engines": { + "node": ">=8" + } + }, + "node_modules/cjs-module-lexer": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.4.3.tgz", + "integrity": "sha512-9z8TZaGM1pfswYeXrUpzPrkx8UnWYdhJclsiYMm6x/w5+nN+8Tf/LnAgfLGQCm59qAOxU8WwHEq2vNwF6i4j+Q==" + }, + "node_modules/clean-css": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.3.tgz", + "integrity": "sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==", + "dependencies": { + "source-map": "~0.6.0" + }, + "engines": { + "node": ">= 10.0" + } + }, + "node_modules/clean-css/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "node_modules/co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" + } + }, + "node_modules/coa": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz", + "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==", + "dependencies": { + "@types/q": "^1.5.1", + "chalk": "^2.4.1", + "q": "^1.1.2" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/coa/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/coa/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/coa/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/coa/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + }, + "node_modules/coa/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/coa/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/coa/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/collect-v8-coverage": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.3.tgz", + "integrity": "sha512-1L5aqIkwPfiodaMgQunkF1zRhNqifHBmtbbbxcr6yVxxBnliw4TDOW6NxpO8DJLgJ16OT+Y4ztZqP6p/FtXnAw==" + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/colord": { + "version": "2.9.3", + "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", + "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==" + }, + "node_modules/colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==" + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commander": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", + "engines": { + "node": ">= 12" + } + }, + "node_modules/common-tags": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz", + "integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==" + }, + "node_modules/compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "dependencies": { + "mime-db": ">= 1.43.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/compression": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.8.1.tgz", + "integrity": "sha512-9mAqGPHLakhCLeNyxPkK4xVo746zQ/czLH1Ky+vkitMnWfWZps8r0qXuwhwizagCRttsL4lfG4pIOvaWLpAP0w==", + "dependencies": { + "bytes": "3.1.2", + "compressible": "~2.0.18", + "debug": "2.6.9", + "negotiator": "~0.6.4", + "on-headers": "~1.1.0", + "safe-buffer": "5.2.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/compression/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/compression/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + }, + "node_modules/confusing-browser-globals": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz", + "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==" + }, + "node_modules/connect-history-api-fallback": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz", + "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" + }, + "node_modules/cookie": { + "version": "0.7.2", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.2.tgz", + "integrity": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.7.tgz", + "integrity": "sha512-NXdYc3dLr47pBkpUCHtKSwIOQXLVn8dZEuywboCOJY/osA0wFSLlSawr3KN8qXJEyX66FcONTH8EIlVuK0yyFA==" + }, + "node_modules/core-js": { + "version": "3.49.0", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.49.0.tgz", + "integrity": "sha512-es1U2+YTtzpwkxVLwAFdSpaIMyQaq0PBgm3YD1W3Qpsn1NAmO3KSgZfu+oGSWVu6NvLHoHCV/aYcsE5wiB7ALg==", + "hasInstallScript": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-js-compat": { + "version": "3.49.0", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.49.0.tgz", + "integrity": "sha512-VQXt1jr9cBz03b331DFDCCP90b3fanciLkgiOoy8SBHy06gNf+vQ1A3WFLqG7I8TipYIKeYK9wxd0tUrvHcOZA==", + "dependencies": { + "browserslist": "^4.28.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-js-pure": { + "version": "3.49.0", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.49.0.tgz", + "integrity": "sha512-XM4RFka59xATyJv/cS3O3Kml72hQXUeGRuuTmMYFxwzc9/7C8OYTaIR/Ji+Yt8DXzsFLNhat15cE/JP15HrCgw==", + "hasInstallScript": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" + }, + "node_modules/cosmiconfig": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/crypto-random-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", + "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/css-blank-pseudo": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-3.0.3.tgz", + "integrity": "sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ==", + "dependencies": { + "postcss-selector-parser": "^6.0.9" + }, + "bin": { + "css-blank-pseudo": "dist/cli.cjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/css-declaration-sorter": { + "version": "6.4.1", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.4.1.tgz", + "integrity": "sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==", + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.0.9" + } + }, + "node_modules/css-has-pseudo": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-3.0.4.tgz", + "integrity": "sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw==", + "dependencies": { + "postcss-selector-parser": "^6.0.9" + }, + "bin": { + "css-has-pseudo": "dist/cli.cjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/css-loader": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.11.0.tgz", + "integrity": "sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g==", + "dependencies": { + "icss-utils": "^5.1.0", + "postcss": "^8.4.33", + "postcss-modules-extract-imports": "^3.1.0", + "postcss-modules-local-by-default": "^4.0.5", + "postcss-modules-scope": "^3.2.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.2.0", + "semver": "^7.5.4" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "@rspack/core": "0.x || 1.x", + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "@rspack/core": { + "optional": true + }, + "webpack": { + "optional": true + } + } + }, + "node_modules/css-minimizer-webpack-plugin": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-3.4.1.tgz", + "integrity": "sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==", + "dependencies": { + "cssnano": "^5.0.6", + "jest-worker": "^27.0.2", + "postcss": "^8.3.5", + "schema-utils": "^4.0.0", + "serialize-javascript": "^6.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "@parcel/css": { + "optional": true + }, + "clean-css": { + "optional": true + }, + "csso": { + "optional": true + }, + "esbuild": { + "optional": true + } + } + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/css-prefers-color-scheme": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-6.0.3.tgz", + "integrity": "sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==", + "bin": { + "css-prefers-color-scheme": "dist/cli.cjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/css-select": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/css-select-base-adapter": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz", + "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==" + }, + "node_modules/css-tree": { + "version": "1.0.0-alpha.37", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz", + "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==", + "dependencies": { + "mdn-data": "2.0.4", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/css-tree/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/css-what": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.2.2.tgz", + "integrity": "sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/cssdb": { + "version": "7.11.2", + "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-7.11.2.tgz", + "integrity": "sha512-lhQ32TFkc1X4eTefGfYPvgovRSzIMofHkigfH8nWtyRL4XJLsRhJFreRvEgKzept7x1rjBuy3J/MurXLaFxW/A==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + } + ] + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cssnano": { + "version": "5.1.15", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.15.tgz", + "integrity": "sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==", + "dependencies": { + "cssnano-preset-default": "^5.2.14", + "lilconfig": "^2.0.3", + "yaml": "^1.10.2" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/cssnano" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/cssnano-preset-default": { + "version": "5.2.14", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.14.tgz", + "integrity": "sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==", + "dependencies": { + "css-declaration-sorter": "^6.3.1", + "cssnano-utils": "^3.1.0", + "postcss-calc": "^8.2.3", + "postcss-colormin": "^5.3.1", + "postcss-convert-values": "^5.1.3", + "postcss-discard-comments": "^5.1.2", + "postcss-discard-duplicates": "^5.1.0", + "postcss-discard-empty": "^5.1.1", + "postcss-discard-overridden": "^5.1.0", + "postcss-merge-longhand": "^5.1.7", + "postcss-merge-rules": "^5.1.4", + "postcss-minify-font-values": "^5.1.0", + "postcss-minify-gradients": "^5.1.1", + "postcss-minify-params": "^5.1.4", + "postcss-minify-selectors": "^5.2.1", + "postcss-normalize-charset": "^5.1.0", + "postcss-normalize-display-values": "^5.1.0", + "postcss-normalize-positions": "^5.1.1", + "postcss-normalize-repeat-style": "^5.1.1", + "postcss-normalize-string": "^5.1.0", + "postcss-normalize-timing-functions": "^5.1.0", + "postcss-normalize-unicode": "^5.1.1", + "postcss-normalize-url": "^5.1.0", + "postcss-normalize-whitespace": "^5.1.1", + "postcss-ordered-values": "^5.1.3", + "postcss-reduce-initial": "^5.1.2", + "postcss-reduce-transforms": "^5.1.0", + "postcss-svgo": "^5.1.0", + "postcss-unique-selectors": "^5.1.1" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/cssnano-utils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.1.0.tgz", + "integrity": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/csso": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", + "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", + "dependencies": { + "css-tree": "^1.1.2" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/csso/node_modules/css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "dependencies": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/csso/node_modules/mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" + }, + "node_modules/csso/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cssom": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", + "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==" + }, + "node_modules/cssstyle": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", + "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", + "dependencies": { + "cssom": "~0.3.6" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cssstyle/node_modules/cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==" + }, + "node_modules/damerau-levenshtein": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", + "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==" + }, + "node_modules/data-urls": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz", + "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", + "dependencies": { + "abab": "^2.0.3", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/data-view-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.2.tgz", + "integrity": "sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/data-view-byte-length": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.2.tgz", + "integrity": "sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/inspect-js" + } + }, + "node_modules/data-view-byte-offset": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.1.tgz", + "integrity": "sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/debug": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decimal.js": { + "version": "10.6.0", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.6.0.tgz", + "integrity": "sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==" + }, + "node_modules/dedent": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", + "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==" + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" + }, + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-gateway": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz", + "integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==", + "dependencies": { + "execa": "^5.0.0" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "engines": { + "node": ">=8" + } + }, + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "dependencies": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/detect-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==" + }, + "node_modules/detect-port-alt": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/detect-port-alt/-/detect-port-alt-1.1.6.tgz", + "integrity": "sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==", + "dependencies": { + "address": "^1.0.1", + "debug": "^2.6.0" + }, + "bin": { + "detect": "bin/detect-port", + "detect-port": "bin/detect-port" + }, + "engines": { + "node": ">= 4.2.1" + } + }, + "node_modules/detect-port-alt/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/detect-port-alt/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/didyoumean": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==" + }, + "node_modules/diff-sequences": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.5.1.tgz", + "integrity": "sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/dlv": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==" + }, + "node_modules/dns-packet": { + "version": "5.6.1", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.6.1.tgz", + "integrity": "sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==", + "dependencies": { + "@leichtgewicht/ip-codec": "^2.0.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/dom-converter": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", + "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", + "dependencies": { + "utila": "~0.4" + } + }, + "node_modules/dom-serializer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ] + }, + "node_modules/domexception": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz", + "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", + "deprecated": "Use your platform's native DOMException instead", + "dependencies": { + "webidl-conversions": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/domexception/node_modules/webidl-conversions": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", + "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "dependencies": { + "domelementtype": "^2.2.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "dependencies": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/dotenv": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz", + "integrity": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==", + "engines": { + "node": ">=10" + } + }, + "node_modules/dotenv-expand": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz", + "integrity": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==" + }, + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/duplexer": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" + }, + "node_modules/ejs": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.10.tgz", + "integrity": "sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==", + "dependencies": { + "jake": "^10.8.5" + }, + "bin": { + "ejs": "bin/cli.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.5.328", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.328.tgz", + "integrity": "sha512-QNQ5l45DzYytThO21403XN3FvK0hOkWDG8viNf6jqS42msJ8I4tGDSpBCgvDRRPnkffafiwAym2X2eHeGD2V0w==" + }, + "node_modules/emittery": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.8.1.tgz", + "integrity": "sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" + }, + "node_modules/emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/encodeurl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", + "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/enhanced-resolve": { + "version": "5.20.1", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.20.1.tgz", + "integrity": "sha512-Qohcme7V1inbAfvjItgw0EaxVX5q2rdVEZHRBrEQdRZTssLDGsL8Lwrznl8oQ/6kuTJONLaDcGjkNP247XEhcA==", + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.3.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/error-ex": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.4.tgz", + "integrity": "sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/error-stack-parser": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", + "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", + "dependencies": { + "stackframe": "^1.3.4" + } + }, + "node_modules/es-abstract": { + "version": "1.24.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.24.1.tgz", + "integrity": "sha512-zHXBLhP+QehSSbsS9Pt23Gg964240DPd6QCf8WpkqEXxQ7fhdZzYsocOr5u7apWonsS5EjZDmTF+/slGMyasvw==", + "dependencies": { + "array-buffer-byte-length": "^1.0.2", + "arraybuffer.prototype.slice": "^1.0.4", + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "data-view-buffer": "^1.0.2", + "data-view-byte-length": "^1.0.2", + "data-view-byte-offset": "^1.0.1", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "es-set-tostringtag": "^2.1.0", + "es-to-primitive": "^1.3.0", + "function.prototype.name": "^1.1.8", + "get-intrinsic": "^1.3.0", + "get-proto": "^1.0.1", + "get-symbol-description": "^1.1.0", + "globalthis": "^1.0.4", + "gopd": "^1.2.0", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "internal-slot": "^1.1.0", + "is-array-buffer": "^3.0.5", + "is-callable": "^1.2.7", + "is-data-view": "^1.0.2", + "is-negative-zero": "^2.0.3", + "is-regex": "^1.2.1", + "is-set": "^2.0.3", + "is-shared-array-buffer": "^1.0.4", + "is-string": "^1.1.1", + "is-typed-array": "^1.1.15", + "is-weakref": "^1.1.1", + "math-intrinsics": "^1.1.0", + "object-inspect": "^1.13.4", + "object-keys": "^1.1.1", + "object.assign": "^4.1.7", + "own-keys": "^1.0.1", + "regexp.prototype.flags": "^1.5.4", + "safe-array-concat": "^1.1.3", + "safe-push-apply": "^1.0.0", + "safe-regex-test": "^1.1.0", + "set-proto": "^1.0.0", + "stop-iteration-iterator": "^1.1.0", + "string.prototype.trim": "^1.2.10", + "string.prototype.trimend": "^1.0.9", + "string.prototype.trimstart": "^1.0.8", + "typed-array-buffer": "^1.0.3", + "typed-array-byte-length": "^1.0.3", + "typed-array-byte-offset": "^1.0.4", + "typed-array-length": "^1.0.7", + "unbox-primitive": "^1.1.0", + "which-typed-array": "^1.1.19" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-array-method-boxes-properly": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", + "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==" + }, + "node_modules/es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-iterator-helpers": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.3.1.tgz", + "integrity": "sha512-zWwRvqWiuBPr0muUG/78cW3aHROFCNIQ3zpmYDpwdbnt2m+xlNyRWpHBpa2lJjSBit7BQ+RXA1iwbSmu5yJ/EQ==", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "define-properties": "^1.2.1", + "es-abstract": "^1.24.1", + "es-errors": "^1.3.0", + "es-set-tostringtag": "^2.1.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.3.0", + "globalthis": "^1.0.4", + "gopd": "^1.2.0", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.2.0", + "has-symbols": "^1.1.0", + "internal-slot": "^1.1.0", + "iterator.prototype": "^1.1.5", + "math-intrinsics": "^1.1.0", + "safe-array-concat": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-module-lexer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-2.0.0.tgz", + "integrity": "sha512-5POEcUuZybH7IdmGsD8wlf0AI55wMecM9rVBTI/qEAy2c1kTOm3DjFYjrBdI2K3BaJjJYfYFeRtM0t9ssnRuxw==" + }, + "node_modules/es-object-atoms": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", + "dependencies": { + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-shim-unscopables": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.1.0.tgz", + "integrity": "sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-to-primitive": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.3.0.tgz", + "integrity": "sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==", + "dependencies": { + "is-callable": "^1.2.7", + "is-date-object": "^1.0.5", + "is-symbol": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/escodegen": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz", + "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", + "dependencies": { + "esprima": "^4.0.1", + "estraverse": "^5.2.0", + "esutils": "^2.0.2" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=6.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" + } + }, + "node_modules/escodegen/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint": { + "version": "8.57.1", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.1.tgz", + "integrity": "sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==", + "deprecated": "This version is no longer supported. Please see https://eslint.org/version-support for other options.", + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.4", + "@eslint/js": "8.57.1", + "@humanwhocodes/config-array": "^0.13.0", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "@ungap/structured-clone": "^1.2.0", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.3", + "espree": "^9.6.1", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-config-react-app": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/eslint-config-react-app/-/eslint-config-react-app-7.0.1.tgz", + "integrity": "sha512-K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA==", + "dependencies": { + "@babel/core": "^7.16.0", + "@babel/eslint-parser": "^7.16.3", + "@rushstack/eslint-patch": "^1.1.0", + "@typescript-eslint/eslint-plugin": "^5.5.0", + "@typescript-eslint/parser": "^5.5.0", + "babel-preset-react-app": "^10.0.1", + "confusing-browser-globals": "^1.0.11", + "eslint-plugin-flowtype": "^8.0.3", + "eslint-plugin-import": "^2.25.3", + "eslint-plugin-jest": "^25.3.0", + "eslint-plugin-jsx-a11y": "^6.5.1", + "eslint-plugin-react": "^7.27.1", + "eslint-plugin-react-hooks": "^4.3.0", + "eslint-plugin-testing-library": "^5.0.1" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "eslint": "^8.0.0" + } + }, + "node_modules/eslint-import-resolver-node": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", + "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", + "dependencies": { + "debug": "^3.2.7", + "is-core-module": "^2.13.0", + "resolve": "^1.22.4" + } + }, + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-module-utils": { + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.12.1.tgz", + "integrity": "sha512-L8jSWTze7K2mTg0vos/RuLRS5soomksDPoJLXIslC7c8Wmut3bx7CPpJijDcBZtxQ5lrbUdM+s0OlNbz0DCDNw==", + "dependencies": { + "debug": "^3.2.7" + }, + "engines": { + "node": ">=4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + } + } + }, + "node_modules/eslint-module-utils/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-flowtype": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-8.0.3.tgz", + "integrity": "sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ==", + "dependencies": { + "lodash": "^4.17.21", + "string-natural-compare": "^3.0.1" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "@babel/plugin-syntax-flow": "^7.14.5", + "@babel/plugin-transform-react-jsx": "^7.14.9", + "eslint": "^8.1.0" + } + }, + "node_modules/eslint-plugin-import": { + "version": "2.32.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.32.0.tgz", + "integrity": "sha512-whOE1HFo/qJDyX4SnXzP4N6zOWn79WhnCUY/iDR0mPfQZO8wcYE4JClzI2oZrhBnnMUCBCHZhO6VQyoBU95mZA==", + "dependencies": { + "@rtsao/scc": "^1.1.0", + "array-includes": "^3.1.9", + "array.prototype.findlastindex": "^1.2.6", + "array.prototype.flat": "^1.3.3", + "array.prototype.flatmap": "^1.3.3", + "debug": "^3.2.7", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.9", + "eslint-module-utils": "^2.12.1", + "hasown": "^2.0.2", + "is-core-module": "^2.16.1", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.8", + "object.groupby": "^1.0.3", + "object.values": "^1.2.1", + "semver": "^6.3.1", + "string.prototype.trimend": "^1.0.9", + "tsconfig-paths": "^3.15.0" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9" + } + }, + "node_modules/eslint-plugin-import/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-import/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-import/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/eslint-plugin-jest": { + "version": "25.7.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-25.7.0.tgz", + "integrity": "sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==", + "dependencies": { + "@typescript-eslint/experimental-utils": "^5.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + }, + "peerDependencies": { + "@typescript-eslint/eslint-plugin": "^4.0.0 || ^5.0.0", + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "@typescript-eslint/eslint-plugin": { + "optional": true + }, + "jest": { + "optional": true + } + } + }, + "node_modules/eslint-plugin-jsx-a11y": { + "version": "6.10.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.10.2.tgz", + "integrity": "sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==", + "dependencies": { + "aria-query": "^5.3.2", + "array-includes": "^3.1.8", + "array.prototype.flatmap": "^1.3.2", + "ast-types-flow": "^0.0.8", + "axe-core": "^4.10.0", + "axobject-query": "^4.1.0", + "damerau-levenshtein": "^1.0.8", + "emoji-regex": "^9.2.2", + "hasown": "^2.0.2", + "jsx-ast-utils": "^3.3.5", + "language-tags": "^1.0.9", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.8", + "safe-regex-test": "^1.0.3", + "string.prototype.includes": "^2.0.1" + }, + "engines": { + "node": ">=4.0" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9" + } + }, + "node_modules/eslint-plugin-react": { + "version": "7.37.5", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.37.5.tgz", + "integrity": "sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA==", + "dependencies": { + "array-includes": "^3.1.8", + "array.prototype.findlast": "^1.2.5", + "array.prototype.flatmap": "^1.3.3", + "array.prototype.tosorted": "^1.1.4", + "doctrine": "^2.1.0", + "es-iterator-helpers": "^1.2.1", + "estraverse": "^5.3.0", + "hasown": "^2.0.2", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "object.entries": "^1.1.9", + "object.fromentries": "^2.0.8", + "object.values": "^1.2.1", + "prop-types": "^15.8.1", + "resolve": "^2.0.0-next.5", + "semver": "^6.3.1", + "string.prototype.matchall": "^4.0.12", + "string.prototype.repeat": "^1.0.0" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7" + } + }, + "node_modules/eslint-plugin-react-hooks": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.2.tgz", + "integrity": "sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==", + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" + } + }, + "node_modules/eslint-plugin-react/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-react/node_modules/resolve": { + "version": "2.0.0-next.6", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.6.tgz", + "integrity": "sha512-3JmVl5hMGtJ3kMmB3zi3DL25KfkCEyy3Tw7Gmw7z5w8M9WlwoPFnIvwChzu1+cF3iaK3sp18hhPz8ANeimdJfA==", + "dependencies": { + "es-errors": "^1.3.0", + "is-core-module": "^2.16.1", + "node-exports-info": "^1.6.0", + "object-keys": "^1.1.1", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/eslint-plugin-react/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/eslint-plugin-testing-library": { + "version": "5.11.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.11.1.tgz", + "integrity": "sha512-5eX9e1Kc2PqVRed3taaLnAAqPZGEX75C+M/rXzUAI3wIg/ZxzUm1OVAwfe/O+vE+6YXOLetSe9g5GKD2ecXipw==", + "dependencies": { + "@typescript-eslint/utils": "^5.58.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0", + "npm": ">=6" + }, + "peerDependencies": { + "eslint": "^7.5.0 || ^8.0.0" + } + }, + "node_modules/eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-webpack-plugin": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-3.2.0.tgz", + "integrity": "sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w==", + "dependencies": { + "@types/eslint": "^7.29.0 || ^8.4.1", + "jest-worker": "^28.0.2", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0", + "webpack": "^5.0.0" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/jest-worker": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-28.1.3.tgz", + "integrity": "sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/eslint/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + }, + "node_modules/eslint/node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/js-yaml": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz", + "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/eslint/node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "dependencies": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/esquery": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.7.0.tgz", + "integrity": "sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estree-walker": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz", + "integrity": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==" + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/expect": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz", + "integrity": "sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==", + "dependencies": { + "@jest/types": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/express": { + "version": "4.22.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.22.1.tgz", + "integrity": "sha512-F2X8g9P1X7uCPZMA3MVf9wcTqlyNp7IhH5qPCI0izhaOIYXaW9L535tGA3qmjRzpH+bZczqq7hVKxTR4NWnu+g==", + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "~1.20.3", + "content-disposition": "~0.5.4", + "content-type": "~1.0.4", + "cookie": "~0.7.1", + "cookie-signature": "~1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "~1.3.1", + "fresh": "~0.5.2", + "http-errors": "~2.0.0", + "merge-descriptors": "1.0.3", + "methods": "~1.1.2", + "on-finished": "~2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "~0.1.12", + "proxy-addr": "~2.0.7", + "qs": "~6.14.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "~0.19.0", + "serve-static": "~1.16.2", + "setprototypeof": "1.2.0", + "statuses": "~2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/express/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/express/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + }, + "node_modules/fast-glob": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", + "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.8" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" + }, + "node_modules/fast-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.0.tgz", + "integrity": "sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fastify" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/fastify" + } + ] + }, + "node_modules/fastq": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.20.1.tgz", + "integrity": "sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "dependencies": { + "websocket-driver": ">=0.5.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/fb-watchman": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", + "dependencies": { + "bser": "2.1.1" + } + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/file-loader": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz", + "integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==", + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/file-loader/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/filelist": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.6.tgz", + "integrity": "sha512-5giy2PkLYY1cP39p17Ech+2xlpTRL9HLspOfEgm0L6CwBXBTgsK5ou0JtzYuepxkaQ/tvhCFIJ5uXo0OrM2DxA==", + "dependencies": { + "minimatch": "^5.0.1" + } + }, + "node_modules/filelist/node_modules/brace-expansion": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.3.tgz", + "integrity": "sha512-MCV/fYJEbqx68aE58kv2cA/kiky1G8vux3OR6/jbS+jIMe/6fJWa0DTzJU7dqijOWYwHi1t29FlfYI9uytqlpA==", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/filelist/node_modules/minimatch": { + "version": "5.1.9", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.9.tgz", + "integrity": "sha512-7o1wEA2RyMP7Iu7GNba9vc0RWWGACJOCZBJX2GJWip0ikV+wcOsgVuY9uE8CPiyQhkGFSlhuSkZPavN7u1c2Fw==", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/filesize": { + "version": "8.0.7", + "resolved": "https://registry.npmjs.org/filesize/-/filesize-8.0.7.tgz", + "integrity": "sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ==", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/finalhandler": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.2.tgz", + "integrity": "sha512-aA4RyPcd3badbdABGDuTXCMTtOneUCAYH/gxoYRTZlIJdF0YPWuGqiAsIrhNnnqdXGswYk6dGujem4w80UJFhg==", + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "on-finished": "~2.4.1", + "parseurl": "~1.3.3", + "statuses": "~2.0.2", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + } + }, + "node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/flat-cache": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", + "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.3", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/flatted": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.4.2.tgz", + "integrity": "sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==" + }, + "node_modules/follow-redirects": { + "version": "1.15.11", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.11.tgz", + "integrity": "sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/for-each": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz", + "integrity": "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==", + "dependencies": { + "is-callable": "^1.2.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/fork-ts-checker-webpack-plugin": { + "version": "6.5.3", + "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.3.tgz", + "integrity": "sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==", + "dependencies": { + "@babel/code-frame": "^7.8.3", + "@types/json-schema": "^7.0.5", + "chalk": "^4.1.0", + "chokidar": "^3.4.2", + "cosmiconfig": "^6.0.0", + "deepmerge": "^4.2.2", + "fs-extra": "^9.0.0", + "glob": "^7.1.6", + "memfs": "^3.1.2", + "minimatch": "^3.0.4", + "schema-utils": "2.7.0", + "semver": "^7.3.2", + "tapable": "^1.0.0" + }, + "engines": { + "node": ">=10", + "yarn": ">=1.0.0" + }, + "peerDependencies": { + "eslint": ">= 6", + "typescript": ">= 2.7", + "vue-template-compiler": "*", + "webpack": ">= 4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + }, + "vue-template-compiler": { + "optional": true + } + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/cosmiconfig": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", + "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.1.0", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.7.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/schema-utils": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz", + "integrity": "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==", + "dependencies": { + "@types/json-schema": "^7.0.4", + "ajv": "^6.12.2", + "ajv-keywords": "^3.4.1" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/tapable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/form-data": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.4.tgz", + "integrity": "sha512-f0cRzm6dkyVYV3nPoooP8XlccPQukegwhAnpoLcXy+X+A8KfpGOoXwDr9FLZd3wzgLaBGQBE3lY93Zm/i1JvIQ==", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "es-set-tostringtag": "^2.1.0", + "hasown": "^2.0.2", + "mime-types": "^2.1.35" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fraction.js": { + "version": "5.3.4", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-5.3.4.tgz", + "integrity": "sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==", + "engines": { + "node": "*" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/rawify" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/fs-monkey": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.1.0.tgz", + "integrity": "sha512-QMUezzXWII9EV5aTFXW1UBVUO77wYPpjqIF8/AviUCThNeSYZykpoTixUeaNNBwmCev0AMDWMAni+f8Hxb1IFw==" + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/function.prototype.name": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.8.tgz", + "integrity": "sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "functions-have-names": "^1.2.3", + "hasown": "^2.0.2", + "is-callable": "^1.2.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/generator-function": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/generator-function/-/generator-function-2.0.1.tgz", + "integrity": "sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-own-enumerable-property-symbols": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz", + "integrity": "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==" + }, + "node_modules/get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-symbol-description": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.1.0.tgz", + "integrity": "sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + }, + "node_modules/global-modules": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", + "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", + "dependencies": { + "global-prefix": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/global-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", + "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", + "dependencies": { + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/global-prefix/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globalthis": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", + "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", + "dependencies": { + "define-properties": "^1.2.1", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/gopd": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==" + }, + "node_modules/gzip-size": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz", + "integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==", + "dependencies": { + "duplexer": "^0.1.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==" + }, + "node_modules/harmony-reflect": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/harmony-reflect/-/harmony-reflect-1.6.2.tgz", + "integrity": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==" + }, + "node_modules/has-bigints": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.1.0.tgz", + "integrity": "sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "dependencies": { + "es-define-property": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.2.0.tgz", + "integrity": "sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==", + "dependencies": { + "dunder-proto": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "bin": { + "he": "bin/he" + } + }, + "node_modules/hoopy": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/hoopy/-/hoopy-0.1.4.tgz", + "integrity": "sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==", + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", + "dependencies": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + } + }, + "node_modules/hpack.js/node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + }, + "node_modules/hpack.js/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/hpack.js/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "node_modules/hpack.js/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/html-encoding-sniffer": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz", + "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", + "dependencies": { + "whatwg-encoding": "^1.0.5" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/html-entities": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.6.0.tgz", + "integrity": "sha512-kig+rMn/QOVRvr7c86gQ8lWXq+Hkv6CbAH1hLu+RG338StTpE8Z0b44SDVaqVu7HGKf27frdmUYEs9hTUX/cLQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/mdevils" + }, + { + "type": "patreon", + "url": "https://patreon.com/mdevils" + } + ] + }, + "node_modules/html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==" + }, + "node_modules/html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==", + "dependencies": { + "camel-case": "^4.1.2", + "clean-css": "^5.2.2", + "commander": "^8.3.0", + "he": "^1.2.0", + "param-case": "^3.0.4", + "relateurl": "^0.2.7", + "terser": "^5.10.0" + }, + "bin": { + "html-minifier-terser": "cli.js" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/html-webpack-plugin": { + "version": "5.6.6", + "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.6.6.tgz", + "integrity": "sha512-bLjW01UTrvoWTJQL5LsMRo1SypHW80FTm12OJRSnr3v6YHNhfe+1r0MYUZJMACxnCHURVnBWRwAsWs2yPU9Ezw==", + "dependencies": { + "@types/html-minifier-terser": "^6.0.0", + "html-minifier-terser": "^6.0.2", + "lodash": "^4.17.21", + "pretty-error": "^4.0.0", + "tapable": "^2.0.0" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/html-webpack-plugin" + }, + "peerDependencies": { + "@rspack/core": "0.x || 1.x", + "webpack": "^5.20.0" + }, + "peerDependenciesMeta": { + "@rspack/core": { + "optional": true + }, + "webpack": { + "optional": true + } + } + }, + "node_modules/htmlparser2": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", + "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" + } + }, + "node_modules/http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==" + }, + "node_modules/http-errors": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.1.tgz", + "integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==", + "dependencies": { + "depd": "~2.0.0", + "inherits": "~2.0.4", + "setprototypeof": "~1.2.0", + "statuses": "~2.0.2", + "toidentifier": "~1.0.1" + }, + "engines": { + "node": ">= 0.8" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/http-parser-js": { + "version": "0.5.10", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.10.tgz", + "integrity": "sha512-Pysuw9XpUq5dVc/2SMHpuTY01RFl8fttgcyunjL7eEMhGM3cI4eOmiCycJDVCo/7O7ClfQD3SaI6ftDzqOXYMA==" + }, + "node_modules/http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "dependencies": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/http-proxy-agent": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", + "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", + "dependencies": { + "@tootallnate/once": "1", + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/http-proxy-middleware": { + "version": "2.0.9", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.9.tgz", + "integrity": "sha512-c1IyJYLYppU574+YI7R4QyX2ystMtVXZwIdzazUIPIJsHuWNd+mho2j+bKoHftndicGj9yh+xjd+l0yj7VeT1Q==", + "dependencies": { + "@types/http-proxy": "^1.17.8", + "http-proxy": "^1.18.1", + "is-glob": "^4.0.1", + "is-plain-obj": "^3.0.0", + "micromatch": "^4.0.2" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "@types/express": "^4.17.13" + }, + "peerDependenciesMeta": { + "@types/express": { + "optional": true + } + } + }, + "node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/idb": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/idb/-/idb-7.1.1.tgz", + "integrity": "sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ==" + }, + "node_modules/identity-obj-proxy": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz", + "integrity": "sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==", + "dependencies": { + "harmony-reflect": "^1.4.6" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/immer": { + "version": "9.0.21", + "resolved": "https://registry.npmjs.org/immer/-/immer-9.0.21.tgz", + "integrity": "sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/immer" + } + }, + "node_modules/import-fresh": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", + "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/import-fresh/node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "engines": { + "node": ">=4" + } + }, + "node_modules/import-local": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz", + "integrity": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==", + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + }, + "node_modules/internal-slot": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.1.0.tgz", + "integrity": "sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==", + "dependencies": { + "es-errors": "^1.3.0", + "hasown": "^2.0.2", + "side-channel": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/ipaddr.js": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.3.0.tgz", + "integrity": "sha512-Zv/pA+ciVFbCSBBjGfaKUya/CcGmUHzTydLMaTwrUUEM2DIEO3iZvueGxmacvmN50fGpGVKeTXpb2LcYQxeVdg==", + "engines": { + "node": ">= 10" + } + }, + "node_modules/is-array-buffer": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.5.tgz", + "integrity": "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "get-intrinsic": "^1.2.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" + }, + "node_modules/is-async-function": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.1.1.tgz", + "integrity": "sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==", + "dependencies": { + "async-function": "^1.0.0", + "call-bound": "^1.0.3", + "get-proto": "^1.0.1", + "has-tostringtag": "^1.0.2", + "safe-regex-test": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-bigint": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.1.0.tgz", + "integrity": "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==", + "dependencies": { + "has-bigints": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-boolean-object": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2.2.tgz", + "integrity": "sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==", + "dependencies": { + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-core-module": { + "version": "2.16.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", + "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-data-view": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.2.tgz", + "integrity": "sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==", + "dependencies": { + "call-bound": "^1.0.2", + "get-intrinsic": "^1.2.6", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.1.0.tgz", + "integrity": "sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==", + "dependencies": { + "call-bound": "^1.0.2", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-finalizationregistry": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz", + "integrity": "sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==", + "dependencies": { + "call-bound": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/is-generator-function": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.1.2.tgz", + "integrity": "sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==", + "dependencies": { + "call-bound": "^1.0.4", + "generator-function": "^2.0.0", + "get-proto": "^1.0.1", + "has-tostringtag": "^1.0.2", + "safe-regex-test": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-map": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", + "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", + "integrity": "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==" + }, + "node_modules/is-negative-zero": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", + "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.1.1.tgz", + "integrity": "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==", + "dependencies": { + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", + "integrity": "sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-plain-obj": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", + "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-potential-custom-element-name": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", + "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==" + }, + "node_modules/is-regex": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz", + "integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==", + "dependencies": { + "call-bound": "^1.0.2", + "gopd": "^1.2.0", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-regexp": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", + "integrity": "sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-root": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz", + "integrity": "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/is-set": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz", + "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz", + "integrity": "sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==", + "dependencies": { + "call-bound": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-string": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.1.1.tgz", + "integrity": "sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==", + "dependencies": { + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-symbol": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.1.1.tgz", + "integrity": "sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==", + "dependencies": { + "call-bound": "^1.0.2", + "has-symbols": "^1.1.0", + "safe-regex-test": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz", + "integrity": "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==", + "dependencies": { + "which-typed-array": "^1.1.16" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==" + }, + "node_modules/is-weakmap": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz", + "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakref": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.1.1.tgz", + "integrity": "sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==", + "dependencies": { + "call-bound": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakset": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.4.tgz", + "integrity": "sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==", + "dependencies": { + "call-bound": "^1.0.3", + "get-intrinsic": "^1.2.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + }, + "node_modules/istanbul-lib-coverage": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", + "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/istanbul-lib-report": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", + "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", + "dependencies": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^4.0.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-report/node_modules/make-dir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", + "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", + "dependencies": { + "semver": "^7.5.3" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/istanbul-lib-source-maps": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", + "dependencies": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-source-maps/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/istanbul-reports": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.2.0.tgz", + "integrity": "sha512-HGYWWS/ehqTV3xN10i23tkPkpH46MLCIMFNCaaKNavAXTF1RkqxawEPtnjnGZ6XKSInBKkiOA5BKS+aZiY3AvA==", + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/iterator.prototype": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.5.tgz", + "integrity": "sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==", + "dependencies": { + "define-data-property": "^1.1.4", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.6", + "get-proto": "^1.0.0", + "has-symbols": "^1.1.0", + "set-function-name": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/jake": { + "version": "10.9.4", + "resolved": "https://registry.npmjs.org/jake/-/jake-10.9.4.tgz", + "integrity": "sha512-wpHYzhxiVQL+IV05BLE2Xn34zW1S223hvjtqk0+gsPrwd/8JNLXJgZZM/iPFsYc1xyphF+6M6EvdE5E9MBGkDA==", + "dependencies": { + "async": "^3.2.6", + "filelist": "^1.0.4", + "picocolors": "^1.1.1" + }, + "bin": { + "jake": "bin/cli.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest/-/jest-27.5.1.tgz", + "integrity": "sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==", + "dependencies": { + "@jest/core": "^27.5.1", + "import-local": "^3.0.2", + "jest-cli": "^27.5.1" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-changed-files": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.5.1.tgz", + "integrity": "sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==", + "dependencies": { + "@jest/types": "^27.5.1", + "execa": "^5.0.0", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-circus": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-27.5.1.tgz", + "integrity": "sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^0.7.0", + "expect": "^27.5.1", + "is-generator-fn": "^2.0.0", + "jest-each": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-cli": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-27.5.1.tgz", + "integrity": "sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==", + "dependencies": { + "@jest/core": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "import-local": "^3.0.2", + "jest-config": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "prompts": "^2.0.1", + "yargs": "^16.2.0" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-config": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-27.5.1.tgz", + "integrity": "sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==", + "dependencies": { + "@babel/core": "^7.8.0", + "@jest/test-sequencer": "^27.5.1", + "@jest/types": "^27.5.1", + "babel-jest": "^27.5.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.1", + "graceful-fs": "^4.2.9", + "jest-circus": "^27.5.1", + "jest-environment-jsdom": "^27.5.1", + "jest-environment-node": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-jasmine2": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-runner": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "ts-node": { + "optional": true + } + } + }, + "node_modules/jest-diff": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz", + "integrity": "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==", + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-docblock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.5.1.tgz", + "integrity": "sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==", + "dependencies": { + "detect-newline": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-each": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-27.5.1.tgz", + "integrity": "sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==", + "dependencies": { + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "jest-get-type": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-environment-jsdom": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz", + "integrity": "sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1", + "jsdom": "^16.6.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-environment-node": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.5.1.tgz", + "integrity": "sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-get-type": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", + "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-haste-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", + "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^27.5.1", + "jest-serializer": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.4", + "walker": "^1.0.7" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/jest-jasmine2": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz", + "integrity": "sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/source-map": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "expect": "^27.5.1", + "is-generator-fn": "^2.0.0", + "jest-each": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-leak-detector": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz", + "integrity": "sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==", + "dependencies": { + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-matcher-utils": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz", + "integrity": "sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==", + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-mock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", + "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-pnp-resolver": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", + "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "jest-resolve": "*" + }, + "peerDependenciesMeta": { + "jest-resolve": { + "optional": true + } + } + }, + "node_modules/jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-resolve": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.5.1.tgz", + "integrity": "sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==", + "dependencies": { + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "resolve": "^1.20.0", + "resolve.exports": "^1.1.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-resolve-dependencies": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz", + "integrity": "sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==", + "dependencies": { + "@jest/types": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-snapshot": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-runner": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-27.5.1.tgz", + "integrity": "sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==", + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/environment": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.8.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^27.5.1", + "jest-environment-jsdom": "^27.5.1", + "jest-environment-node": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-leak-detector": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "source-map-support": "^0.5.6", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-runtime": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.5.1.tgz", + "integrity": "sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/globals": "^27.5.1", + "@jest/source-map": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "execa": "^5.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-serializer": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", + "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", + "dependencies": { + "@types/node": "*", + "graceful-fs": "^4.2.9" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-snapshot": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.5.1.tgz", + "integrity": "sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==", + "dependencies": { + "@babel/core": "^7.7.2", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/traverse": "^7.7.2", + "@babel/types": "^7.0.0", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/babel__traverse": "^7.0.4", + "@types/prettier": "^2.1.5", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^27.5.1", + "graceful-fs": "^4.2.9", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^27.5.1", + "semver": "^7.3.2" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-validate": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-27.5.1.tgz", + "integrity": "sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==", + "dependencies": { + "@jest/types": "^27.5.1", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^27.5.1", + "leven": "^3.1.0", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-watch-typeahead": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/jest-watch-typeahead/-/jest-watch-typeahead-1.1.0.tgz", + "integrity": "sha512-Va5nLSJTN7YFtC2jd+7wsoe1pNe5K4ShLux/E5iHEwlB9AxaxmggY7to9KUqKojhaJw3aXqt5WAb4jGPOolpEw==", + "dependencies": { + "ansi-escapes": "^4.3.1", + "chalk": "^4.0.0", + "jest-regex-util": "^28.0.0", + "jest-watcher": "^28.0.0", + "slash": "^4.0.0", + "string-length": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "jest": "^27.0.0 || ^28.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/@jest/console": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-28.1.3.tgz", + "integrity": "sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw==", + "dependencies": { + "@jest/types": "^28.1.3", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^28.1.3", + "jest-util": "^28.1.3", + "slash": "^3.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/@jest/console/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watch-typeahead/node_modules/@jest/test-result": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-28.1.3.tgz", + "integrity": "sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==", + "dependencies": { + "@jest/console": "^28.1.3", + "@jest/types": "^28.1.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/@jest/types": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz", + "integrity": "sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==", + "dependencies": { + "@jest/schemas": "^28.1.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/@types/yargs": { + "version": "17.0.35", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.35.tgz", + "integrity": "sha512-qUHkeCyQFxMXg79wQfTtfndEC+N9ZZg76HJftDJp+qH2tV7Gj4OJi7l+PiWwJ+pWtW8GwSmqsDj/oymhrTWXjg==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-watch-typeahead/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-watch-typeahead/node_modules/emittery": { + "version": "0.10.2", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.10.2.tgz", + "integrity": "sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "node_modules/jest-watch-typeahead/node_modules/jest-message-util": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-28.1.3.tgz", + "integrity": "sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^28.1.3", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^28.1.3", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/jest-message-util/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watch-typeahead/node_modules/jest-regex-util": { + "version": "28.0.2", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-28.0.2.tgz", + "integrity": "sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==", + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/jest-util": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-28.1.3.tgz", + "integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==", + "dependencies": { + "@jest/types": "^28.1.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/jest-watcher": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-28.1.3.tgz", + "integrity": "sha512-t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g==", + "dependencies": { + "@jest/test-result": "^28.1.3", + "@jest/types": "^28.1.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.10.2", + "jest-util": "^28.1.3", + "string-length": "^4.0.1" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/jest-watcher/node_modules/string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-watch-typeahead/node_modules/jest-watcher/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watch-typeahead/node_modules/pretty-format": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-28.1.3.tgz", + "integrity": "sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==", + "dependencies": { + "@jest/schemas": "^28.1.3", + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==" + }, + "node_modules/jest-watch-typeahead/node_modules/slash": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", + "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-watch-typeahead/node_modules/string-length": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-5.0.1.tgz", + "integrity": "sha512-9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow==", + "dependencies": { + "char-regex": "^2.0.0", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-watch-typeahead/node_modules/string-length/node_modules/char-regex": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-2.0.2.tgz", + "integrity": "sha512-cbGOjAptfM2LVmWhwRFHEKTPkLwNddVmuqYZQt895yXwAsWsXObCG+YN4DGQ/JBtT4GP1a1lPPdio2z413LmTg==", + "engines": { + "node": ">=12.20" + } + }, + "node_modules/jest-watch-typeahead/node_modules/strip-ansi": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.2.0.tgz", + "integrity": "sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w==", + "dependencies": { + "ansi-regex": "^6.2.2" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/jest-watch-typeahead/node_modules/strip-ansi/node_modules/ansi-regex": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.2.tgz", + "integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/jest-watcher": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.5.1.tgz", + "integrity": "sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==", + "dependencies": { + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "jest-util": "^27.5.1", + "string-length": "^4.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/jiti": { + "version": "1.21.7", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.7.tgz", + "integrity": "sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==", + "bin": { + "jiti": "bin/jiti.js" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "node_modules/js-yaml": { + "version": "3.14.2", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.2.tgz", + "integrity": "sha512-PMSmkqxr106Xa156c2M265Z+FTrPl+oxd/rgOQy2tijQeK5TxQ43psO1ZCwhVOSdnn+RzkzlRz/eY4BgJBYVpg==", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsdom": { + "version": "16.7.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz", + "integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==", + "dependencies": { + "abab": "^2.0.5", + "acorn": "^8.2.4", + "acorn-globals": "^6.0.0", + "cssom": "^0.4.4", + "cssstyle": "^2.3.0", + "data-urls": "^2.0.0", + "decimal.js": "^10.2.1", + "domexception": "^2.0.1", + "escodegen": "^2.0.0", + "form-data": "^3.0.0", + "html-encoding-sniffer": "^2.0.1", + "http-proxy-agent": "^4.0.1", + "https-proxy-agent": "^5.0.0", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.0", + "parse5": "6.0.1", + "saxes": "^5.0.1", + "symbol-tree": "^3.2.4", + "tough-cookie": "^4.0.0", + "w3c-hr-time": "^1.0.2", + "w3c-xmlserializer": "^2.0.0", + "webidl-conversions": "^6.1.0", + "whatwg-encoding": "^1.0.5", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.5.0", + "ws": "^7.4.6", + "xml-name-validator": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } + } + }, + "node_modules/jsesc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==" + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsonfile": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.2.0.tgz", + "integrity": "sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/jsonpath": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/jsonpath/-/jsonpath-1.3.0.tgz", + "integrity": "sha512-0kjkYHJBkAy50Z5QzArZ7udmvxrJzkpKYW27fiF//BrMY7TQibYLl+FYIXN2BiYmwMIVzSfD8aDRj6IzgBX2/w==", + "dependencies": { + "esprima": "1.2.5", + "static-eval": "2.1.1", + "underscore": "1.13.6" + } + }, + "node_modules/jsonpath/node_modules/esprima": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-1.2.5.tgz", + "integrity": "sha512-S9VbPDU0adFErpDai3qDkjq8+G05ONtKzcyNrPKg/ZKa+tf879nX2KexNU95b31UoTJjRLInNBHHHjFPoCd7lQ==", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/jsonpointer": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.1.tgz", + "integrity": "sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jsx-ast-utils": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", + "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "object.assign": "^4.1.4", + "object.values": "^1.1.6" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "engines": { + "node": ">=6" + } + }, + "node_modules/klona": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", + "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/language-subtag-registry": { + "version": "0.3.23", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.23.tgz", + "integrity": "sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==" + }, + "node_modules/language-tags": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.9.tgz", + "integrity": "sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==", + "dependencies": { + "language-subtag-registry": "^0.3.20" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/launch-editor": { + "version": "2.13.2", + "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.13.2.tgz", + "integrity": "sha512-4VVDnbOpLXy/s8rdRCSXb+zfMeFR0WlJWpET1iA9CQdlZDfwyLjUuGQzXU4VeOoey6AicSAluWan7Etga6Kcmg==", + "dependencies": { + "picocolors": "^1.1.1", + "shell-quote": "^1.8.3" + } + }, + "node_modules/leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "engines": { + "node": ">=6" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lilconfig": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "engines": { + "node": ">=10" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" + }, + "node_modules/loader-runner": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.1.tgz", + "integrity": "sha512-IWqP2SCPhyVFTBtRcgMHdzlf9ul25NwaFx4wCEH/KjAXuuHY4yNjvPXsBokp8jCB936PyWRaPKUNh8NvylLp2Q==", + "engines": { + "node": ">=6.11.5" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/lodash": { + "version": "4.17.23", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.23.tgz", + "integrity": "sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==" + }, + "node_modules/lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" + }, + "node_modules/lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==" + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" + }, + "node_modules/lodash.sortby": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", + "integrity": "sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==" + }, + "node_modules/lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==" + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/lucide-react": { + "version": "0.400.0", + "resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-0.400.0.tgz", + "integrity": "sha512-rpp7pFHh3Xd93KHixNgB0SqThMHpYNzsGUu69UaQbSZ75Q/J3m5t6EhKyMT3m4w2WOxmJ2mY0tD3vebnXqQryQ==", + "peerDependencies": { + "react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0" + } + }, + "node_modules/magic-string": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz", + "integrity": "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==", + "dependencies": { + "sourcemap-codec": "^1.4.8" + } + }, + "node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/make-dir/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "dependencies": { + "tmpl": "1.0.5" + } + }, + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/mdn-data": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", + "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==" + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/memfs": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz", + "integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==", + "dependencies": { + "fs-monkey": "^1.0.4" + }, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/merge-descriptors": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz", + "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==", + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/mini-css-extract-plugin": { + "version": "2.10.2", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.10.2.tgz", + "integrity": "sha512-AOSS0IdEB95ayVkxn5oGzNQwqAi2J0Jb/kKm43t7H73s8+f5873g0yuj0PNvK4dO75mu5DHg4nlgp4k6Kga8eg==", + "dependencies": { + "schema-utils": "^4.0.0", + "tapable": "^2.2.1" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "node_modules/minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" + }, + "node_modules/minimatch": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz", + "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "dependencies": { + "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + }, + "node_modules/multicast-dns": { + "version": "7.2.5", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", + "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", + "dependencies": { + "dns-packet": "^5.2.2", + "thunky": "^1.0.2" + }, + "bin": { + "multicast-dns": "cli.js" + } + }, + "node_modules/mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "dependencies": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, + "node_modules/nanoid": { + "version": "3.3.11", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" + }, + "node_modules/natural-compare-lite": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", + "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==" + }, + "node_modules/negotiator": { + "version": "0.6.4", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.4.tgz", + "integrity": "sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" + }, + "node_modules/no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "dependencies": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node_modules/node-exports-info": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/node-exports-info/-/node-exports-info-1.6.0.tgz", + "integrity": "sha512-pyFS63ptit/P5WqUkt+UUfe+4oevH+bFeIiPPdfb0pFeYEu/1ELnJu5l+5EcTKYL5M7zaAa7S8ddywgXypqKCw==", + "dependencies": { + "array.prototype.flatmap": "^1.3.3", + "es-errors": "^1.3.0", + "object.entries": "^1.1.9", + "semver": "^6.3.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/node-exports-info/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/node-forge": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.4.0.tgz", + "integrity": "sha512-LarFH0+6VfriEhqMMcLX2F7SwSXeWwnEAJEsYm5QKWchiVYVvJyV9v7UDvUv+w5HO23ZpQTXDv/GxdDdMyOuoQ==", + "engines": { + "node": ">= 6.13.0" + } + }, + "node_modules/node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==" + }, + "node_modules/node-releases": { + "version": "2.0.36", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.36.tgz", + "integrity": "sha512-TdC8FSgHz8Mwtw9g5L4gR/Sh9XhSP/0DEkQxfEFXOpiul5IiHgHan2VhYYb6agDSfp4KuvltmGApc8HMgUrIkA==" + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-url": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", + "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "dependencies": { + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } + }, + "node_modules/nwsapi": { + "version": "2.2.23", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.23.tgz", + "integrity": "sha512-7wfH4sLbt4M0gCDzGE6vzQBo0bfTKjU7Sfpqy/7gs1qBfYz2vEJH6vXcBKpO3+6Yu1telwd0t9HpyOoLEQQbIQ==" + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-hash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", + "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/object-inspect": { + "version": "1.13.4", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", + "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.assign": { + "version": "4.1.7", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.7.tgz", + "integrity": "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0", + "has-symbols": "^1.1.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.entries": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.9.tgz", + "integrity": "sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw==", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.fromentries": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz", + "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.getownpropertydescriptors": { + "version": "2.1.9", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.9.tgz", + "integrity": "sha512-mt8YM6XwsTTovI+kdZdHSxoyF2DI59up034orlC9NfweclcWOt7CVascNNLp6U+bjFVCVCIh9PwS76tDM/rH8g==", + "dependencies": { + "array.prototype.reduce": "^1.0.8", + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.24.0", + "es-object-atoms": "^1.1.1", + "gopd": "^1.2.0", + "safe-array-concat": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.groupby": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.3.tgz", + "integrity": "sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.values": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.1.tgz", + "integrity": "sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/obuf": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==" + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/on-headers": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.1.0.tgz", + "integrity": "sha512-737ZY3yNnXy37FHkQxPzt4UZ2UWPWiCZWLvFZ4fu5cueciegX0zGPnrlY6bwRg4FdQOe9YU8MkmJwGhoMybl8A==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/open": { + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", + "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", + "dependencies": { + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/own-keys": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/own-keys/-/own-keys-1.0.1.tgz", + "integrity": "sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==", + "dependencies": { + "get-intrinsic": "^1.2.6", + "object-keys": "^1.1.1", + "safe-push-apply": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-retry": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz", + "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==", + "dependencies": { + "@types/retry": "0.12.0", + "retry": "^0.13.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + }, + "node_modules/path-to-regexp": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.13.tgz", + "integrity": "sha512-A/AGNMFN3c8bOlvV9RreMdrv7jsmF9XIfDeCd87+I8RNg6s78BhJxMu69NEMHBSJFxKidViTEdruRwEk/WIKqA==" + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==" + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==" + }, + "node_modules/picomatch": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.2.tgz", + "integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pirates": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.7.tgz", + "integrity": "sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-up": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz", + "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==", + "dependencies": { + "find-up": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-up/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-up/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-up/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-up/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/possible-typed-array-names": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz", + "integrity": "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/postcss": { + "version": "8.5.8", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.8.tgz", + "integrity": "sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "nanoid": "^3.3.11", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-attribute-case-insensitive": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-5.0.2.tgz", + "integrity": "sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ==", + "dependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-browser-comments": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-browser-comments/-/postcss-browser-comments-4.0.0.tgz", + "integrity": "sha512-X9X9/WN3KIvY9+hNERUqX9gncsgBA25XaeR+jshHz2j8+sYyHktHw1JdKuMjeLpGktXidqDhA7b/qm1mrBDmgg==", + "engines": { + "node": ">=8" + }, + "peerDependencies": { + "browserslist": ">=4", + "postcss": ">=8" + } + }, + "node_modules/postcss-calc": { + "version": "8.2.4", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.2.4.tgz", + "integrity": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==", + "dependencies": { + "postcss-selector-parser": "^6.0.9", + "postcss-value-parser": "^4.2.0" + }, + "peerDependencies": { + "postcss": "^8.2.2" + } + }, + "node_modules/postcss-clamp": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/postcss-clamp/-/postcss-clamp-4.1.0.tgz", + "integrity": "sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": ">=7.6.0" + }, + "peerDependencies": { + "postcss": "^8.4.6" + } + }, + "node_modules/postcss-color-functional-notation": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-4.2.4.tgz", + "integrity": "sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-color-hex-alpha": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-8.0.4.tgz", + "integrity": "sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-color-rebeccapurple": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-7.1.1.tgz", + "integrity": "sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-colormin": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.1.tgz", + "integrity": "sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==", + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0", + "colord": "^2.9.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-convert-values": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz", + "integrity": "sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==", + "dependencies": { + "browserslist": "^4.21.4", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-custom-media": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-8.0.2.tgz", + "integrity": "sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "node_modules/postcss-custom-properties": { + "version": "12.1.11", + "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-12.1.11.tgz", + "integrity": "sha512-0IDJYhgU8xDv1KY6+VgUwuQkVtmYzRwu+dMjnmdMafXYv86SWqfxkc7qdDvWS38vsjaEtv8e0vGOUQrAiMBLpQ==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-custom-selectors": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-6.0.3.tgz", + "integrity": "sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg==", + "dependencies": { + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "node_modules/postcss-dir-pseudo-class": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-6.0.5.tgz", + "integrity": "sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA==", + "dependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-discard-comments": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz", + "integrity": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-discard-duplicates": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz", + "integrity": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-discard-empty": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz", + "integrity": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-discard-overridden": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz", + "integrity": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-double-position-gradients": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-3.1.2.tgz", + "integrity": "sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-env-function": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/postcss-env-function/-/postcss-env-function-4.0.6.tgz", + "integrity": "sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-flexbugs-fixes": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-5.0.2.tgz", + "integrity": "sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ==", + "peerDependencies": { + "postcss": "^8.1.4" + } + }, + "node_modules/postcss-focus-visible": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-6.0.4.tgz", + "integrity": "sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw==", + "dependencies": { + "postcss-selector-parser": "^6.0.9" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-focus-within": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-5.0.4.tgz", + "integrity": "sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ==", + "dependencies": { + "postcss-selector-parser": "^6.0.9" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-font-variant": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-5.0.0.tgz", + "integrity": "sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==", + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-gap-properties": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-3.0.5.tgz", + "integrity": "sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg==", + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-image-set-function": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-4.0.7.tgz", + "integrity": "sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-import": { + "version": "15.1.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", + "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", + "dependencies": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/postcss-initial": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-initial/-/postcss-initial-4.0.1.tgz", + "integrity": "sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==", + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/postcss-js": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.1.0.tgz", + "integrity": "sha512-oIAOTqgIo7q2EOwbhb8UalYePMvYoIeRY2YKntdpFQXNosSu3vLrniGgmH9OKs/qAkfoj5oB3le/7mINW1LCfw==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "camelcase-css": "^2.0.1" + }, + "engines": { + "node": "^12 || ^14 || >= 16" + }, + "peerDependencies": { + "postcss": "^8.4.21" + } + }, + "node_modules/postcss-lab-function": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-4.2.1.tgz", + "integrity": "sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w==", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-loader": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-6.2.1.tgz", + "integrity": "sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==", + "dependencies": { + "cosmiconfig": "^7.0.0", + "klona": "^2.0.5", + "semver": "^7.3.5" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "postcss": "^7.0.0 || ^8.0.1", + "webpack": "^5.0.0" + } + }, + "node_modules/postcss-logical": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-5.0.4.tgz", + "integrity": "sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==", + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-media-minmax": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-media-minmax/-/postcss-media-minmax-5.0.0.tgz", + "integrity": "sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-merge-longhand": { + "version": "5.1.7", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz", + "integrity": "sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==", + "dependencies": { + "postcss-value-parser": "^4.2.0", + "stylehacks": "^5.1.1" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-merge-rules": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.4.tgz", + "integrity": "sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==", + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0", + "cssnano-utils": "^3.1.0", + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-font-values": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz", + "integrity": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-gradients": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz", + "integrity": "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==", + "dependencies": { + "colord": "^2.9.1", + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-params": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz", + "integrity": "sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==", + "dependencies": { + "browserslist": "^4.21.4", + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-selectors": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz", + "integrity": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==", + "dependencies": { + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-modules-extract-imports": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.1.0.tgz", + "integrity": "sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==", + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-local-by-default": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.2.0.tgz", + "integrity": "sha512-5kcJm/zk+GJDSfw+V/42fJ5fhjL5YbFDl8nVdXkJPLLW+Vf9mTD5Xe0wqIaDnLuL2U6cDNpTr+UQ+v2HWIBhzw==", + "dependencies": { + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^7.0.0", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-local-by-default/node_modules/postcss-selector-parser": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.1.tgz", + "integrity": "sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-modules-scope": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.2.1.tgz", + "integrity": "sha512-m9jZstCVaqGjTAuny8MdgE88scJnCiQSlSrOWcTQgM2t32UBe+MUmFSO5t7VMSfAf/FJKImAxBav8ooCHJXCJA==", + "dependencies": { + "postcss-selector-parser": "^7.0.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-scope/node_modules/postcss-selector-parser": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.1.tgz", + "integrity": "sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "dependencies": { + "icss-utils": "^5.0.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-nested": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.2.0.tgz", + "integrity": "sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "postcss-selector-parser": "^6.1.1" + }, + "engines": { + "node": ">=12.0" + }, + "peerDependencies": { + "postcss": "^8.2.14" + } + }, + "node_modules/postcss-nesting": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-10.2.0.tgz", + "integrity": "sha512-EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA==", + "dependencies": { + "@csstools/selector-specificity": "^2.0.0", + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-normalize": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize/-/postcss-normalize-10.0.1.tgz", + "integrity": "sha512-+5w18/rDev5mqERcG3W5GZNMJa1eoYYNGo8gB7tEwaos0ajk3ZXAI4mHGcNT47NE+ZnZD1pEpUOFLvltIwmeJA==", + "dependencies": { + "@csstools/normalize.css": "*", + "postcss-browser-comments": "^4", + "sanitize.css": "*" + }, + "engines": { + "node": ">= 12" + }, + "peerDependencies": { + "browserslist": ">= 4", + "postcss": ">= 8" + } + }, + "node_modules/postcss-normalize-charset": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz", + "integrity": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-display-values": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz", + "integrity": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-positions": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz", + "integrity": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-repeat-style": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz", + "integrity": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-string": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz", + "integrity": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-timing-functions": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz", + "integrity": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-unicode": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz", + "integrity": "sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==", + "dependencies": { + "browserslist": "^4.21.4", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-url": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz", + "integrity": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==", + "dependencies": { + "normalize-url": "^6.0.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-whitespace": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz", + "integrity": "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-opacity-percentage": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/postcss-opacity-percentage/-/postcss-opacity-percentage-1.1.3.tgz", + "integrity": "sha512-An6Ba4pHBiDtyVpSLymUUERMo2cU7s+Obz6BTrS+gxkbnSBNKSuD0AVUc+CpBMrpVPKKfoVz0WQCX+Tnst0i4A==", + "funding": [ + { + "type": "kofi", + "url": "https://ko-fi.com/mrcgrtz" + }, + { + "type": "liberapay", + "url": "https://liberapay.com/mrcgrtz" + } + ], + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-ordered-values": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz", + "integrity": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==", + "dependencies": { + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-overflow-shorthand": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-3.0.4.tgz", + "integrity": "sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-page-break": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-3.0.4.tgz", + "integrity": "sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==", + "peerDependencies": { + "postcss": "^8" + } + }, + "node_modules/postcss-place": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/postcss-place/-/postcss-place-7.0.5.tgz", + "integrity": "sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-preset-env": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-7.8.3.tgz", + "integrity": "sha512-T1LgRm5uEVFSEF83vHZJV2z19lHg4yJuZ6gXZZkqVsqv63nlr6zabMH3l4Pc01FQCyfWVrh2GaUeCVy9Po+Aag==", + "dependencies": { + "@csstools/postcss-cascade-layers": "^1.1.1", + "@csstools/postcss-color-function": "^1.1.1", + "@csstools/postcss-font-format-keywords": "^1.0.1", + "@csstools/postcss-hwb-function": "^1.0.2", + "@csstools/postcss-ic-unit": "^1.0.1", + "@csstools/postcss-is-pseudo-class": "^2.0.7", + "@csstools/postcss-nested-calc": "^1.0.0", + "@csstools/postcss-normalize-display-values": "^1.0.1", + "@csstools/postcss-oklab-function": "^1.1.1", + "@csstools/postcss-progressive-custom-properties": "^1.3.0", + "@csstools/postcss-stepped-value-functions": "^1.0.1", + "@csstools/postcss-text-decoration-shorthand": "^1.0.0", + "@csstools/postcss-trigonometric-functions": "^1.0.2", + "@csstools/postcss-unset-value": "^1.0.2", + "autoprefixer": "^10.4.13", + "browserslist": "^4.21.4", + "css-blank-pseudo": "^3.0.3", + "css-has-pseudo": "^3.0.4", + "css-prefers-color-scheme": "^6.0.3", + "cssdb": "^7.1.0", + "postcss-attribute-case-insensitive": "^5.0.2", + "postcss-clamp": "^4.1.0", + "postcss-color-functional-notation": "^4.2.4", + "postcss-color-hex-alpha": "^8.0.4", + "postcss-color-rebeccapurple": "^7.1.1", + "postcss-custom-media": "^8.0.2", + "postcss-custom-properties": "^12.1.10", + "postcss-custom-selectors": "^6.0.3", + "postcss-dir-pseudo-class": "^6.0.5", + "postcss-double-position-gradients": "^3.1.2", + "postcss-env-function": "^4.0.6", + "postcss-focus-visible": "^6.0.4", + "postcss-focus-within": "^5.0.4", + "postcss-font-variant": "^5.0.0", + "postcss-gap-properties": "^3.0.5", + "postcss-image-set-function": "^4.0.7", + "postcss-initial": "^4.0.1", + "postcss-lab-function": "^4.2.1", + "postcss-logical": "^5.0.4", + "postcss-media-minmax": "^5.0.0", + "postcss-nesting": "^10.2.0", + "postcss-opacity-percentage": "^1.1.2", + "postcss-overflow-shorthand": "^3.0.4", + "postcss-page-break": "^3.0.4", + "postcss-place": "^7.0.5", + "postcss-pseudo-class-any-link": "^7.1.6", + "postcss-replace-overflow-wrap": "^4.0.0", + "postcss-selector-not": "^6.0.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-pseudo-class-any-link": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-7.1.6.tgz", + "integrity": "sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w==", + "dependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-reduce-initial": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.2.tgz", + "integrity": "sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==", + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-reduce-transforms": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz", + "integrity": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-replace-overflow-wrap": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-4.0.0.tgz", + "integrity": "sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==", + "peerDependencies": { + "postcss": "^8.0.3" + } + }, + "node_modules/postcss-selector-not": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-6.0.1.tgz", + "integrity": "sha512-1i9affjAe9xu/y9uqWH+tD4r6/hDaXJruk8xn2x1vzxC2U3J3LKO3zJW4CyxlNhA56pADJ/djpEwpH1RClI2rQ==", + "dependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz", + "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-svgo": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.1.0.tgz", + "integrity": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==", + "dependencies": { + "postcss-value-parser": "^4.2.0", + "svgo": "^2.7.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-svgo/node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "engines": { + "node": ">= 10" + } + }, + "node_modules/postcss-svgo/node_modules/css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "dependencies": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/postcss-svgo/node_modules/mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" + }, + "node_modules/postcss-svgo/node_modules/sax": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.6.0.tgz", + "integrity": "sha512-6R3J5M4AcbtLUdZmRv2SygeVaM7IhrLXu9BmnOGmmACak8fiUtOsYNWUS4uK7upbmHIBbLBeFeI//477BKLBzA==", + "engines": { + "node": ">=11.0.0" + } + }, + "node_modules/postcss-svgo/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss-svgo/node_modules/svgo": { + "version": "2.8.2", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.2.tgz", + "integrity": "sha512-TyzE4NVGLUFy+H/Uy4N6c3G0HEeprsVfge6Lmq+0FdQQ/zqoVYB62IsBZORsiL+o96s6ff/V6/3UQo/C0cgCAA==", + "dependencies": { + "commander": "^7.2.0", + "css-select": "^4.1.3", + "css-tree": "^1.1.3", + "csso": "^4.2.0", + "picocolors": "^1.0.0", + "sax": "^1.5.0", + "stable": "^0.1.8" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/postcss-unique-selectors": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz", + "integrity": "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==", + "dependencies": { + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/pretty-bytes": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", + "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pretty-error": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz", + "integrity": "sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==", + "dependencies": { + "lodash": "^4.17.20", + "renderkid": "^3.0.0" + } + }, + "node_modules/pretty-format": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", + "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", + "dependencies": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + }, + "node_modules/promise": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/promise/-/promise-8.3.0.tgz", + "integrity": "sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==", + "dependencies": { + "asap": "~2.0.6" + } + }, + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "node_modules/prop-types/node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/proxy-addr/node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/psl": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.15.0.tgz", + "integrity": "sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==", + "dependencies": { + "punycode": "^2.3.1" + }, + "funding": { + "url": "https://github.com/sponsors/lupomontero" + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/q": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", + "integrity": "sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==", + "deprecated": "You or someone you depend on is using Q, the JavaScript Promise library that gave JavaScript developers strong feelings about promises. They can almost certainly migrate to the native JavaScript promise now. Thank you literally everyone for joining me in this bet against the odds. Be excellent to each other.\n\n(For a CapTP with native promises, see @endo/eventual-send and @endo/captp)", + "engines": { + "node": ">=0.6.0", + "teleport": ">=0.2.0" + } + }, + "node_modules/qs": { + "version": "6.14.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.14.2.tgz", + "integrity": "sha512-V/yCWTTF7VJ9hIh18Ugr2zhJMP01MY7c5kh4J870L7imm6/DIzBsNLTXzMwUA3yZ5b/KBqLx8Kp3uRvd7xSe3Q==", + "dependencies": { + "side-channel": "^1.1.0" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==" + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/raf": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz", + "integrity": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==", + "dependencies": { + "performance-now": "^2.1.0" + } + }, + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.3.tgz", + "integrity": "sha512-s4VSOf6yN0rvbRZGxs8Om5CWj6seneMwK3oDb4lWDH0UPhWcxwOWw5+qk24bxq87szX1ydrwylIOp2uG1ojUpA==", + "dependencies": { + "bytes": "~3.1.2", + "http-errors": "~2.0.1", + "iconv-lite": "~0.4.24", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/raw-body/node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz", + "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==", + "dependencies": { + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-app-polyfill": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/react-app-polyfill/-/react-app-polyfill-3.0.0.tgz", + "integrity": "sha512-sZ41cxiU5llIB003yxxQBYrARBqe0repqPTTYBTmMqTz9szeBbE37BehCE891NZsmdZqqP+xWKdT3eo3vOzN8w==", + "dependencies": { + "core-js": "^3.19.2", + "object-assign": "^4.1.1", + "promise": "^8.1.0", + "raf": "^3.4.1", + "regenerator-runtime": "^0.13.9", + "whatwg-fetch": "^3.6.2" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/react-dev-utils": { + "version": "12.0.1", + "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-12.0.1.tgz", + "integrity": "sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==", + "dependencies": { + "@babel/code-frame": "^7.16.0", + "address": "^1.1.2", + "browserslist": "^4.18.1", + "chalk": "^4.1.2", + "cross-spawn": "^7.0.3", + "detect-port-alt": "^1.1.6", + "escape-string-regexp": "^4.0.0", + "filesize": "^8.0.6", + "find-up": "^5.0.0", + "fork-ts-checker-webpack-plugin": "^6.5.0", + "global-modules": "^2.0.0", + "globby": "^11.0.4", + "gzip-size": "^6.0.0", + "immer": "^9.0.7", + "is-root": "^2.1.0", + "loader-utils": "^3.2.0", + "open": "^8.4.0", + "pkg-up": "^3.1.0", + "prompts": "^2.4.2", + "react-error-overlay": "^6.0.11", + "recursive-readdir": "^2.2.2", + "shell-quote": "^1.7.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/react-dev-utils/node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/react-dev-utils/node_modules/loader-utils": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.3.1.tgz", + "integrity": "sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==", + "engines": { + "node": ">= 12.13.0" + } + }, + "node_modules/react-dev-utils/node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/react-dev-utils/node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/react-dev-utils/node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/react-dom": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz", + "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==", + "dependencies": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.2" + }, + "peerDependencies": { + "react": "^18.3.1" + } + }, + "node_modules/react-error-overlay": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.1.0.tgz", + "integrity": "sha512-SN/U6Ytxf1QGkw/9ve5Y+NxBbZM6Ht95tuXNMKs8EJyFa/Vy/+Co3stop3KBHARfn/giv+Lj1uUnTfOJ3moFEQ==" + }, + "node_modules/react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" + }, + "node_modules/react-refresh": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.11.0.tgz", + "integrity": "sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-scripts": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/react-scripts/-/react-scripts-5.0.1.tgz", + "integrity": "sha512-8VAmEm/ZAwQzJ+GOMLbBsTdDKOpuZh7RPs0UymvBR2vRk4iZWCskjbFnxqjrzoIvlNNRZ3QJFx6/qDSi6zSnaQ==", + "dependencies": { + "@babel/core": "^7.16.0", + "@pmmmwh/react-refresh-webpack-plugin": "^0.5.3", + "@svgr/webpack": "^5.5.0", + "babel-jest": "^27.4.2", + "babel-loader": "^8.2.3", + "babel-plugin-named-asset-import": "^0.3.8", + "babel-preset-react-app": "^10.0.1", + "bfj": "^7.0.2", + "browserslist": "^4.18.1", + "camelcase": "^6.2.1", + "case-sensitive-paths-webpack-plugin": "^2.4.0", + "css-loader": "^6.5.1", + "css-minimizer-webpack-plugin": "^3.2.0", + "dotenv": "^10.0.0", + "dotenv-expand": "^5.1.0", + "eslint": "^8.3.0", + "eslint-config-react-app": "^7.0.1", + "eslint-webpack-plugin": "^3.1.1", + "file-loader": "^6.2.0", + "fs-extra": "^10.0.0", + "html-webpack-plugin": "^5.5.0", + "identity-obj-proxy": "^3.0.0", + "jest": "^27.4.3", + "jest-resolve": "^27.4.2", + "jest-watch-typeahead": "^1.0.0", + "mini-css-extract-plugin": "^2.4.5", + "postcss": "^8.4.4", + "postcss-flexbugs-fixes": "^5.0.2", + "postcss-loader": "^6.2.1", + "postcss-normalize": "^10.0.1", + "postcss-preset-env": "^7.0.1", + "prompts": "^2.4.2", + "react-app-polyfill": "^3.0.0", + "react-dev-utils": "^12.0.1", + "react-refresh": "^0.11.0", + "resolve": "^1.20.0", + "resolve-url-loader": "^4.0.0", + "sass-loader": "^12.3.0", + "semver": "^7.3.5", + "source-map-loader": "^3.0.0", + "style-loader": "^3.3.1", + "tailwindcss": "^3.0.2", + "terser-webpack-plugin": "^5.2.5", + "webpack": "^5.64.4", + "webpack-dev-server": "^4.6.0", + "webpack-manifest-plugin": "^4.0.2", + "workbox-webpack-plugin": "^6.4.1" + }, + "bin": { + "react-scripts": "bin/react-scripts.js" + }, + "engines": { + "node": ">=14.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + }, + "peerDependencies": { + "react": ">= 16", + "typescript": "^3.2.1 || ^4" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "dependencies": { + "pify": "^2.3.0" + } + }, + "node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/recursive-readdir": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.3.tgz", + "integrity": "sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA==", + "dependencies": { + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/reflect.getprototypeof": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.10.tgz", + "integrity": "sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==", + "dependencies": { + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.9", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.7", + "get-proto": "^1.0.1", + "which-builtin-type": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" + }, + "node_modules/regenerate-unicode-properties": { + "version": "10.2.2", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.2.tgz", + "integrity": "sha512-m03P+zhBeQd1RGnYxrGyDAPpWX/epKirLrp8e3qevZdVkKtnCrjjWczIbYc8+xd6vcTStVlqfycTx1KR4LOr0g==", + "dependencies": { + "regenerate": "^1.4.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" + }, + "node_modules/regex-parser": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.3.1.tgz", + "integrity": "sha512-yXLRqatcCuKtVHsWrNg0JL3l1zGfdXeEvDa0bdu4tCDQw0RpMDZsqbkyRTUnKMR0tXF627V2oEWjBEaEdqTwtQ==" + }, + "node_modules/regexp.prototype.flags": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.4.tgz", + "integrity": "sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==", + "dependencies": { + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-errors": "^1.3.0", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "set-function-name": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/regexpu-core": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-6.4.0.tgz", + "integrity": "sha512-0ghuzq67LI9bLXpOX/ISfve/Mq33a4aFRzoQYhnnok1JOFpmE/A2TBGkNVenOGEeSBCjIiWcc6MVOG5HEQv0sA==", + "dependencies": { + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.2.2", + "regjsgen": "^0.8.0", + "regjsparser": "^0.13.0", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.2.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regjsgen": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.8.0.tgz", + "integrity": "sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==" + }, + "node_modules/regjsparser": { + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.13.0.tgz", + "integrity": "sha512-NZQZdC5wOE/H3UT28fVGL+ikOZcEzfMGk/c3iN9UGxzWHMa1op7274oyiUVrAG4B2EuFhus8SvkaYnhvW92p9Q==", + "dependencies": { + "jsesc": "~3.1.0" + }, + "bin": { + "regjsparser": "bin/parser" + } + }, + "node_modules/relateurl": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", + "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/renderkid": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-3.0.0.tgz", + "integrity": "sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==", + "dependencies": { + "css-select": "^4.1.3", + "dom-converter": "^0.2.0", + "htmlparser2": "^6.1.0", + "lodash": "^4.17.21", + "strip-ansi": "^6.0.1" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" + }, + "node_modules/resolve": { + "version": "1.22.11", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.11.tgz", + "integrity": "sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==", + "dependencies": { + "is-core-module": "^2.16.1", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-url-loader": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-4.0.0.tgz", + "integrity": "sha512-05VEMczVREcbtT7Bz+C+96eUO5HDNvdthIiMB34t7FcF8ehcu4wC0sSgPUubs3XW2Q3CNLJk/BJrCU9wVRymiA==", + "dependencies": { + "adjust-sourcemap-loader": "^4.0.0", + "convert-source-map": "^1.7.0", + "loader-utils": "^2.0.0", + "postcss": "^7.0.35", + "source-map": "0.6.1" + }, + "engines": { + "node": ">=8.9" + }, + "peerDependencies": { + "rework": "1.0.1", + "rework-visit": "1.0.0" + }, + "peerDependenciesMeta": { + "rework": { + "optional": true + }, + "rework-visit": { + "optional": true + } + } + }, + "node_modules/resolve-url-loader/node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" + }, + "node_modules/resolve-url-loader/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/resolve-url-loader/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/resolve-url-loader/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve.exports": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.1.tgz", + "integrity": "sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ==", + "engines": { + "node": ">=10" + } + }, + "node_modules/retry": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", + "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/reusify": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", + "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/rollup": { + "version": "2.80.0", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.80.0.tgz", + "integrity": "sha512-cIFJOD1DESzpjOBl763Kp1AH7UE/0fcdHe6rZXUdQ9c50uvgigvW97u3IcSeBwOkgqL/PXPBktBCh0KEu5L8XQ==", + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=10.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/rollup-plugin-terser": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz", + "integrity": "sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==", + "deprecated": "This package has been deprecated and is no longer maintained. Please use @rollup/plugin-terser", + "dependencies": { + "@babel/code-frame": "^7.10.4", + "jest-worker": "^26.2.1", + "serialize-javascript": "^4.0.0", + "terser": "^5.0.0" + }, + "peerDependencies": { + "rollup": "^2.0.0" + } + }, + "node_modules/rollup-plugin-terser/node_modules/jest-worker": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz", + "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/rollup-plugin-terser/node_modules/serialize-javascript": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", + "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-array-concat": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.3.tgz", + "integrity": "sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.2", + "get-intrinsic": "^1.2.6", + "has-symbols": "^1.1.0", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/safe-push-apply": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-push-apply/-/safe-push-apply-1.0.0.tgz", + "integrity": "sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==", + "dependencies": { + "es-errors": "^1.3.0", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-regex-test": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz", + "integrity": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "is-regex": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "node_modules/sanitize.css": { + "version": "13.0.0", + "resolved": "https://registry.npmjs.org/sanitize.css/-/sanitize.css-13.0.0.tgz", + "integrity": "sha512-ZRwKbh/eQ6w9vmTjkuG0Ioi3HBwPFce0O+v//ve+aOq1oeCy7jMV2qzzAlpsNuqpqCBjjriM1lbtZbF/Q8jVyA==" + }, + "node_modules/sass-loader": { + "version": "12.6.0", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-12.6.0.tgz", + "integrity": "sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==", + "dependencies": { + "klona": "^2.0.4", + "neo-async": "^2.6.2" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "fibers": ">= 3.1.0", + "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0", + "sass": "^1.3.0", + "sass-embedded": "*", + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "fibers": { + "optional": true + }, + "node-sass": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + } + } + }, + "node_modules/sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" + }, + "node_modules/saxes": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz", + "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==", + "dependencies": { + "xmlchars": "^2.2.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/scheduler": { + "version": "0.23.2", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz", + "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==", + "dependencies": { + "loose-envify": "^1.1.0" + } + }, + "node_modules/schema-utils": { + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.3.tgz", + "integrity": "sha512-eflK8wEtyOE6+hsaRVPxvUKYCpRgzLqDTb8krvAsRIwOGlHoSgYLgBXoubGgLd2fT41/OUYdb48v4k4WWHQurA==", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/schema-utils/node_modules/ajv": { + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.18.0.tgz", + "integrity": "sha512-PlXPeEWMXMZ7sPYOHqmDyCJzcfNrUr3fGNKtezX14ykXOEIvyK81d+qydx89KY5O71FKMPaQ2vBfBFI5NHR63A==", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/schema-utils/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/schema-utils/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "node_modules/select-hose": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", + "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==" + }, + "node_modules/selfsigned": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.4.1.tgz", + "integrity": "sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==", + "dependencies": { + "@types/node-forge": "^1.3.0", + "node-forge": "^1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver": { + "version": "7.7.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz", + "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/send": { + "version": "0.19.2", + "resolved": "https://registry.npmjs.org/send/-/send-0.19.2.tgz", + "integrity": "sha512-VMbMxbDeehAxpOtWJXlcUS5E8iXh6QmN+BkRX1GARS3wRaXEEgzCcB10gTQazO42tpNIya8xIyNx8fll1OFPrg==", + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "~0.5.2", + "http-errors": "~2.0.1", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "~2.4.1", + "range-parser": "~1.2.1", + "statuses": "~2.0.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/serialize-javascript": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", + "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/serve-index": { + "version": "1.9.2", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.2.tgz", + "integrity": "sha512-KDj11HScOaLmrPxl70KYNW1PksP4Nb/CLL2yvC+Qd2kHMPEEpfc4Re2e4FOay+bC/+XQl/7zAcWON3JVo5v3KQ==", + "dependencies": { + "accepts": "~1.3.8", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.8.0", + "mime-types": "~2.1.35", + "parseurl": "~1.3.3" + }, + "engines": { + "node": ">= 0.8.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/serve-index/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/serve-index/node_modules/depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index/node_modules/http-errors": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.8.1.tgz", + "integrity": "sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==", + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/serve-index/node_modules/statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-static": { + "version": "1.16.3", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.3.tgz", + "integrity": "sha512-x0RTqQel6g5SY7Lg6ZreMmsOzncHFU7nhnRWkKgWuMTu5NN0DR5oruckMqRvacAN9d5w6ARnRBXl9xhDCgfMeA==", + "dependencies": { + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "~0.19.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/set-function-length": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-function-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", + "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-proto": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/set-proto/-/set-proto-1.0.0.tgz", + "integrity": "sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "engines": { + "node": ">=8" + } + }, + "node_modules/shell-quote": { + "version": "1.8.3", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.3.tgz", + "integrity": "sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz", + "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==", + "dependencies": { + "es-errors": "^1.3.0", + "object-inspect": "^1.13.3", + "side-channel-list": "^1.0.0", + "side-channel-map": "^1.0.1", + "side-channel-weakmap": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-list": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz", + "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==", + "dependencies": { + "es-errors": "^1.3.0", + "object-inspect": "^1.13.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-map": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz", + "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-weakmap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", + "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3", + "side-channel-map": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" + }, + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/sockjs": { + "version": "0.3.24", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", + "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", + "dependencies": { + "faye-websocket": "^0.11.3", + "uuid": "^8.3.2", + "websocket-driver": "^0.7.4" + } + }, + "node_modules/source-list-map": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", + "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==" + }, + "node_modules/source-map": { + "version": "0.7.6", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.6.tgz", + "integrity": "sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==", + "engines": { + "node": ">= 12" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-loader": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-3.0.2.tgz", + "integrity": "sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==", + "dependencies": { + "abab": "^2.0.5", + "iconv-lite": "^0.6.3", + "source-map-js": "^1.0.1" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/source-map-support/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sourcemap-codec": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", + "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", + "deprecated": "Please use @jridgewell/sourcemap-codec instead" + }, + "node_modules/spdy": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", + "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", + "dependencies": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/spdy-transport": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", + "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", + "dependencies": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" + }, + "node_modules/stable": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", + "deprecated": "Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility" + }, + "node_modules/stack-utils": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", + "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/stack-utils/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/stackframe": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz", + "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==" + }, + "node_modules/static-eval": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/static-eval/-/static-eval-2.1.1.tgz", + "integrity": "sha512-MgWpQ/ZjGieSVB3eOJVs4OA2LT/q1vx98KPCTTQPzq/aLr0YUXTsgryTXr4SLfR0ZfUUCiedM9n/ABeDIyy4mA==", + "dependencies": { + "escodegen": "^2.1.0" + } + }, + "node_modules/statuses": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.2.tgz", + "integrity": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/stop-iteration-iterator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.1.0.tgz", + "integrity": "sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==", + "dependencies": { + "es-errors": "^1.3.0", + "internal-slot": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/string-natural-compare": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/string-natural-compare/-/string-natural-compare-3.0.1.tgz", + "integrity": "sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==" + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + }, + "node_modules/string.prototype.includes": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/string.prototype.includes/-/string.prototype.includes-2.0.1.tgz", + "integrity": "sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.3" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/string.prototype.matchall": { + "version": "4.0.12", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.12.tgz", + "integrity": "sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.6", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.6", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "internal-slot": "^1.1.0", + "regexp.prototype.flags": "^1.5.3", + "set-function-name": "^2.0.2", + "side-channel": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.repeat": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz", + "integrity": "sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==", + "dependencies": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.5" + } + }, + "node_modules/string.prototype.trim": { + "version": "1.2.10", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.10.tgz", + "integrity": "sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.2", + "define-data-property": "^1.1.4", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-object-atoms": "^1.0.0", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.9.tgz", + "integrity": "sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.2", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", + "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/stringify-object": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz", + "integrity": "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==", + "dependencies": { + "get-own-enumerable-property-symbols": "^3.0.0", + "is-obj": "^1.0.1", + "is-regexp": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-comments/-/strip-comments-2.0.1.tgz", + "integrity": "sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw==", + "engines": { + "node": ">=10" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/style-loader": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-3.3.4.tgz", + "integrity": "sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==", + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "node_modules/stylehacks": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.1.tgz", + "integrity": "sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==", + "dependencies": { + "browserslist": "^4.21.4", + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/sucrase": { + "version": "3.35.1", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.1.tgz", + "integrity": "sha512-DhuTmvZWux4H1UOnWMB3sk0sbaCVOoQZjv8u1rDoTV0HTdGem9hkAZtl4JZy8P2z4Bg0nT+YMeOFyVr4zcG5Tw==", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.2", + "commander": "^4.0.0", + "lines-and-columns": "^1.1.6", + "mz": "^2.7.0", + "pirates": "^4.0.1", + "tinyglobby": "^0.2.11", + "ts-interface-checker": "^0.1.9" + }, + "bin": { + "sucrase": "bin/sucrase", + "sucrase-node": "bin/sucrase-node" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/sucrase/node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-hyperlinks": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz", + "integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==", + "dependencies": { + "has-flag": "^4.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/svg-parser": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz", + "integrity": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==" + }, + "node_modules/svgo": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz", + "integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==", + "deprecated": "This SVGO version is no longer supported. Upgrade to v2.x.x.", + "dependencies": { + "chalk": "^2.4.1", + "coa": "^2.0.2", + "css-select": "^2.0.0", + "css-select-base-adapter": "^0.1.1", + "css-tree": "1.0.0-alpha.37", + "csso": "^4.0.2", + "js-yaml": "^3.13.1", + "mkdirp": "~0.5.1", + "object.values": "^1.1.0", + "sax": "~1.2.4", + "stable": "^0.1.8", + "unquote": "~1.1.1", + "util.promisify": "~1.0.0" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/svgo/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/svgo/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/svgo/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/svgo/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + }, + "node_modules/svgo/node_modules/css-select": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", + "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^3.2.1", + "domutils": "^1.7.0", + "nth-check": "^1.0.2" + } + }, + "node_modules/svgo/node_modules/css-what": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", + "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/svgo/node_modules/dom-serializer": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", + "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", + "dependencies": { + "domelementtype": "^2.0.1", + "entities": "^2.0.0" + } + }, + "node_modules/svgo/node_modules/domutils": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", + "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", + "dependencies": { + "dom-serializer": "0", + "domelementtype": "1" + } + }, + "node_modules/svgo/node_modules/domutils/node_modules/domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==" + }, + "node_modules/svgo/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/svgo/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/svgo/node_modules/nth-check": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", + "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", + "dependencies": { + "boolbase": "~1.0.0" + } + }, + "node_modules/svgo/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==" + }, + "node_modules/tailwindcss": { + "version": "3.4.19", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.19.tgz", + "integrity": "sha512-3ofp+LL8E+pK/JuPLPggVAIaEuhvIz4qNcf3nA1Xn2o/7fb7s/TYpHhwGDv1ZU3PkBluUVaF8PyCHcm48cKLWQ==", + "dependencies": { + "@alloc/quick-lru": "^5.2.0", + "arg": "^5.0.2", + "chokidar": "^3.6.0", + "didyoumean": "^1.2.2", + "dlv": "^1.1.3", + "fast-glob": "^3.3.2", + "glob-parent": "^6.0.2", + "is-glob": "^4.0.3", + "jiti": "^1.21.7", + "lilconfig": "^3.1.3", + "micromatch": "^4.0.8", + "normalize-path": "^3.0.0", + "object-hash": "^3.0.0", + "picocolors": "^1.1.1", + "postcss": "^8.4.47", + "postcss-import": "^15.1.0", + "postcss-js": "^4.0.1", + "postcss-load-config": "^4.0.2 || ^5.0 || ^6.0", + "postcss-nested": "^6.2.0", + "postcss-selector-parser": "^6.1.2", + "resolve": "^1.22.8", + "sucrase": "^3.35.0" + }, + "bin": { + "tailwind": "lib/cli.js", + "tailwindcss": "lib/cli.js" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/tailwindcss/node_modules/lilconfig": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz", + "integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antonk52" + } + }, + "node_modules/tailwindcss/node_modules/postcss-load-config": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-6.0.1.tgz", + "integrity": "sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "lilconfig": "^3.1.1" + }, + "engines": { + "node": ">= 18" + }, + "peerDependencies": { + "jiti": ">=1.21.0", + "postcss": ">=8.0.9", + "tsx": "^4.8.1", + "yaml": "^2.4.2" + }, + "peerDependenciesMeta": { + "jiti": { + "optional": true + }, + "postcss": { + "optional": true + }, + "tsx": { + "optional": true + }, + "yaml": { + "optional": true + } + } + }, + "node_modules/tailwindcss/node_modules/yaml": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.8.3.tgz", + "integrity": "sha512-AvbaCLOO2Otw/lW5bmh9d/WEdcDFdQp2Z2ZUH3pX9U2ihyUY0nvLv7J6TrWowklRGPYbB/IuIMfYgxaCPg5Bpg==", + "optional": true, + "peer": true, + "bin": { + "yaml": "bin.mjs" + }, + "engines": { + "node": ">= 14.6" + }, + "funding": { + "url": "https://github.com/sponsors/eemeli" + } + }, + "node_modules/tapable": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.2.tgz", + "integrity": "sha512-1MOpMXuhGzGL5TTCZFItxCc0AARf1EZFQkGqMm7ERKj8+Hgr5oLvJOVFcC+lRmR8hCe2S3jC4T5D7Vg/d7/fhA==", + "engines": { + "node": ">=6" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/temp-dir": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz", + "integrity": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/tempy": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tempy/-/tempy-0.6.0.tgz", + "integrity": "sha512-G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw==", + "dependencies": { + "is-stream": "^2.0.0", + "temp-dir": "^2.0.0", + "type-fest": "^0.16.0", + "unique-string": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/tempy/node_modules/type-fest": { + "version": "0.16.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.16.0.tgz", + "integrity": "sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/terminal-link": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", + "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", + "dependencies": { + "ansi-escapes": "^4.2.1", + "supports-hyperlinks": "^2.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/terser": { + "version": "5.46.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.46.1.tgz", + "integrity": "sha512-vzCjQO/rgUuK9sf8VJZvjqiqiHFaZLnOiimmUuOKODxWL8mm/xua7viT7aqX7dgPY60otQjUotzFMmCB4VdmqQ==", + "dependencies": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.15.0", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/terser-webpack-plugin": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.4.0.tgz", + "integrity": "sha512-Bn5vxm48flOIfkdl5CaD2+1CiUVbonWQ3KQPyP7/EuIl9Gbzq/gQFOzaMFUEgVjB1396tcK0SG8XcNJ/2kDH8g==", + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.25", + "jest-worker": "^27.4.5", + "schema-utils": "^4.3.0", + "terser": "^5.31.1" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "uglify-js": { + "optional": true + } + } + }, + "node_modules/terser/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==" + }, + "node_modules/thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "dependencies": { + "any-promise": "^1.0.0" + } + }, + "node_modules/thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "dependencies": { + "thenify": ">= 3.1.0 < 4" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/throat": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/throat/-/throat-6.0.2.tgz", + "integrity": "sha512-WKexMoJj3vEuK0yFEapj8y64V0A6xcuPuK9Gt1d0R+dzCSJc0lHqQytAbSB4cDAK0dWh4T0E2ETkoLE2WZ41OQ==" + }, + "node_modules/thunky": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==" + }, + "node_modules/tinyglobby": { + "version": "0.2.15", + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz", + "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==", + "dependencies": { + "fdir": "^6.5.0", + "picomatch": "^4.0.3" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/SuperchupuDev" + } + }, + "node_modules/tinyglobby/node_modules/fdir": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, + "node_modules/tinyglobby/node_modules/picomatch": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz", + "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/tmpl": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==" + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/tough-cookie": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.4.tgz", + "integrity": "sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==", + "dependencies": { + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.2.0", + "url-parse": "^1.5.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/tough-cookie/node_modules/universalify": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", + "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/tr46": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz", + "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", + "dependencies": { + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tryer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tryer/-/tryer-1.0.1.tgz", + "integrity": "sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==" + }, + "node_modules/ts-interface-checker": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==" + }, + "node_modules/tsconfig-paths": { + "version": "3.15.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", + "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==", + "dependencies": { + "@types/json5": "^0.0.29", + "json5": "^1.0.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + } + }, + "node_modules/tsconfig-paths/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/tsconfig-paths/node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==" + }, + "node_modules/tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "dependencies": { + "tslib": "^1.8.1" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + } + }, + "node_modules/tsutils/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "engines": { + "node": ">=4" + } + }, + "node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/typed-array-buffer": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz", + "integrity": "sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "is-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/typed-array-byte-length": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz", + "integrity": "sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==", + "dependencies": { + "call-bind": "^1.0.8", + "for-each": "^0.3.3", + "gopd": "^1.2.0", + "has-proto": "^1.2.0", + "is-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-byte-offset": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.4.tgz", + "integrity": "sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==", + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.8", + "for-each": "^0.3.3", + "gopd": "^1.2.0", + "has-proto": "^1.2.0", + "is-typed-array": "^1.1.15", + "reflect.getprototypeof": "^1.0.9" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-length": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.7.tgz", + "integrity": "sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==", + "dependencies": { + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "is-typed-array": "^1.1.13", + "possible-typed-array-names": "^1.0.0", + "reflect.getprototypeof": "^1.0.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typedarray-to-buffer": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", + "dependencies": { + "is-typedarray": "^1.0.0" + } + }, + "node_modules/typescript": { + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", + "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", + "peer": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=4.2.0" + } + }, + "node_modules/unbox-primitive": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.1.0.tgz", + "integrity": "sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==", + "dependencies": { + "call-bound": "^1.0.3", + "has-bigints": "^1.0.2", + "has-symbols": "^1.1.0", + "which-boxed-primitive": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/underscore": { + "version": "1.13.6", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.6.tgz", + "integrity": "sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A==" + }, + "node_modules/undici-types": { + "version": "7.18.2", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.18.2.tgz", + "integrity": "sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==" + }, + "node_modules/unicode-canonical-property-names-ecmascript": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz", + "integrity": "sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "dependencies": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-value-ecmascript": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.1.tgz", + "integrity": "sha512-JQ84qTuMg4nVkx8ga4A16a1epI9H6uTXAknqxkGF/aFfRLw1xC/Bp24HNLaZhHSkWd3+84t8iXnp1J0kYcZHhg==", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-property-aliases-ecmascript": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.2.0.tgz", + "integrity": "sha512-hpbDzxUY9BFwX+UeBnxv3Sh1q7HFxj48DTmXchNgRa46lO8uj3/1iEn3MiNUYTg1g9ctIqXCCERn8gYZhHC5lQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/unique-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", + "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", + "dependencies": { + "crypto-random-string": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/unquote": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz", + "integrity": "sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==" + }, + "node_modules/upath": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", + "engines": { + "node": ">=4", + "yarn": "*" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz", + "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.2.0", + "picocolors": "^1.1.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/url-parse": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", + "dependencies": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" + }, + "node_modules/util.promisify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz", + "integrity": "sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==", + "dependencies": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.2", + "has-symbols": "^1.0.1", + "object.getownpropertydescriptors": "^2.1.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/utila": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", + "integrity": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==" + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/v8-to-istanbul": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz", + "integrity": "sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0", + "source-map": "^0.7.3" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "node_modules/v8-to-istanbul/node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/w3c-hr-time": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", + "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", + "deprecated": "Use your platform's native performance.now() and performance.timeOrigin.", + "dependencies": { + "browser-process-hrtime": "^1.0.0" + } + }, + "node_modules/w3c-xmlserializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz", + "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==", + "dependencies": { + "xml-name-validator": "^3.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/walker": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", + "dependencies": { + "makeerror": "1.0.12" + } + }, + "node_modules/watchpack": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.5.1.tgz", + "integrity": "sha512-Zn5uXdcFNIA1+1Ei5McRd+iRzfhENPCe7LeABkJtNulSxjma+l7ltNx55BWZkRlwRnpOgHqxnjyaDgJnNXnqzg==", + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/wbuf": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", + "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", + "dependencies": { + "minimalistic-assert": "^1.0.0" + } + }, + "node_modules/webidl-conversions": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz", + "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==", + "engines": { + "node": ">=10.4" + } + }, + "node_modules/webpack": { + "version": "5.105.4", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.105.4.tgz", + "integrity": "sha512-jTywjboN9aHxFlToqb0K0Zs9SbBoW4zRUlGzI2tYNxVYcEi/IPpn+Xi4ye5jTLvX2YeLuic/IvxNot+Q1jMoOw==", + "dependencies": { + "@types/eslint-scope": "^3.7.7", + "@types/estree": "^1.0.8", + "@types/json-schema": "^7.0.15", + "@webassemblyjs/ast": "^1.14.1", + "@webassemblyjs/wasm-edit": "^1.14.1", + "@webassemblyjs/wasm-parser": "^1.14.1", + "acorn": "^8.16.0", + "acorn-import-phases": "^1.0.3", + "browserslist": "^4.28.1", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.20.0", + "es-module-lexer": "^2.0.0", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.11", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.3.1", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^4.3.3", + "tapable": "^2.3.0", + "terser-webpack-plugin": "^5.3.17", + "watchpack": "^2.5.1", + "webpack-sources": "^3.3.4" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-dev-middleware": { + "version": "5.3.4", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.4.tgz", + "integrity": "sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q==", + "dependencies": { + "colorette": "^2.0.10", + "memfs": "^3.4.3", + "mime-types": "^2.1.31", + "range-parser": "^1.2.1", + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/webpack-dev-server": { + "version": "4.15.2", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.15.2.tgz", + "integrity": "sha512-0XavAZbNJ5sDrCbkpWL8mia0o5WPOd2YGtxrEiZkBK9FjLppIUK2TgxK6qGD2P3hUXTJNNPVibrerKcx5WkR1g==", + "dependencies": { + "@types/bonjour": "^3.5.9", + "@types/connect-history-api-fallback": "^1.3.5", + "@types/express": "^4.17.13", + "@types/serve-index": "^1.9.1", + "@types/serve-static": "^1.13.10", + "@types/sockjs": "^0.3.33", + "@types/ws": "^8.5.5", + "ansi-html-community": "^0.0.8", + "bonjour-service": "^1.0.11", + "chokidar": "^3.5.3", + "colorette": "^2.0.10", + "compression": "^1.7.4", + "connect-history-api-fallback": "^2.0.0", + "default-gateway": "^6.0.3", + "express": "^4.17.3", + "graceful-fs": "^4.2.6", + "html-entities": "^2.3.2", + "http-proxy-middleware": "^2.0.3", + "ipaddr.js": "^2.0.1", + "launch-editor": "^2.6.0", + "open": "^8.0.9", + "p-retry": "^4.5.0", + "rimraf": "^3.0.2", + "schema-utils": "^4.0.0", + "selfsigned": "^2.1.1", + "serve-index": "^1.9.1", + "sockjs": "^0.3.24", + "spdy": "^4.0.2", + "webpack-dev-middleware": "^5.3.4", + "ws": "^8.13.0" + }, + "bin": { + "webpack-dev-server": "bin/webpack-dev-server.js" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.37.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "webpack": { + "optional": true + }, + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-dev-server/node_modules/ws": { + "version": "8.20.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.20.0.tgz", + "integrity": "sha512-sAt8BhgNbzCtgGbt2OxmpuryO63ZoDk/sqaB/znQm94T4fCEsy/yV+7CdC1kJhOU9lboAEU7R3kquuycDoibVA==", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/webpack-manifest-plugin": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/webpack-manifest-plugin/-/webpack-manifest-plugin-4.1.1.tgz", + "integrity": "sha512-YXUAwxtfKIJIKkhg03MKuiFAD72PlrqCiwdwO4VEXdRO5V0ORCNwaOwAZawPZalCbmH9kBDmXnNeQOw+BIEiow==", + "dependencies": { + "tapable": "^2.0.0", + "webpack-sources": "^2.2.0" + }, + "engines": { + "node": ">=12.22.0" + }, + "peerDependencies": { + "webpack": "^4.44.2 || ^5.47.0" + } + }, + "node_modules/webpack-manifest-plugin/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-manifest-plugin/node_modules/webpack-sources": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-2.3.1.tgz", + "integrity": "sha512-y9EI9AO42JjEcrTJFOYmVywVZdKVUfOvDUPsJea5GIr1JOEGFVqwlY2K098fFoIjOkDzHn2AjRvM8dsBZu+gCA==", + "dependencies": { + "source-list-map": "^2.0.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webpack-sources": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.3.4.tgz", + "integrity": "sha512-7tP1PdV4vF+lYPnkMR0jMY5/la2ub5Fc/8VQrrU+lXkiM6C4TjVfGw7iKfyhnTQOsD+6Q/iKw0eFciziRgD58Q==", + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webpack/node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/webpack/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "dependencies": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/whatwg-encoding": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", + "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", + "deprecated": "Use @exodus/bytes instead for a more spec-conformant and faster implementation", + "dependencies": { + "iconv-lite": "0.4.24" + } + }, + "node_modules/whatwg-encoding/node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/whatwg-fetch": { + "version": "3.6.20", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.20.tgz", + "integrity": "sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==" + }, + "node_modules/whatwg-mimetype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", + "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==" + }, + "node_modules/whatwg-url": { + "version": "8.7.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz", + "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==", + "dependencies": { + "lodash": "^4.7.0", + "tr46": "^2.1.0", + "webidl-conversions": "^6.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz", + "integrity": "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==", + "dependencies": { + "is-bigint": "^1.1.0", + "is-boolean-object": "^1.2.1", + "is-number-object": "^1.1.1", + "is-string": "^1.1.1", + "is-symbol": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-builtin-type": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.2.1.tgz", + "integrity": "sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==", + "dependencies": { + "call-bound": "^1.0.2", + "function.prototype.name": "^1.1.6", + "has-tostringtag": "^1.0.2", + "is-async-function": "^2.0.0", + "is-date-object": "^1.1.0", + "is-finalizationregistry": "^1.1.0", + "is-generator-function": "^1.0.10", + "is-regex": "^1.2.1", + "is-weakref": "^1.0.2", + "isarray": "^2.0.5", + "which-boxed-primitive": "^1.1.0", + "which-collection": "^1.0.2", + "which-typed-array": "^1.1.16" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-collection": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz", + "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==", + "dependencies": { + "is-map": "^2.0.3", + "is-set": "^2.0.3", + "is-weakmap": "^2.0.2", + "is-weakset": "^2.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-typed-array": { + "version": "1.1.20", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.20.tgz", + "integrity": "sha512-LYfpUkmqwl0h9A2HL09Mms427Q1RZWuOHsukfVcKRq9q95iQxdw0ix1JQrqbcDR9PH1QDwf5Qo8OZb5lksZ8Xg==", + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "for-each": "^0.3.5", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/workbox-background-sync": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-6.6.0.tgz", + "integrity": "sha512-jkf4ZdgOJxC9u2vztxLuPT/UjlH7m/nWRQ/MgGL0v8BJHoZdVGJd18Kck+a0e55wGXdqyHO+4IQTk0685g4MUw==", + "dependencies": { + "idb": "^7.0.1", + "workbox-core": "6.6.0" + } + }, + "node_modules/workbox-broadcast-update": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-6.6.0.tgz", + "integrity": "sha512-nm+v6QmrIFaB/yokJmQ/93qIJ7n72NICxIwQwe5xsZiV2aI93MGGyEyzOzDPVz5THEr5rC3FJSsO3346cId64Q==", + "dependencies": { + "workbox-core": "6.6.0" + } + }, + "node_modules/workbox-build": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-build/-/workbox-build-6.6.0.tgz", + "integrity": "sha512-Tjf+gBwOTuGyZwMz2Nk/B13Fuyeo0Q84W++bebbVsfr9iLkDSo6j6PST8tET9HYA58mlRXwlMGpyWO8ETJiXdQ==", + "dependencies": { + "@apideck/better-ajv-errors": "^0.3.1", + "@babel/core": "^7.11.1", + "@babel/preset-env": "^7.11.0", + "@babel/runtime": "^7.11.2", + "@rollup/plugin-babel": "^5.2.0", + "@rollup/plugin-node-resolve": "^11.2.1", + "@rollup/plugin-replace": "^2.4.1", + "@surma/rollup-plugin-off-main-thread": "^2.2.3", + "ajv": "^8.6.0", + "common-tags": "^1.8.0", + "fast-json-stable-stringify": "^2.1.0", + "fs-extra": "^9.0.1", + "glob": "^7.1.6", + "lodash": "^4.17.20", + "pretty-bytes": "^5.3.0", + "rollup": "^2.43.1", + "rollup-plugin-terser": "^7.0.0", + "source-map": "^0.8.0-beta.0", + "stringify-object": "^3.3.0", + "strip-comments": "^2.0.1", + "tempy": "^0.6.0", + "upath": "^1.2.0", + "workbox-background-sync": "6.6.0", + "workbox-broadcast-update": "6.6.0", + "workbox-cacheable-response": "6.6.0", + "workbox-core": "6.6.0", + "workbox-expiration": "6.6.0", + "workbox-google-analytics": "6.6.0", + "workbox-navigation-preload": "6.6.0", + "workbox-precaching": "6.6.0", + "workbox-range-requests": "6.6.0", + "workbox-recipes": "6.6.0", + "workbox-routing": "6.6.0", + "workbox-strategies": "6.6.0", + "workbox-streams": "6.6.0", + "workbox-sw": "6.6.0", + "workbox-window": "6.6.0" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/workbox-build/node_modules/@apideck/better-ajv-errors": { + "version": "0.3.7", + "resolved": "https://registry.npmjs.org/@apideck/better-ajv-errors/-/better-ajv-errors-0.3.7.tgz", + "integrity": "sha512-TajUJwGWbDwkCx/CZi7tRE8PVB7simCvKJfHUsSdvps+aTM/PDPP4gkLmKnc+x3CE//y9i/nj74GqdL/hwk7Iw==", + "dependencies": { + "jsonpointer": "^5.0.1", + "leven": "^3.1.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "ajv": ">=8" + } + }, + "node_modules/workbox-build/node_modules/ajv": { + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.18.0.tgz", + "integrity": "sha512-PlXPeEWMXMZ7sPYOHqmDyCJzcfNrUr3fGNKtezX14ykXOEIvyK81d+qydx89KY5O71FKMPaQ2vBfBFI5NHR63A==", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/workbox-build/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/workbox-build/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "node_modules/workbox-build/node_modules/source-map": { + "version": "0.8.0-beta.0", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz", + "integrity": "sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==", + "deprecated": "The work that was done in this beta branch won't be included in future versions", + "dependencies": { + "whatwg-url": "^7.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/workbox-build/node_modules/tr46": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", + "integrity": "sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/workbox-build/node_modules/webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", + "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==" + }, + "node_modules/workbox-build/node_modules/whatwg-url": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", + "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", + "dependencies": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + }, + "node_modules/workbox-cacheable-response": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-6.6.0.tgz", + "integrity": "sha512-JfhJUSQDwsF1Xv3EV1vWzSsCOZn4mQ38bWEBR3LdvOxSPgB65gAM6cS2CX8rkkKHRgiLrN7Wxoyu+TuH67kHrw==", + "deprecated": "workbox-background-sync@6.6.0", + "dependencies": { + "workbox-core": "6.6.0" + } + }, + "node_modules/workbox-core": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-core/-/workbox-core-6.6.0.tgz", + "integrity": "sha512-GDtFRF7Yg3DD859PMbPAYPeJyg5gJYXuBQAC+wyrWuuXgpfoOrIQIvFRZnQ7+czTIQjIr1DhLEGFzZanAT/3bQ==" + }, + "node_modules/workbox-expiration": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-6.6.0.tgz", + "integrity": "sha512-baplYXcDHbe8vAo7GYvyAmlS4f6998Jff513L4XvlzAOxcl8F620O91guoJ5EOf5qeXG4cGdNZHkkVAPouFCpw==", + "dependencies": { + "idb": "^7.0.1", + "workbox-core": "6.6.0" + } + }, + "node_modules/workbox-google-analytics": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-6.6.0.tgz", + "integrity": "sha512-p4DJa6OldXWd6M9zRl0H6vB9lkrmqYFkRQ2xEiNdBFp9U0LhsGO7hsBscVEyH9H2/3eZZt8c97NB2FD9U2NJ+Q==", + "deprecated": "It is not compatible with newer versions of GA starting with v4, as long as you are using GAv3 it should be ok, but the package is not longer being maintained", + "dependencies": { + "workbox-background-sync": "6.6.0", + "workbox-core": "6.6.0", + "workbox-routing": "6.6.0", + "workbox-strategies": "6.6.0" + } + }, + "node_modules/workbox-navigation-preload": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-6.6.0.tgz", + "integrity": "sha512-utNEWG+uOfXdaZmvhshrh7KzhDu/1iMHyQOV6Aqup8Mm78D286ugu5k9MFD9SzBT5TcwgwSORVvInaXWbvKz9Q==", + "dependencies": { + "workbox-core": "6.6.0" + } + }, + "node_modules/workbox-precaching": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-6.6.0.tgz", + "integrity": "sha512-eYu/7MqtRZN1IDttl/UQcSZFkHP7dnvr/X3Vn6Iw6OsPMruQHiVjjomDFCNtd8k2RdjLs0xiz9nq+t3YVBcWPw==", + "dependencies": { + "workbox-core": "6.6.0", + "workbox-routing": "6.6.0", + "workbox-strategies": "6.6.0" + } + }, + "node_modules/workbox-range-requests": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-6.6.0.tgz", + "integrity": "sha512-V3aICz5fLGq5DpSYEU8LxeXvsT//mRWzKrfBOIxzIdQnV/Wj7R+LyJVTczi4CQ4NwKhAaBVaSujI1cEjXW+hTw==", + "dependencies": { + "workbox-core": "6.6.0" + } + }, + "node_modules/workbox-recipes": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-recipes/-/workbox-recipes-6.6.0.tgz", + "integrity": "sha512-TFi3kTgYw73t5tg73yPVqQC8QQjxJSeqjXRO4ouE/CeypmP2O/xqmB/ZFBBQazLTPxILUQ0b8aeh0IuxVn9a6A==", + "dependencies": { + "workbox-cacheable-response": "6.6.0", + "workbox-core": "6.6.0", + "workbox-expiration": "6.6.0", + "workbox-precaching": "6.6.0", + "workbox-routing": "6.6.0", + "workbox-strategies": "6.6.0" + } + }, + "node_modules/workbox-routing": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-routing/-/workbox-routing-6.6.0.tgz", + "integrity": "sha512-x8gdN7VDBiLC03izAZRfU+WKUXJnbqt6PG9Uh0XuPRzJPpZGLKce/FkOX95dWHRpOHWLEq8RXzjW0O+POSkKvw==", + "dependencies": { + "workbox-core": "6.6.0" + } + }, + "node_modules/workbox-strategies": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-6.6.0.tgz", + "integrity": "sha512-eC07XGuINAKUWDnZeIPdRdVja4JQtTuc35TZ8SwMb1ztjp7Ddq2CJ4yqLvWzFWGlYI7CG/YGqaETntTxBGdKgQ==", + "dependencies": { + "workbox-core": "6.6.0" + } + }, + "node_modules/workbox-streams": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-streams/-/workbox-streams-6.6.0.tgz", + "integrity": "sha512-rfMJLVvwuED09CnH1RnIep7L9+mj4ufkTyDPVaXPKlhi9+0czCu+SJggWCIFbPpJaAZmp2iyVGLqS3RUmY3fxg==", + "dependencies": { + "workbox-core": "6.6.0", + "workbox-routing": "6.6.0" + } + }, + "node_modules/workbox-sw": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-sw/-/workbox-sw-6.6.0.tgz", + "integrity": "sha512-R2IkwDokbtHUE4Kus8pKO5+VkPHD2oqTgl+XJwh4zbF1HyjAbgNmK/FneZHVU7p03XUt9ICfuGDYISWG9qV/CQ==" + }, + "node_modules/workbox-webpack-plugin": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-webpack-plugin/-/workbox-webpack-plugin-6.6.0.tgz", + "integrity": "sha512-xNZIZHalboZU66Wa7x1YkjIqEy1gTR+zPM+kjrYJzqN7iurYZBctBLISyScjhkJKYuRrZUP0iqViZTh8rS0+3A==", + "dependencies": { + "fast-json-stable-stringify": "^2.1.0", + "pretty-bytes": "^5.4.1", + "upath": "^1.2.0", + "webpack-sources": "^1.4.3", + "workbox-build": "6.6.0" + }, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "webpack": "^4.4.0 || ^5.9.0" + } + }, + "node_modules/workbox-webpack-plugin/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/workbox-webpack-plugin/node_modules/webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", + "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", + "dependencies": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + } + }, + "node_modules/workbox-window": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-window/-/workbox-window-6.6.0.tgz", + "integrity": "sha512-L4N9+vka17d16geaJXXRjENLFldvkWy7JyGxElRD0JvBxvFEd8LOhr+uXCcar/NzAmIBRv9EZ+M+Qr4mOoBITw==", + "dependencies": { + "@types/trusted-types": "^2.0.2", + "workbox-core": "6.6.0" + } + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" + }, + "node_modules/write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "dependencies": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "node_modules/ws": { + "version": "7.5.10", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz", + "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==", + "engines": { + "node": ">=8.3.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/xml-name-validator": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", + "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==" + }, + "node_modules/xmlchars": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", + "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==" + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + }, + "node_modules/yaml": { + "version": "1.10.3", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.3.tgz", + "integrity": "sha512-vIYeF1u3CjlhAFekPPAk2h/Kv4T3mAkMox5OymRiJQB0spDP10LHvt+K7G9Ny6NuuMAb25/6n1qyUjAcGNf/AA==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "engines": { + "node": ">=10" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + } +} diff --git a/2026/day-35/practice-apps/react-app/package.json b/2026/day-35/practice-apps/react-app/package.json new file mode 100644 index 0000000000..a1acad4b68 --- /dev/null +++ b/2026/day-35/practice-apps/react-app/package.json @@ -0,0 +1,35 @@ +{ + "name": "react-notes-app", + "version": "1.0.0", + "private": true, + "dependencies": { + "lucide-react": "^0.400.0", + "react": "^18.3.1", + "react-dom": "^18.3.1", + "react-scripts": "^5.0.1" + }, + "scripts": { + "start": "react-scripts start", + "build": "react-scripts build", + "test": "react-scripts test", + "eject": "react-scripts eject" + }, + "eslintConfig": { + "extends": [ + "react-app", + "react-app/jest" + ] + }, + "browserslist": { + "production": [ + ">0.2%", + "not dead", + "not op_mini all" + ], + "development": [ + "last 1 chrome version", + "last 1 firefox version", + "last 1 safari version" + ] + } +} diff --git a/2026/day-35/practice-apps/react-app/public/index.html b/2026/day-35/practice-apps/react-app/public/index.html new file mode 100644 index 0000000000..4e06d30d53 --- /dev/null +++ b/2026/day-35/practice-apps/react-app/public/index.html @@ -0,0 +1,14 @@ + + + + + + + + Notes App + + + +
+ + diff --git a/2026/day-35/practice-apps/react-app/src/App.js b/2026/day-35/practice-apps/react-app/src/App.js new file mode 100644 index 0000000000..bc19c54615 --- /dev/null +++ b/2026/day-35/practice-apps/react-app/src/App.js @@ -0,0 +1,97 @@ +import { useState } from 'react'; + +const COLORS = ['#fef9c3', '#dbeafe', '#dcfce7', '#fce7f3', '#ede9fe']; + +function App() { + const [notes, setNotes] = useState([ + { id: 1, title: 'Docker Basics', body: 'Learn docker run, build, ps, images, rm commands.', color: COLORS[0], createdAt: new Date().toLocaleDateString() }, + { id: 2, title: 'React in Docker', body: 'Build with npm run build, serve with nginx or serve package.', color: COLORS[1], createdAt: new Date().toLocaleDateString() }, + ]); + const [title, setTitle] = useState(''); + const [body, setBody] = useState(''); + const [search, setSearch] = useState(''); + const [nextId, setNextId] = useState(3); + + const addNote = () => { + if (!title.trim() && !body.trim()) return; + const color = COLORS[nextId % COLORS.length]; + setNotes([{ id: nextId, title, body, color, createdAt: new Date().toLocaleDateString() }, ...notes]); + setNextId(nextId + 1); + setTitle(''); + setBody(''); + }; + + const deleteNote = (id) => setNotes(notes.filter(n => n.id !== id)); + + const filtered = notes.filter(n => + n.title.toLowerCase().includes(search.toLowerCase()) || + n.body.toLowerCase().includes(search.toLowerCase()) + ); + + return ( +
+
+

📝 Notes

+ setSearch(e.target.value)} + /> +
+ +
+ setTitle(e.target.value)} + /> +