Easy-Guacamole-Installer/guacamole_db_backup.sql
2024-04-16 12:27:19 +00:00

688 lines
263 KiB
SQL
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- MySQL dump 10.13 Distrib 8.0.35, for Linux (x86_64)
--
-- Host: localhost Database: guacamole_db
-- ------------------------------------------------------
-- Server version 8.0.35-0ubuntu0.22.04.1
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!50503 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `guacamole_connection`
--
DROP TABLE IF EXISTS `guacamole_connection`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `guacamole_connection` (
`connection_id` int NOT NULL AUTO_INCREMENT,
`connection_name` varchar(128) NOT NULL,
`parent_id` int DEFAULT NULL,
`protocol` varchar(32) NOT NULL,
`proxy_port` int DEFAULT NULL,
`proxy_hostname` varchar(512) DEFAULT NULL,
`proxy_encryption_method` enum('NONE','SSL') DEFAULT NULL,
`max_connections` int DEFAULT NULL,
`max_connections_per_user` int DEFAULT NULL,
`connection_weight` int DEFAULT NULL,
`failover_only` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`connection_id`),
UNIQUE KEY `connection_name_parent` (`connection_name`,`parent_id`),
KEY `guacamole_connection_ibfk_1` (`parent_id`),
CONSTRAINT `guacamole_connection_ibfk_1` FOREIGN KEY (`parent_id`) REFERENCES `guacamole_connection_group` (`connection_group_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `guacamole_connection`
--
LOCK TABLES `guacamole_connection` WRITE;
/*!40000 ALTER TABLE `guacamole_connection` DISABLE KEYS */;
INSERT INTO `guacamole_connection` VALUES (1,'Surfer+Writing tools Server',1,'rdp',NULL,NULL,NULL,NULL,NULL,NULL,0),(2,'Ahrefs 2nd server',1,'rdp',NULL,NULL,NULL,NULL,NULL,NULL,0),(3,'Ahrefs 1st server',1,'rdp',NULL,NULL,NULL,NULL,NULL,NULL,0),(4,'3.249.24.148',NULL,'ssh',NULL,NULL,NULL,NULL,NULL,NULL,0),(5,'freelance team',NULL,'rdp',NULL,NULL,NULL,NULL,NULL,NULL,0),(6,'freelance',NULL,'rdp',NULL,NULL,NULL,NULL,NULL,NULL,0);
/*!40000 ALTER TABLE `guacamole_connection` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `guacamole_connection_attribute`
--
DROP TABLE IF EXISTS `guacamole_connection_attribute`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `guacamole_connection_attribute` (
`connection_id` int NOT NULL,
`attribute_name` varchar(128) NOT NULL,
`attribute_value` varchar(4096) NOT NULL,
PRIMARY KEY (`connection_id`,`attribute_name`),
KEY `connection_id` (`connection_id`),
CONSTRAINT `guacamole_connection_attribute_ibfk_1` FOREIGN KEY (`connection_id`) REFERENCES `guacamole_connection` (`connection_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `guacamole_connection_attribute`
--
LOCK TABLES `guacamole_connection_attribute` WRITE;
/*!40000 ALTER TABLE `guacamole_connection_attribute` DISABLE KEYS */;
/*!40000 ALTER TABLE `guacamole_connection_attribute` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `guacamole_connection_group`
--
DROP TABLE IF EXISTS `guacamole_connection_group`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `guacamole_connection_group` (
`connection_group_id` int NOT NULL AUTO_INCREMENT,
`parent_id` int DEFAULT NULL,
`connection_group_name` varchar(128) NOT NULL,
`type` enum('ORGANIZATIONAL','BALANCING') NOT NULL DEFAULT 'ORGANIZATIONAL',
`max_connections` int DEFAULT NULL,
`max_connections_per_user` int DEFAULT NULL,
`enable_session_affinity` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`connection_group_id`),
UNIQUE KEY `connection_group_name_parent` (`connection_group_name`,`parent_id`),
KEY `guacamole_connection_group_ibfk_1` (`parent_id`),
CONSTRAINT `guacamole_connection_group_ibfk_1` FOREIGN KEY (`parent_id`) REFERENCES `guacamole_connection_group` (`connection_group_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `guacamole_connection_group`
--
LOCK TABLES `guacamole_connection_group` WRITE;
/*!40000 ALTER TABLE `guacamole_connection_group` DISABLE KEYS */;
INSERT INTO `guacamole_connection_group` VALUES (1,NULL,'GB.tools','ORGANIZATIONAL',NULL,NULL,0);
/*!40000 ALTER TABLE `guacamole_connection_group` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `guacamole_connection_group_attribute`
--
DROP TABLE IF EXISTS `guacamole_connection_group_attribute`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `guacamole_connection_group_attribute` (
`connection_group_id` int NOT NULL,
`attribute_name` varchar(128) NOT NULL,
`attribute_value` varchar(4096) NOT NULL,
PRIMARY KEY (`connection_group_id`,`attribute_name`),
KEY `connection_group_id` (`connection_group_id`),
CONSTRAINT `guacamole_connection_group_attribute_ibfk_1` FOREIGN KEY (`connection_group_id`) REFERENCES `guacamole_connection_group` (`connection_group_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `guacamole_connection_group_attribute`
--
LOCK TABLES `guacamole_connection_group_attribute` WRITE;
/*!40000 ALTER TABLE `guacamole_connection_group_attribute` DISABLE KEYS */;
/*!40000 ALTER TABLE `guacamole_connection_group_attribute` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `guacamole_connection_group_permission`
--
DROP TABLE IF EXISTS `guacamole_connection_group_permission`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `guacamole_connection_group_permission` (
`entity_id` int NOT NULL,
`connection_group_id` int NOT NULL,
`permission` enum('READ','UPDATE','DELETE','ADMINISTER') NOT NULL,
PRIMARY KEY (`entity_id`,`connection_group_id`,`permission`),
KEY `guacamole_connection_group_permission_ibfk_1` (`connection_group_id`),
CONSTRAINT `guacamole_connection_group_permission_entity` FOREIGN KEY (`entity_id`) REFERENCES `guacamole_entity` (`entity_id`) ON DELETE CASCADE,
CONSTRAINT `guacamole_connection_group_permission_ibfk_1` FOREIGN KEY (`connection_group_id`) REFERENCES `guacamole_connection_group` (`connection_group_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `guacamole_connection_group_permission`
--
LOCK TABLES `guacamole_connection_group_permission` WRITE;
/*!40000 ALTER TABLE `guacamole_connection_group_permission` DISABLE KEYS */;
INSERT INTO `guacamole_connection_group_permission` VALUES (1,1,'READ'),(1,1,'UPDATE'),(1,1,'DELETE'),(1,1,'ADMINISTER'),(3,1,'READ'),(4,1,'READ'),(5,1,'READ'),(6,1,'READ'),(7,1,'READ'),(8,1,'READ'),(9,1,'READ'),(10,1,'READ'),(11,1,'READ'),(12,1,'READ'),(13,1,'READ'),(14,1,'READ'),(15,1,'READ'),(16,1,'READ'),(17,1,'READ'),(18,1,'READ'),(19,1,'READ'),(20,1,'READ'),(21,1,'READ'),(22,1,'READ'),(23,1,'READ'),(24,1,'READ'),(25,1,'READ'),(26,1,'READ'),(27,1,'READ'),(28,1,'READ'),(29,1,'READ'),(32,1,'READ'),(33,1,'READ'),(34,1,'READ'),(35,1,'READ'),(36,1,'READ');
/*!40000 ALTER TABLE `guacamole_connection_group_permission` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `guacamole_connection_history`
--
DROP TABLE IF EXISTS `guacamole_connection_history`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `guacamole_connection_history` (
`history_id` int NOT NULL AUTO_INCREMENT,
`user_id` int DEFAULT NULL,
`username` varchar(128) NOT NULL,
`remote_host` varchar(256) DEFAULT NULL,
`connection_id` int DEFAULT NULL,
`connection_name` varchar(128) NOT NULL,
`sharing_profile_id` int DEFAULT NULL,
`sharing_profile_name` varchar(128) DEFAULT NULL,
`start_date` datetime NOT NULL,
`end_date` datetime DEFAULT NULL,
PRIMARY KEY (`history_id`),
KEY `user_id` (`user_id`),
KEY `connection_id` (`connection_id`),
KEY `sharing_profile_id` (`sharing_profile_id`),
KEY `start_date` (`start_date`),
KEY `end_date` (`end_date`),
KEY `connection_start_date` (`connection_id`,`start_date`),
CONSTRAINT `guacamole_connection_history_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `guacamole_user` (`user_id`) ON DELETE SET NULL,
CONSTRAINT `guacamole_connection_history_ibfk_2` FOREIGN KEY (`connection_id`) REFERENCES `guacamole_connection` (`connection_id`) ON DELETE SET NULL,
CONSTRAINT `guacamole_connection_history_ibfk_3` FOREIGN KEY (`sharing_profile_id`) REFERENCES `guacamole_sharing_profile` (`sharing_profile_id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=1744 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `guacamole_connection_history`
--
LOCK TABLES `guacamole_connection_history` WRITE;
/*!40000 ALTER TABLE `guacamole_connection_history` DISABLE KEYS */;
INSERT INTO `guacamole_connection_history` VALUES (1,2,'hema','172.70.90.167',1,'First Server',NULL,NULL,'2023-11-07 10:33:40','2023-11-07 10:33:52'),(2,2,'hema','172.70.90.167',2,'Second Server',NULL,NULL,'2023-11-07 10:35:46','2023-11-07 10:35:46'),(3,2,'hema','172.70.90.167',2,'Second Server',NULL,NULL,'2023-11-07 10:36:08','2023-11-07 10:46:56'),(4,2,'hema','172.70.90.167',3,'3rd seever',NULL,NULL,'2023-11-07 10:39:33','2023-11-07 10:46:56'),(5,2,'hema','172.70.90.167',3,'3rd seever',NULL,NULL,'2023-11-07 12:10:33','2023-11-07 12:10:46'),(6,2,'hema','172.70.90.167',2,'Second Server',NULL,NULL,'2023-11-07 12:11:06','2023-11-07 12:11:16'),(7,2,'hema','172.71.242.203',2,'Second Server',NULL,NULL,'2023-11-07 13:12:17','2023-11-07 13:25:49'),(8,6,'yagoman','172.64.238.64',1,'First Server',NULL,NULL,'2023-11-07 16:28:12','2023-11-07 16:36:18'),(9,4,'pablojoy','162.158.129.211',2,'Second Server',NULL,NULL,'2023-11-07 16:42:45','2023-11-07 16:43:15'),(10,4,'pablojoy','162.158.129.211',2,'Second Server',NULL,NULL,'2023-11-07 16:43:16','2023-11-07 16:44:54'),(11,4,'pablojoy','162.158.129.211',1,'First Server',NULL,NULL,'2023-11-07 16:45:00','2023-11-07 16:49:22'),(12,4,'pablojoy','162.158.129.211',3,'3rd seever',NULL,NULL,'2023-11-07 16:49:26','2023-11-07 16:51:16'),(13,4,'pablojoy','162.158.129.211',1,'First Server',NULL,NULL,'2023-11-07 16:53:16','2023-11-07 17:01:54'),(14,2,'hema','172.71.178.44',1,'First Server',NULL,NULL,'2023-11-07 17:14:45','2023-11-07 17:15:19'),(15,7,'test','172.69.194.14',1,'First Server',NULL,NULL,'2023-11-07 17:15:16','2023-11-07 17:16:12'),(16,3,'mazen','172.69.214.93',3,'3rd seever',NULL,NULL,'2023-11-07 17:15:48','2023-11-07 17:20:35'),(17,24,'szymon','162.158.102.166',3,'3rd seever',NULL,NULL,'2023-11-07 18:31:13','2023-11-07 18:34:42'),(18,24,'szymon','162.158.102.166',2,'Second Server',NULL,NULL,'2023-11-07 18:33:34','2023-11-07 18:35:20'),(19,24,'szymon','162.158.102.166',3,'3rd seever',NULL,NULL,'2023-11-07 18:35:36','2023-11-07 19:22:56'),(20,2,'hema','172.71.178.44',2,'Second Server',NULL,NULL,'2023-11-07 18:42:36','2023-11-07 18:49:31'),(21,24,'szymon','162.158.102.166',2,'Second Server',NULL,NULL,'2023-11-07 18:52:35','2023-11-07 19:22:55'),(22,2,'hema','172.71.178.44',1,'First Server',NULL,NULL,'2023-11-07 18:53:53','2023-11-07 18:54:39'),(23,24,'szymon','172.68.138.64',1,'First Server',NULL,NULL,'2023-11-07 19:23:01','2023-11-07 19:39:42'),(24,24,'szymon','162.158.102.166',3,'3rd seever',NULL,NULL,'2023-11-07 19:43:05','2023-11-07 19:47:26'),(25,11,'vipin','162.158.23.58',3,'3rd seever',NULL,NULL,'2023-11-08 01:39:32','2023-11-08 01:40:43'),(26,11,'vipin','162.158.23.58',3,'3rd seever',NULL,NULL,'2023-11-08 01:58:39','2023-11-08 01:59:18'),(27,18,'Fernando','108.162.210.245',1,'First Server',NULL,NULL,'2023-11-08 05:04:22','2023-11-08 05:20:09'),(28,8,'harouni','172.69.238.138',2,'Second Server',NULL,NULL,'2023-11-08 06:36:29','2023-11-08 06:44:58'),(29,4,'pablojoy','172.71.114.137',1,'First Server',NULL,NULL,'2023-11-08 13:25:06','2023-11-08 13:28:15'),(30,4,'pablojoy','172.71.114.137',2,'Second Server',NULL,NULL,'2023-11-08 13:28:25','2023-11-08 13:42:40'),(31,4,'pablojoy','172.71.115.48',2,'Second Server',NULL,NULL,'2023-11-08 15:17:05','2023-11-08 16:06:53'),(32,4,'pablojoy','172.71.115.48',2,'Second Server',NULL,NULL,'2023-11-08 16:20:23','2023-11-08 17:48:05'),(33,11,'vipin','162.158.62.237',1,'First Server',NULL,NULL,'2023-11-08 17:03:14','2023-11-08 18:22:51'),(34,4,'pablojoy','162.158.129.210',2,'Second Server',NULL,NULL,'2023-11-08 17:56:03','2023-11-08 17:57:24'),(35,24,'szymon','162.158.103.210',3,'3rd seever',NULL,NULL,'2023-11-08 18:22:49','2023-11-08 18:24:05'),(36,24,'szymon','162.158.103.210',1,'First Server',NULL,NULL,'2023-11-08 18:23:51','2023-11-08 18:35:14'),(37,2,'hema','162.158.194.143',3,'3rd seever',NULL,NULL,'2023-11-08 18:30:29','2023-11-08 18:35:14'),(38,24,'szymon','162.158.103.210',2,'Second Server',NULL,NULL,'2023-11-08 18:32:37','2023-11-08 18:46:59'),(39,2,'hema','162.158.194.143',1,'First Server',NULL,NULL,'2023-11-08 18:35:11','2023-11-08 18:36:19'),(40,24,'szymon','162.158.103.210',3,'3rd seever',NULL,NULL,'2023-11-08 18:35:11','2023-11-08 18:36:05'),(41,24,'szymon','162.158.103.210',3,'3rd seever',NULL,NULL,'2023-11-08 18:36:23','2023-11-08 19:15:21'),(42,24,'szymon','162.158.103.210',1,'First Server',NULL,NULL,'2023-11-08 19:07:19','2023-11-08 19:15:21'),(43,24,'szymon','172.68.138.199',3,'3rd seever',NULL,NULL,'2023-11-08 19:49:29','2023-11-08 19:50:12'),(44,24,'szymon','172.68.138.199',3,'3rd seever',NULL,NULL,'2023-11-08 19:50:26','2023-11-08 19:53:54'),(45,24,'szymon','172.68.138.199',1,'First Server',NULL,NULL,'2023-11-08 19:50:49','2023-11-08 20:15:46'),(46,11,'vipin','162.158.154.162',1,'First Server',NULL,NULL,'2023-11-09 10:55:40','2023-11-09 11:01:31'),(47,11,'vipin','162.158.154.162',1,'First Server',NULL,NULL,'2023-11-09 11:01:35','2023-11-09 11:02:12'),(48,11,'vipin','162.158.154.162',3,'3rd seever',NULL,NULL,'2023-11-09 11:02:33','2023-11-09 11:08:55'),(49,11,'vipin','162.158.154.162',3,'3rd seever',NULL,NULL,'2023-11-09 11:21:03','2023-11-09 12:00:41'),(50,11,'vipin','162.158.154.162',3,'3rd seever',NULL,NULL,'2023-11-09 12:11:17','2023-11-09 13:15:21'),(51,9,'jeff','108.162.241.195',1,'First Server',NULL,NULL,'2023-11-09 17:10:09','2023-11-09 17:20:19'),(52,3,'mazen','172.69.214.15',3,'3rd seever',NULL,NULL,'2023-11-10 01:53:23','2023-11-10 02:55:57'),(53,3,'mazen','172.69.214.96',3,'3rd seever',NULL,NULL,'2023-11-10 02:57:40','2023-11-10 03:13:55'),(54,5,'goutham','172.70.126.81',3,'3rd seever',NULL,NULL,'2023-11-10 03:35:37','2023-11-10 03:43:53'),(55,5,'goutham','172.70.126.81',3,'3rd seever',NULL,NULL,'2023-11-10 03:44:49','2023-11-10 03:46:09'),(56,8,'harouni','172.69.238.132',2,'Second Server',NULL,NULL,'2023-11-10 07:38:39','2023-11-10 07:41:23'),(57,24,'szymon','162.158.102.166',2,'Second Server',NULL,NULL,'2023-11-10 11:11:52','2023-11-10 11:48:17'),(58,9,'jeff','108.162.242.53',1,'First Server',NULL,NULL,'2023-11-10 17:17:28','2023-11-10 17:17:54'),(59,5,'goutham','172.70.178.67',3,'3rd seever',NULL,NULL,'2023-11-10 17:18:24','2023-11-10 17:24:00'),(60,9,'jeff','108.162.242.53',2,'Second Server',NULL,NULL,'2023-11-10 17:18:38','2023-11-10 19:01:11'),(61,11,'vipin','162.158.158.103',3,'3rd seever',NULL,NULL,'2023-11-10 17:23:57','2023-11-10 18:13:33'),(62,11,'vipin','162.158.158.103',3,'3rd seever',NULL,NULL,'2023-11-10 18:24:14','2023-11-10 18:32:08'),(63,11,'vipin','162.158.158.103',3,'3rd seever',NULL,NULL,'2023-11-10 18:43:34','2023-11-10 19:08:56'),(64,9,'jeff','108.162.242.53',2,'Second Server',NULL,NULL,'2023-11-10 19:01:26','2023-11-10 20:15:52'),(65,5,'goutham','172.69.59.8',3,'3rd seever',NULL,NULL,'2023-11-11 01:21:50','2023-11-11 03:06:04'),(66,16,'arbmaniac','172.71.26.76',1,'First Server',NULL,NULL,'2023-11-11 02:58:58','2023-11-11 04:46:42'),(67,16,'arbmaniac','172.70.114.206',2,'Second Server',NULL,NULL,'2023-11-11 02:59:32','2023-11-12 04:18:07'),(68,13,'fouad','172.69.214.97',3,'3rd seever',NULL,NULL,'2023-11-11 16:55:41','2023-11-11 16:57:02'),(69,6,'yagoman','172.64.236.58',1,'First Server',NULL,NULL,'2023-11-11 18:30:54','2023-11-11 19:05:08'),(70,6,'yagoman','172.64.236.58',1,'First Server',NULL,NULL,'2023-11-11 19:05:12','2023-11-11 19:12:04'),(71,6,'yagoman','172.64.236.58',1,'First Server',NULL,NULL,'2023-11-11 19:12:07','2023-11-11 19:12:42'),(72,24,'szymon','162.158.103.59',1,'First Server',NULL,NULL,'2023-11-11 19:15:24','2023-11-11 19:18:33'),(73,6,'yagoman','172.64.238.88',1,'First Server',NULL,NULL,'2023-11-11 23:45:08','2023-11-12 00:14:39'),(74,16,'arbmaniac','172.70.114.206',2,'Second Server',NULL,NULL,'2023-11-12 04:28:21','2023-11-12 07:56:44'),(75,9,'jeff','172.69.33.201',3,'3rd seever',NULL,NULL,'2023-11-12 07:56:05','2023-11-12 07:56:27'),(76,9,'jeff','172.69.33.201',2,'Second Server',NULL,NULL,'2023-11-12 07:56:41','2023-11-12 08:46:06'),(77,6,'yagoman','172.64.236.120',1,'First Server',NULL,NULL,'2023-11-12 10:11:51','2023-11-12 11:20:11'),(78,24,'szymon','162.158.103.232',3,'3rd seever',NULL,NULL,'2023-11-12 16:50:42','2023-11-12 16:53:16'),(79,24,'szymon','162.158.103.232',1,'First Server',NULL,NULL,'2023-11-12 16:52:02','2023-11-12 17:16:40'),(80,24,'szymon','162.158.103.232',1,'First Server',NULL,NULL,'2023-11-12 17:17:31','2023-11-12 18:17:52'),(81,24,'szymon','162.158.103.232',1,'First Server',NULL,NULL,'2023-11-12 18:18:08','2023-11-12 18:18:56'),(82,24,'szymon','162.158.102.75',1,'First Server',NULL,NULL,'2023-11-12 19:47:26','2023-11-12 20:31:32'),(83,6,'yagoman','188.114.111.183',1,'First Server',NULL,NULL,'2023-11-12 20:31:29','2023-11-12 20:39:25'),(84,24,'szymon','162.158.102.75',3,'3rd seever',NULL,NULL,'2023-11-12 20:37:07','2023-11-12 20:39:05'),(85,24,'szymon','162.158.102.75',1,'First Server',NULL,NULL,'2023-11-12 20:39:22','2023-11-12 20:41:00'),(86,6,'yagoman','188.114.111.183',1,'First Server',NULL,NULL,'2023-11-12 20:40:57','2023-11-12 20:46:55'),(87,24,'szymon','162.158.102.75',2,'Second Server',NULL,NULL,'2023-11-12 20:40:59','2023-11-12 20:48:37'),(88,24,'szymon','162.158.102.75',1,'First Server',NULL,NULL,'2023-11-12 20:46:52','2023-11-12 20:47:11'),(89,6,'yagoman','188.114.111.183',1,'First Server',NULL,NULL,'2023-11-12 20:47:07','2023-11-12 20:48:32'),(90,24,'szymon','162.158.102.75',3,'3rd seever',NULL,NULL,'2023-11-12 20:48:07','2023-11-12 20:48:35'),(91,24,'szymon','162.158.102.75',1,'First Server',NULL,NULL,'2023-11-12 20:48:30','2023-11-12 20:52:20'),(92,6,'yagoman','188.114.111.183',1,'First Server',NULL,NULL,'2023-11-12 20:52:18','2023-11-12 20:52:32'),(93,24,'szymon','162.158.102.75',1,'First Server',NULL,NULL,'2023-11-12 20:52:29','2023-11-12 20:52:36'),(94,6,'yagoman','188.114.111.183',1,'First Server',NULL,NULL,'2023-11-12 20:52:33','2023-11-12 20:52:59'),(95,24,'szymon','162.158.102.75',1,'First Server',NULL,NULL,'2023-11-12 20:52:56','2023-11-12 20:53:20'),(96,6,'yagoman','188.114.111.183',1,'First Server',NULL,NULL,'2023-11-12 20:53:01','2023-11-12 20:53:02'),(97,24,'szymon','162.158.102.75',3,'3rd seever',NULL,NULL,'2023-11-12 20:53:26','2023-11-12 20:54:05'),(98,24,'szymon','162.158.102.75',1,'First Server',NULL,NULL,'2023-11-12 20:53:44','2023-11-12 20:54:03'),(99,24,'szymon','162.158.102.75',2,'Second Server',NULL,NULL,'2023-11-12 20:54:00','2023-11-12 20:54:23'),(100,24,'szymon','162.158.102.75',1,'First Server',NULL,NULL,'2023-11-12 20:54:16','2023-11-12 20:54:40'),(101,24,'szymon','162.158.102.75',3,'3rd seever',NULL,NULL,'2023-11-12 20:54:42','2023-11-12 20:55:24'),(102,24,'szymon','162.158.102.75',3,'3rd seever',NULL,NULL,'2023-11-12 20:55:28','2023-11-12 20:55:58'),(103,24,'szymon','162.158.102.75',1,'First Server',NULL,NULL,'2023-11-12 20:55:45','2023-11-12 21:44:46'),(104,8,'harouni','172.69.238.135',2,'Second Server',NULL,NULL,'2023-11-13 05:58:04','2023-11-13 06:03:07'),(105,8,'harouni','172.69.238.135',2,'Second Server',NULL,NULL,'2023-11-13 06:03:20','2023-11-13 06:07:16'),(106,8,'harouni','172.69.238.135',2,'Second Server',NULL,NULL,'2023-11-13 06:07:17','2023-11-13 06:12:50'),(107,8,'harouni','172.69.238.135',2,'Second Server',NULL,NULL,'2023-11-13 06:12:57','2023-11-13 06:31:13'),(108,8,'harouni','172.69.238.135',2,'Second Server',NULL,NULL,'2023-11-13 06:48:36','2023-11-13 06:49:07'),(109,8,'harouni','172.69.238.135',2,'Second Server',NULL,NULL,'2023-11-13 07:02:36','2023-11-13 07:18:29'),(110,8,'harouni','172.69.238.135',2,'Second Server',NULL,NULL,'2023-11-13 07:49:19','2023-11-13 07:59:28'),(111,8,'harouni','172.69.238.135',2,'Second Server',NULL,NULL,'2023-11-13 08:10:20','2023-11-13 08:15:23'),(112,8,'harouni','172.69.238.135',2,'Second Server',NULL,NULL,'2023-11-13 08:26:19','2023-11-13 08:31:22'),(113,8,'harouni','172.69.238.135',2,'Second Server',NULL,NULL,'2023-11-13 08:56:27','2023-11-13 09:01:41'),(114,8,'harouni','172.69.238.135',2,'Second Server',NULL,NULL,'2023-11-13 09:12:34','2023-11-13 09:17:44'),(115,8,'harouni','172.69.238.135',2,'Second Server',NULL,NULL,'2023-11-13 09:18:01','2023-11-13 09:23:03'),(116,8,'harouni','172.69.238.135',2,'Second Server',NULL,NULL,'2023-11-13 09:33:28','2023-11-13 09:38:35'),(117,8,'harouni','172.69.238.135',2,'Second Server',NULL,NULL,'2023-11-13 09:49:28','2023-11-13 10:02:12'),(118,6,'yagoman','172.68.134.12',3,'3rd seever',NULL,NULL,'2023-11-13 11:11:24','2023-11-13 14:25:19'),(119,6,'yagoman','172.64.238.57',1,'First Server',NULL,NULL,'2023-11-13 11:15:45','2023-11-13 11:17:14'),(120,26,'zvone','108.162.221.87',1,'First Server',NULL,NULL,'2023-11-13 13:20:52','2023-11-13 14:02:59'),(121,4,'pablojoy','162.158.129.83',2,'Second Server',NULL,NULL,'2023-11-13 13:21:17','2023-11-13 13:30:07'),(122,3,'mazen','172.69.214.174',3,'3rd seever',NULL,NULL,'2023-11-13 14:25:16','2023-11-13 14:26:07'),(123,3,'mazen','172.69.214.174',3,'3rd seever',NULL,NULL,'2023-11-13 14:26:10','2023-11-13 17:14:28'),(124,6,'yagoman','188.114.111.136',1,'First Server',NULL,NULL,'2023-11-13 17:20:06','2023-11-13 17:49:15'),(125,3,'mazen','172.69.214.174',3,'3rd seever',NULL,NULL,'2023-11-13 17:25:32','2023-11-13 18:57:00'),(126,8,'harouni','172.69.238.133',2,'Second Server',NULL,NULL,'2023-11-13 17:35:42','2023-11-13 17:40:18'),(127,8,'harouni','172.69.238.133',2,'Second Server',NULL,NULL,'2023-11-13 17:41:21','2023-11-13 17:41:48'),(128,8,'harouni','172.69.238.133',2,'Second Server',NULL,NULL,'2023-11-13 17:52:10','2023-11-13 17:57:21'),(129,8,'harouni','172.69.238.133',2,'Second Server',NULL,NULL,'2023-11-13 18:08:24','2023-11-13 18:10:01'),(130,27,'tony','172.70.211.2',1,'First Server',NULL,NULL,'2023-11-13 18:22:43','2023-11-13 18:38:27'),(131,27,'tony','172.70.211.2',1,'First Server',NULL,NULL,'2023-11-13 18:40:39','2023-11-13 18:57:27'),(132,27,'tony','172.70.211.2',1,'First Server',NULL,NULL,'2023-11-13 19:04:04','2023-11-13 21:22:27'),(133,11,'vipin','162.158.154.167',2,'Second Server',NULL,NULL,'2023-11-14 04:55:42','2023-11-14 05:15:51'),(134,24,'szymon','162.158.103.162',3,'3rd seever',NULL,NULL,'2023-11-14 05:13:24','2023-11-14 05:16:51'),(135,24,'szymon','162.158.103.162',1,'First Server',NULL,NULL,'2023-11-14 05:14:03','2023-11-14 05:16:51'),(136,24,'szymon','162.158.103.162',2,'Second Server',NULL,NULL,'2023-11-14 05:15:48','2023-11-14 05:16:51'),(137,2,'hema','172.69.194.197',3,'3rd seever',NULL,NULL,'2023-11-14 06:42:12','2023-11-14 07:39:26'),(138,2,'hema','172.69.194.197',3,'3rd seever',NULL,NULL,'2023-11-14 07:59:20','2023-11-14 08:09:51'),(139,11,'vipin','162.158.163.236',2,'Second Server',NULL,NULL,'2023-11-14 08:24:06','2023-11-14 08:31:01'),(140,2,'hema','172.69.194.197',3,'3rd seever',NULL,NULL,'2023-11-14 08:30:08','2023-11-14 08:39:47'),(141,2,'hema','172.69.194.197',1,'First Server',NULL,NULL,'2023-11-14 08:39:54','2023-11-14 08:43:44'),(142,2,'hema','172.69.194.197',1,'First Server',NULL,NULL,'2023-11-14 08:43:52','2023-11-14 08:44:03'),(143,2,'hema','172.69.194.197',2,'Second Server',NULL,NULL,'2023-11-14 08:44:06','2023-11-14 08:44:13'),(144,11,'vipin','162.158.163.236',2,'Second Server',NULL,NULL,'2023-11-14 08:44:10','2023-11-14 08:44:23'),(145,2,'hema','172.69.194.197',2,'Second Server',NULL,NULL,'2023-11-14 08:44:20','2023-11-14 08:50:12'),(146,6,'yagoman','172.64.236.121',1,'First Server',NULL,NULL,'2023-11-14 09:41:54','2023-11-14 09:42:32'),(147,6,'yagoman','172.64.236.121',2,'Second Server',NULL,NULL,'2023-11-14 09:42:31','2023-11-14 09:44:03'),(148,6,'yagoman','172.64.236.121',3,'3rd seever',NULL,NULL,'2023-11-14 09:44:02','2023-11-14 10:11:33'),(149,26,'zvone','141.101.105.6',3,'3rd seever',NULL,NULL,'2023-11-14 10:11:30','2023-11-14 10:11:40'),(150,6,'yagoman','172.64.236.121',3,'3rd seever',NULL,NULL,'2023-11-14 10:11:36','2023-11-14 10:34:50'),(151,26,'zvone','141.101.105.6',1,'First Server',NULL,NULL,'2023-11-14 10:11:49','2023-11-14 10:12:48'),(152,11,'vipin','162.158.106.224',2,'Second Server',NULL,NULL,'2023-11-14 12:49:36','2023-11-14 13:02:49'),(153,11,'vipin','162.158.159.39',1,'First Server',NULL,NULL,'2023-11-14 12:50:25','2023-11-14 12:53:42'),(154,11,'vipin','162.158.159.39',3,'3rd seever',NULL,NULL,'2023-11-14 12:53:59','2023-11-14 13:01:29'),(155,11,'vipin','162.158.158.229',2,'Second Server',NULL,NULL,'2023-11-14 14:52:29','2023-11-14 16:13:32'),(156,6,'yagoman','172.64.238.89',3,'3rd seever',NULL,NULL,'2023-11-14 15:19:52','2023-11-14 16:20:45'),(157,11,'vipin','162.158.158.229',2,'Second Server',NULL,NULL,'2023-11-14 16:19:01','2023-11-14 17:02:47'),(158,6,'yagoman','172.64.238.89',3,'3rd seever',NULL,NULL,'2023-11-14 16:26:19','2023-11-14 18:12:33'),(159,24,'szymon','172.68.138.161',1,'First Server',NULL,NULL,'2023-11-14 17:11:22','2023-11-14 17:24:41'),(160,11,'vipin','162.158.158.229',2,'Second Server',NULL,NULL,'2023-11-14 17:13:00','2023-11-14 17:17:31'),(161,24,'szymon','172.68.138.161',2,'Second Server',NULL,NULL,'2023-11-14 17:17:28','2023-11-14 17:24:41'),(162,24,'szymon','172.68.138.161',2,'Second Server',NULL,NULL,'2023-11-14 17:24:56','2023-11-14 17:25:29'),(163,24,'szymon','172.68.138.161',2,'Second Server',NULL,NULL,'2023-11-14 17:28:45','2023-11-14 17:48:08'),(164,24,'szymon','172.68.138.160',1,'First Server',NULL,NULL,'2023-11-14 18:11:59','2023-11-14 18:12:27'),(165,24,'szymon','172.68.138.160',3,'3rd seever',NULL,NULL,'2023-11-14 18:12:29','2023-11-14 18:12:41'),(166,6,'yagoman','172.64.238.89',3,'3rd seever',NULL,NULL,'2023-11-14 18:12:37','2023-11-14 18:13:11'),(167,24,'szymon','172.68.138.160',3,'3rd seever',NULL,NULL,'2023-11-14 18:13:08','2023-11-14 18:13:21'),(168,6,'yagoman','172.64.238.89',3,'3rd seever',NULL,NULL,'2023-11-14 18:13:18','2023-11-14 18:13:28'),(169,24,'szymon','172.68.138.160',3,'3rd seever',NULL,NULL,'2023-11-14 18:13:25','2023-11-14 18:13:33'),(170,6,'yagoman','172.64.238.89',3,'3rd seever',NULL,NULL,'2023-11-14 18:13:30','2023-11-14 18:16:06'),(171,24,'szymon','172.68.138.160',1,'First Server',NULL,NULL,'2023-11-14 18:13:59','2023-11-14 18:14:18'),(172,24,'szymon','172.68.138.160',2,'Second Server',NULL,NULL,'2023-11-14 18:14:29','2023-11-14 20:35:03'),(173,24,'szymon','162.158.103.171',2,'Second Server',NULL,NULL,'2023-11-15 10:42:06','2023-11-15 13:35:43'),(174,6,'yagoman','172.68.134.31',3,'3rd seever',NULL,NULL,'2023-11-15 14:48:08','2023-11-15 14:58:27'),(175,6,'yagoman','172.68.134.31',3,'3rd seever',NULL,NULL,'2023-11-15 15:25:35','2023-11-15 15:51:26'),(176,20,'Matthew','141.101.105.138',1,'First Server',NULL,NULL,'2023-11-15 18:24:49','2023-11-15 21:13:42'),(177,20,'Matthew','141.101.105.138',2,'Second Server',NULL,NULL,'2023-11-15 18:25:24','2023-11-15 19:39:51'),(178,20,'Matthew','141.101.105.138',3,'3rd seever',NULL,NULL,'2023-11-15 18:44:44','2023-11-15 20:37:01'),(179,8,'harouni','172.69.238.132',2,'Second Server',NULL,NULL,'2023-11-15 19:39:49','2023-11-15 19:43:50'),(180,17,'cooley','172.71.99.26',2,'Second Server',NULL,NULL,'2023-11-15 19:48:44','2023-11-15 21:15:14'),(181,20,'Matthew','141.101.105.138',3,'3rd seever',NULL,NULL,'2023-11-15 20:47:40','2023-11-15 21:18:57'),(182,17,'cooley','172.71.99.26',2,'Second Server',NULL,NULL,'2023-11-15 21:15:29','2023-11-15 21:48:32'),(183,20,'Matthew','141.101.105.138',1,'First Server',NULL,NULL,'2023-11-15 21:24:40','2023-11-15 21:42:20'),(184,20,'Matthew','141.101.105.138',3,'3rd seever',NULL,NULL,'2023-11-15 21:29:40','2023-11-15 21:37:38'),(185,20,'Matthew','141.101.105.138',3,'3rd seever',NULL,NULL,'2023-11-15 21:48:40','2023-11-15 22:14:44'),(186,20,'Matthew','141.101.105.138',1,'First Server',NULL,NULL,'2023-11-15 21:52:40','2023-11-16 00:50:56'),(187,17,'cooley','172.71.99.26',2,'Second Server',NULL,NULL,'2023-11-15 21:59:22','2023-11-15 22:39:00'),(188,20,'Matthew','141.101.105.138',3,'3rd seever',NULL,NULL,'2023-11-15 22:24:40','2023-11-16 00:21:35'),(189,20,'Matthew','141.101.105.138',2,'Second Server',NULL,NULL,'2023-11-16 00:21:31','2023-11-16 03:08:08'),(190,20,'Matthew','141.101.105.138',1,'First Server',NULL,NULL,'2023-11-16 01:01:40','2023-11-16 03:08:08'),(191,10,'olga','162.158.239.74',3,'3rd seever',NULL,NULL,'2023-11-16 06:40:31','2023-11-16 06:47:20'),(192,10,'olga','162.158.239.74',3,'3rd seever',NULL,NULL,'2023-11-16 06:52:35','2023-11-16 07:21:05'),(193,10,'olga','162.158.239.74',3,'3rd seever',NULL,NULL,'2023-11-16 07:23:36','2023-11-16 07:29:52'),(194,10,'olga','162.158.239.74',3,'3rd seever',NULL,NULL,'2023-11-16 07:33:50','2023-11-16 08:40:26'),(195,10,'olga','162.158.239.74',3,'3rd seever',NULL,NULL,'2023-11-16 09:09:06','2023-11-16 10:54:17'),(196,20,'Matthew','108.162.220.84',1,'First Server',NULL,NULL,'2023-11-16 10:27:56','2023-11-16 10:55:38'),(197,20,'Matthew','108.162.220.84',2,'Second Server',NULL,NULL,'2023-11-16 10:28:19','2023-11-16 10:43:58'),(198,20,'Matthew','108.162.220.84',2,'Second Server',NULL,NULL,'2023-11-16 10:45:40','2023-11-16 10:48:30'),(199,10,'olga','162.158.239.17',1,'First Server',NULL,NULL,'2023-11-16 10:55:35','2023-11-16 11:01:59'),(200,20,'Matthew','108.162.220.84',2,'Second Server',NULL,NULL,'2023-11-16 10:57:25','2023-11-16 12:55:48'),(201,20,'Matthew','108.162.220.84',1,'First Server',NULL,NULL,'2023-11-16 11:01:56','2023-11-16 11:02:10'),(202,10,'olga','162.158.239.17',1,'First Server',NULL,NULL,'2023-11-16 11:02:06','2023-11-16 11:02:15'),(203,20,'Matthew','108.162.220.84',1,'First Server',NULL,NULL,'2023-11-16 11:02:12','2023-11-16 11:31:34'),(204,20,'Matthew','108.162.220.84',1,'First Server',NULL,NULL,'2023-11-16 11:41:36','2023-11-16 16:18:38'),(205,6,'yagoman','172.64.238.65',3,'3rd seever',NULL,NULL,'2023-11-16 11:54:16','2023-11-16 12:24:54'),(206,6,'yagoman','172.64.238.65',3,'3rd seever',NULL,NULL,'2023-11-16 12:24:57','2023-11-16 12:47:40'),(207,11,'vipin','172.70.114.109',2,'Second Server',NULL,NULL,'2023-11-16 12:55:45','2023-11-16 13:05:25'),(208,20,'Matthew','108.162.220.84',2,'Second Server',NULL,NULL,'2023-11-16 13:05:22','2023-11-16 13:06:15'),(209,11,'vipin','172.70.114.109',2,'Second Server',NULL,NULL,'2023-11-16 13:06:12','2023-11-16 13:09:45'),(210,20,'Matthew','108.162.220.84',2,'Second Server',NULL,NULL,'2023-11-16 13:53:27','2023-11-16 13:54:02'),(211,20,'Matthew','108.162.220.84',2,'Second Server',NULL,NULL,'2023-11-16 13:54:09','2023-11-16 16:13:18'),(212,20,'Matthew','108.162.220.84',2,'Second Server',NULL,NULL,'2023-11-16 16:13:19','2023-11-16 16:13:23'),(213,20,'Matthew','108.162.220.84',2,'Second Server',NULL,NULL,'2023-11-16 16:13:23','2023-11-16 16:17:48'),(214,20,'Matthew','108.162.220.84',2,'Second Server',NULL,NULL,'2023-11-16 16:17:49','2023-11-16 16:17:51'),(215,20,'Matthew','108.162.220.84',2,'Second Server',NULL,NULL,'2023-11-16 16:17:51','2023-11-16 16:18:50'),(216,20,'Matthew','108.162.220.84',2,'Second Server',NULL,NULL,'2023-11-16 16:18:50','2023-11-16 16:20:22'),(217,20,'Matthew','108.162.220.84',2,'Second Server',NULL,NULL,'2023-11-16 16:20:23','2023-11-16 16:20:33'),(218,20,'Matthew','108.162.220.84',2,'Second Server',NULL,NULL,'2023-11-16 16:20:34','2023-11-16 16:21:28'),(219,20,'Matthew','108.162.220.84',2,'Second Server',NULL,NULL,'2023-11-16 16:21:29','2023-11-16 16:24:13'),(220,20,'Matthew','108.162.220.84',2,'Second Server',NULL,NULL,'2023-11-16 16:24:14','2023-11-16 16:27:27'),(221,20,'Matthew','108.162.220.84',2,'Second Server',NULL,NULL,'2023-11-16 16:27:28','2023-11-16 16:27:33'),(222,20,'Matthew','108.162.220.84',2,'Second Server',NULL,NULL,'2023-11-16 16:27:34','2023-11-16 16:29:53'),(223,20,'Matthew','108.162.220.84',2,'Second Server',NULL,NULL,'2023-11-16 16:29:54','2023-11-16 16:30:01'),(224,20,'Matthew','108.162.220.84',2,'Second Server',NULL,NULL,'2023-11-16 16:30:02','2023-11-16 16:36:12'),(225,20,'Matthew','108.162.220.84',2,'Second Server',NULL,NULL,'2023-11-16 16:36:13','2023-11-16 16:36:15'),(226,20,'Matthew','108.162.220.84',2,'Second Server',NULL,NULL,'2023-11-16 16:36:16','2023-11-16 16:37:35'),(227,20,'Matthew','108.162.220.84',2,'Second Server',NULL,NULL,'2023-11-16 16:37:36','2023-11-16 16:39:15'),(228,20,'Matthew','108.162.220.84',2,'Second Server',NULL,NULL,'2023-11-16 16:39:16','2023-11-16 16:41:03'),(229,20,'Matthew','108.162.220.84',2,'Second Server',NULL,NULL,'2023-11-16 16:41:03','2023-11-16 16:41:05'),(230,20,'Matthew','108.162.220.84',2,'Second Server',NULL,NULL,'2023-11-16 16:41:06','2023-11-16 17:28:34'),(231,20,'Matthew','108.162.220.84',2,'Second Server',NULL,NULL,'2023-11-16 17:28:36','2023-11-16 17:28:38'),(232,20,'Matthew','108.162.220.84',2,'Second Server',NULL,NULL,'2023-11-16 17:28:39','2023-11-16 17:59:50'),(233,24,'szymon','162.158.103.142',2,'Second Server',NULL,NULL,'2023-11-16 17:59:47','2023-11-16 18:09:07'),(234,20,'Matthew','108.162.220.84',2,'Second Server',NULL,NULL,'2023-11-16 18:09:04','2023-11-16 18:09:16'),(235,24,'szymon','162.158.103.142',2,'Second Server',NULL,NULL,'2023-11-16 18:09:12','2023-11-16 18:09:45'),(236,20,'Matthew','108.162.220.84',2,'Second Server',NULL,NULL,'2023-11-16 18:09:43','2023-11-16 18:09:51'),(237,24,'szymon','162.158.103.142',2,'Second Server',NULL,NULL,'2023-11-16 18:09:48','2023-11-16 19:04:03'),(238,24,'szymon','162.158.103.142',1,'First Server',NULL,NULL,'2023-11-16 19:03:57','2023-11-16 19:07:05'),(239,24,'szymon','162.158.103.142',2,'Second Server',NULL,NULL,'2023-11-16 19:04:14','2023-11-16 19:33:41'),(240,20,'Matthew','172.70.51.149',2,'Second Server',NULL,NULL,'2023-11-16 23:21:38','2023-11-16 23:27:24'),(241,20,'Matthew','172.70.51.149',2,'Second Server',NULL,NULL,'2023-11-16 23:27:25','2023-11-16 23:27:30'),(242,20,'Matthew','172.70.51.149',2,'Second Server',NULL,NULL,'2023-11-16 23:27:31','2023-11-16 23:31:48'),(243,20,'Matthew','172.70.51.149',2,'Second Server',NULL,NULL,'2023-11-16 23:32:03','2023-11-17 00:42:10'),(244,17,'cooley','162.158.111.15',3,'3rd seever',NULL,NULL,'2023-11-17 00:06:49','2023-11-17 00:15:17'),(245,17,'cooley','162.158.111.15',1,'First Server',NULL,NULL,'2023-11-17 00:07:54','2023-11-17 00:15:17'),(246,17,'cooley','162.158.111.15',3,'3rd seever',NULL,NULL,'2023-11-17 00:15:30','2023-11-17 02:09:22'),(247,20,'Matthew','172.70.51.149',2,'Second Server',NULL,NULL,'2023-11-17 00:42:25','2023-11-17 01:39:25'),(248,20,'Matthew','172.70.51.149',2,'Second Server',NULL,NULL,'2023-11-17 01:39:27','2023-11-17 02:03:59'),(249,20,'Matthew','172.70.51.149',2,'Second Server',NULL,NULL,'2023-11-17 02:04:15','2023-11-17 02:16:25'),(250,20,'Matthew','172.70.51.149',2,'Second Server',NULL,NULL,'2023-11-17 02:16:39','2023-11-17 02:25:51'),(251,17,'cooley','162.158.111.15',3,'3rd seever',NULL,NULL,'2023-11-17 02:20:01','2023-11-17 02:37:52'),(252,20,'Matthew','172.70.51.149',2,'Second Server',NULL,NULL,'2023-11-17 02:25:52','2023-11-17 02:25:57'),(253,20,'Matthew','172.70.51.149',2,'Second Server',NULL,NULL,'2023-11-17 02:25:58','2023-11-17 05:29:45'),(254,17,'cooley','162.158.111.15',3,'3rd seever',NULL,NULL,'2023-11-17 02:48:01','2023-11-17 03:34:53'),(255,17,'cooley','162.158.111.15',1,'First Server',NULL,NULL,'2023-11-17 03:34:59','2023-11-17 04:19:36'),(256,17,'cooley','162.158.111.15',1,'First Server',NULL,NULL,'2023-11-17 04:19:38','2023-11-17 06:50:09'),(257,10,'olga','162.158.238.33',2,'Second Server',NULL,NULL,'2023-11-17 05:29:41','2023-11-17 05:40:59'),(258,17,'cooley','162.158.111.15',1,'First Server',NULL,NULL,'2023-11-17 06:50:25','2023-11-17 06:57:17'),(259,17,'cooley','162.158.111.15',1,'First Server',NULL,NULL,'2023-11-17 06:57:19','2023-11-17 08:36:51'),(260,10,'olga','162.158.239.74',3,'3rd seever',NULL,NULL,'2023-11-17 08:13:13','2023-11-17 09:08:54'),(261,26,'zvone','172.68.51.167',1,'First Server',NULL,NULL,'2023-11-17 09:33:31','2023-11-17 09:34:00'),(262,26,'zvone','172.68.51.167',2,'Second Server',NULL,NULL,'2023-11-17 09:33:57','2023-11-17 09:34:21'),(263,26,'zvone','172.68.51.167',3,'3rd seever',NULL,NULL,'2023-11-17 09:34:23','2023-11-17 09:34:41'),(264,26,'zvone','172.68.51.167',1,'First Server',NULL,NULL,'2023-11-17 09:34:44','2023-11-17 09:46:25'),(265,10,'olga','162.158.238.54',3,'3rd seever',NULL,NULL,'2023-11-17 11:34:01','2023-11-17 11:37:12'),(266,10,'olga','162.158.238.54',1,'First Server',NULL,NULL,'2023-11-17 11:37:55','2023-11-17 11:55:41'),(267,10,'olga','162.158.238.54',1,'First Server',NULL,NULL,'2023-11-17 12:08:00','2023-11-17 12:53:41'),(268,11,'vipin','162.158.189.33',3,'3rd seever',NULL,NULL,'2023-11-17 12:39:56','2023-11-17 12:51:10'),(269,20,'Matthew','141.101.105.5',2,'Second Server',NULL,NULL,'2023-11-17 13:18:21','2023-11-17 13:27:29'),(270,20,'Matthew','141.101.105.5',2,'Second Server',NULL,NULL,'2023-11-17 13:30:19','2023-11-17 14:20:27'),(271,10,'olga','162.158.238.54',1,'First Server',NULL,NULL,'2023-11-17 13:42:33','2023-11-17 13:53:18'),(272,20,'Matthew','141.101.105.5',2,'Second Server',NULL,NULL,'2023-11-17 14:20:28','2023-11-17 14:20:37'),(273,20,'Matthew','141.101.105.5',2,'Second Server',NULL,NULL,'2023-11-17 14:20:38','2023-11-17 15:59:43'),(274,20,'Matthew','141.101.105.5',2,'Second Server',NULL,NULL,'2023-11-17 15:59:45','2023-11-17 16:08:52'),(275,4,'pablojoy','162.158.129.83',2,'Second Server',NULL,NULL,'2023-11-17 16:08:49','2023-11-17 16:08:57'),(276,20,'Matthew','141.101.105.5',2,'Second Server',NULL,NULL,'2023-11-17 16:08:54','2023-11-17 16:09:03'),(277,20,'Matthew','141.101.105.5',2,'Second Server',NULL,NULL,'2023-11-17 16:09:05','2023-11-17 17:06:00'),(278,20,'Matthew','141.101.105.5',2,'Second Server',NULL,NULL,'2023-11-17 17:06:02','2023-11-17 19:22:49'),(279,20,'Matthew','141.101.105.5',2,'Second Server',NULL,NULL,'2023-11-17 19:33:37','2023-11-17 20:35:28'),(280,20,'Matthew','141.101.105.5',2,'Second Server',NULL,NULL,'2023-11-17 20:45:38','2023-11-17 22:30:53'),(281,20,'Matthew','141.101.105.5',2,'Second Server',NULL,NULL,'2023-11-17 22:40:38','2023-11-18 07:22:32'),(282,20,'Matthew','141.101.105.5',2,'Second Server',NULL,NULL,'2023-11-18 07:32:38','2023-11-18 07:48:03'),(283,20,'Matthew','141.101.105.5',2,'Second Server',NULL,NULL,'2023-11-18 07:58:38','2023-11-18 08:48:57'),(284,20,'Matthew','141.101.105.5',2,'Second Server',NULL,NULL,'2023-11-18 08:58:38','2023-11-18 09:12:08'),(285,20,'Matthew','141.101.105.5',2,'Second Server',NULL,NULL,'2023-11-18 09:22:38','2023-11-18 09:30:40'),(286,20,'Matthew','141.101.105.5',2,'Second Server',NULL,NULL,'2023-11-18 09:40:38','2023-11-18 11:31:54'),(287,20,'Matthew','141.101.105.5',2,'Second Server',NULL,NULL,'2023-11-18 11:41:38','2023-11-18 12:05:38'),(288,20,'Matthew','141.101.105.5',2,'Second Server',NULL,NULL,'2023-11-18 12:15:38','2023-11-18 12:16:29'),(289,20,'Matthew','141.101.105.5',2,'Second Server',NULL,NULL,'2023-11-18 12:26:38','2023-11-18 12:48:14'),(290,20,'Matthew','141.101.105.5',2,'Second Server',NULL,NULL,'2023-11-18 13:06:25','2023-11-18 14:55:34'),(291,24,'szymon','172.68.138.161',2,'Second Server',NULL,NULL,'2023-11-18 14:55:31','2023-11-18 15:03:38'),(292,20,'Matthew','141.101.105.5',2,'Second Server',NULL,NULL,'2023-11-18 15:09:56','2023-11-18 15:13:01'),(293,24,'szymon','172.68.138.161',2,'Second Server',NULL,NULL,'2023-11-18 15:12:57','2023-11-18 15:25:15'),(294,20,'Matthew','141.101.105.5',2,'Second Server',NULL,NULL,'2023-11-18 15:25:12','2023-11-18 15:25:49'),(295,24,'szymon','172.68.138.161',2,'Second Server',NULL,NULL,'2023-11-18 15:25:46','2023-11-18 15:25:55'),(296,20,'Matthew','141.101.105.5',2,'Second Server',NULL,NULL,'2023-11-18 15:25:52','2023-11-18 15:26:00'),(297,24,'szymon','172.68.138.161',2,'Second Server',NULL,NULL,'2023-11-18 15:25:57','2023-11-18 15:27:46'),(298,20,'Matthew','141.101.105.5',2,'Second Server',NULL,NULL,'2023-11-18 15:27:43','2023-11-18 15:40:26'),(299,24,'szymon','172.68.138.161',2,'Second Server',NULL,NULL,'2023-11-18 15:40:22','2023-11-18 15:55:01'),(300,24,'szymon','172.68.138.161',2,'Second Server',NULL,NULL,'2023-11-18 15:56:31','2023-11-18 15:59:04'),(301,24,'szymon','172.68.138.161',2,'Second Server',NULL,NULL,'2023-11-18 15:59:48','2023-11-18 16:00:12'),(302,20,'Matthew','141.101.105.5',2,'Second Server',NULL,NULL,'2023-11-18 16:00:06','2023-11-18 16:00:22'),(303,24,'szymon','172.68.138.161',2,'Second Server',NULL,NULL,'2023-11-18 16:00:19','2023-11-18 16:09:12'),(304,24,'szymon','172.68.138.161',2,'Second Server',NULL,NULL,'2023-11-18 16:09:23','2023-11-18 16:12:07'),(305,20,'Matthew','141.101.105.5',2,'Second Server',NULL,NULL,'2023-11-18 16:12:04','2023-11-18 16:12:49'),(306,24,'szymon','172.68.138.161',2,'Second Server',NULL,NULL,'2023-11-18 16:12:46','2023-11-18 16:22:37'),(307,24,'szymon','172.68.138.161',2,'Second Server',NULL,NULL,'2023-11-18 16:43:28','2023-11-18 16:54:21'),(308,24,'szymon','172.68.138.161',2,'Second Server',NULL,NULL,'2023-11-18 17:07:37','2023-11-18 17:25:13'),(309,20,'Matthew','141.101.105.72',2,'Second Server',NULL,NULL,'2023-11-18 17:28:11','2023-11-18 21:22:19'),(310,2,'hema','172.70.85.137',4,'3.249.24.148',NULL,NULL,'2023-11-18 19:18:16','2023-11-18 19:18:16'),(311,2,'hema','172.70.85.137',4,'3.249.24.148',NULL,NULL,'2023-11-18 19:18:59','2023-11-18 19:19:00'),(312,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-18 21:23:47','2023-11-19 05:53:25'),(313,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-19 05:53:42','2023-11-19 08:31:48'),(314,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-19 08:41:39','2023-11-19 08:48:12'),(315,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-19 08:58:39','2023-11-19 09:08:26'),(316,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-19 09:18:39','2023-11-19 15:03:50'),(317,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-19 15:03:51','2023-11-19 15:16:10'),(318,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-19 15:16:11','2023-11-19 15:18:22'),(319,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-19 15:18:23','2023-11-19 15:34:22'),(320,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-19 15:34:23','2023-11-19 15:34:26'),(321,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-19 15:34:27','2023-11-19 15:38:47'),(322,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-19 15:38:49','2023-11-19 15:38:55'),(323,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-19 15:38:56','2023-11-19 15:44:04'),(324,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-19 15:44:06','2023-11-19 15:44:09'),(325,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-19 15:44:10','2023-11-19 15:44:24'),(326,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-19 15:44:25','2023-11-19 15:44:26'),(327,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-19 15:44:27','2023-11-19 15:44:28'),(328,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-19 15:44:29','2023-11-19 17:42:28'),(329,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-19 17:42:30','2023-11-19 17:42:31'),(330,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-19 17:42:32','2023-11-19 18:03:19'),(331,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-19 18:03:20','2023-11-19 18:05:59'),(332,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-19 18:06:00','2023-11-19 18:06:03'),(333,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-19 18:06:04','2023-11-19 18:06:25'),(334,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-19 18:06:27','2023-11-19 18:06:45'),(335,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-19 18:06:46','2023-11-19 18:06:51'),(336,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-19 18:06:52','2023-11-19 18:07:06'),(337,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-19 18:07:10','2023-11-19 18:07:51'),(338,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-19 18:07:52','2023-11-19 18:08:00'),(339,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-19 18:08:00','2023-11-19 18:08:47'),(340,20,'Matthew','141.101.105.161',1,'First Server',NULL,NULL,'2023-11-19 18:08:53','2023-11-19 18:10:00'),(341,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-19 18:09:58','2023-11-19 18:17:12'),(342,20,'Matthew','141.101.105.161',1,'First Server',NULL,NULL,'2023-11-19 18:10:17','2023-11-19 18:21:46'),(343,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-19 18:21:49','2023-11-19 18:22:02'),(344,20,'Matthew','108.162.220.85',2,'Second Server',NULL,NULL,'2023-11-19 18:22:34','2023-11-19 19:12:07'),(345,20,'Matthew','108.162.220.85',2,'Second Server',NULL,NULL,'2023-11-19 19:12:33','2023-11-19 19:20:33'),(346,20,'Matthew','108.162.220.85',2,'Second Server',NULL,NULL,'2023-11-19 19:20:44','2023-11-19 19:47:49'),(347,20,'Matthew','108.162.220.85',2,'Second Server',NULL,NULL,'2023-11-19 19:47:56','2023-11-19 20:01:26'),(348,20,'Matthew','108.162.220.85',2,'Second Server',NULL,NULL,'2023-11-19 20:05:36','2023-11-20 06:23:06'),(349,20,'Matthew','108.162.220.85',2,'Second Server',NULL,NULL,'2023-11-20 06:33:40','2023-11-20 06:48:22'),(350,20,'Matthew','108.162.220.85',2,'Second Server',NULL,NULL,'2023-11-20 06:58:40','2023-11-20 07:42:44'),(351,20,'Matthew','108.162.220.85',2,'Second Server',NULL,NULL,'2023-11-20 07:42:45','2023-11-20 08:20:58'),(352,20,'Matthew','108.162.220.85',2,'Second Server',NULL,NULL,'2023-11-20 08:30:40','2023-11-20 16:22:32'),(353,20,'Matthew','108.162.220.85',1,'First Server',NULL,NULL,'2023-11-20 09:24:41','2023-11-20 09:31:20'),(354,20,'Matthew','108.162.220.85',1,'First Server',NULL,NULL,'2023-11-20 09:31:22','2023-11-20 17:01:47'),(355,4,'pablojoy','172.71.114.136',2,'Second Server',NULL,NULL,'2023-11-20 16:22:25','2023-11-20 16:33:14'),(356,4,'pablojoy','172.71.114.136',2,'Second Server',NULL,NULL,'2023-11-20 16:33:14','2023-11-20 16:40:09'),(357,20,'Matthew','108.162.220.85',1,'First Server',NULL,NULL,'2023-11-20 17:11:41','2023-11-20 18:13:51'),(358,24,'szymon','162.158.102.173',2,'Second Server',NULL,NULL,'2023-11-20 17:49:58','2023-11-20 18:07:58'),(359,20,'Matthew','108.162.220.85',1,'First Server',NULL,NULL,'2023-11-20 18:24:41','2023-11-21 00:35:55'),(360,2,'hema','172.70.85.187',3,'3rd seever',NULL,NULL,'2023-11-20 19:14:11','2023-11-20 19:14:45'),(361,24,'szymon','162.158.103.176',2,'Second Server',NULL,NULL,'2023-11-20 20:43:22','2023-11-20 20:54:39'),(362,20,'Matthew','108.162.220.85',1,'First Server',NULL,NULL,'2023-11-21 00:46:41','2023-11-21 02:33:30'),(363,20,'Matthew','108.162.220.85',1,'First Server',NULL,NULL,'2023-11-21 02:43:41','2023-11-21 03:03:23'),(364,20,'Matthew','108.162.220.85',1,'First Server',NULL,NULL,'2023-11-21 03:13:41','2023-11-21 06:19:26'),(365,20,'Matthew','108.162.220.85',1,'First Server',NULL,NULL,'2023-11-21 06:29:41','2023-11-21 07:01:46'),(366,10,'olga','162.158.238.32',3,'3rd seever',NULL,NULL,'2023-11-21 06:40:34','2023-11-21 07:39:58'),(367,20,'Matthew','108.162.220.85',1,'First Server',NULL,NULL,'2023-11-21 07:11:41','2023-11-21 07:24:20'),(368,20,'Matthew','108.162.220.85',1,'First Server',NULL,NULL,'2023-11-21 07:34:41','2023-11-21 07:44:15'),(369,20,'Matthew','108.162.220.85',1,'First Server',NULL,NULL,'2023-11-21 07:49:46','2023-11-21 08:03:14'),(370,20,'Matthew','108.162.220.85',1,'First Server',NULL,NULL,'2023-11-21 08:13:42','2023-11-21 10:53:27'),(371,10,'olga','162.158.238.32',3,'3rd seever',NULL,NULL,'2023-11-21 08:32:38','2023-11-21 09:14:16'),(372,20,'Matthew','108.162.220.85',2,'Second Server',NULL,NULL,'2023-11-21 09:36:40','2023-11-21 09:50:49'),(373,20,'Matthew','108.162.220.85',1,'First Server',NULL,NULL,'2023-11-21 11:03:42','2023-11-21 11:08:34'),(374,20,'Matthew','108.162.220.85',1,'First Server',NULL,NULL,'2023-11-21 11:18:42','2023-11-21 11:46:33'),(375,20,'Matthew','108.162.220.85',1,'First Server',NULL,NULL,'2023-11-21 11:56:42','2023-11-21 12:04:08'),(376,20,'Matthew','108.162.220.85',1,'First Server',NULL,NULL,'2023-11-21 12:14:42','2023-11-21 12:31:17'),(377,20,'Matthew','108.162.220.85',1,'First Server',NULL,NULL,'2023-11-21 12:41:42','2023-11-21 13:05:44'),(378,20,'Matthew','108.162.220.85',1,'First Server',NULL,NULL,'2023-11-21 13:15:42','2023-11-21 14:04:01'),(379,20,'Matthew','108.162.220.85',1,'First Server',NULL,NULL,'2023-11-21 14:14:42','2023-11-21 17:29:47'),(380,6,'yagoman','172.64.238.64',3,'3rd seever',NULL,NULL,'2023-11-21 15:37:31','2023-11-21 15:38:40'),(381,6,'yagoman','172.64.238.64',3,'3rd seever',NULL,NULL,'2023-11-21 15:38:43','2023-11-21 19:42:56'),(382,20,'Matthew','108.162.220.85',2,'Second Server',NULL,NULL,'2023-11-21 15:48:10','2023-11-21 17:06:39'),(383,20,'Matthew','108.162.220.85',2,'Second Server',NULL,NULL,'2023-11-21 17:17:42','2023-11-21 17:29:54'),(384,20,'Matthew','108.162.220.85',2,'Second Server',NULL,NULL,'2023-11-21 17:39:42','2023-11-21 19:56:53'),(385,20,'Matthew','108.162.220.85',1,'First Server',NULL,NULL,'2023-11-21 17:39:42','2023-11-21 17:45:19'),(386,20,'Matthew','108.162.220.85',1,'First Server',NULL,NULL,'2023-11-21 17:55:42','2023-11-21 20:20:56'),(387,6,'yagoman','172.64.238.64',3,'3rd seever',NULL,NULL,'2023-11-21 19:53:53','2023-11-21 22:59:48'),(388,20,'Matthew','108.162.220.85',2,'Second Server',NULL,NULL,'2023-11-21 20:07:42','2023-11-21 22:09:55'),(389,20,'Matthew','108.162.220.85',1,'First Server',NULL,NULL,'2023-11-21 20:31:42','2023-11-21 22:15:47'),(390,20,'Matthew','108.162.220.85',2,'Second Server',NULL,NULL,'2023-11-21 22:20:42','2023-11-22 00:19:56'),(391,20,'Matthew','108.162.220.85',1,'First Server',NULL,NULL,'2023-11-21 22:25:42','2023-11-22 06:17:09'),(392,6,'yagoman','172.64.238.64',3,'3rd seever',NULL,NULL,'2023-11-21 23:10:53','2023-11-21 23:33:44'),(393,6,'yagoman','172.64.238.64',3,'3rd seever',NULL,NULL,'2023-11-21 23:33:44','2023-11-21 23:46:01'),(394,20,'Matthew','108.162.220.85',2,'Second Server',NULL,NULL,'2023-11-22 00:30:42','2023-11-22 00:36:49'),(395,20,'Matthew','108.162.220.85',2,'Second Server',NULL,NULL,'2023-11-22 00:47:42','2023-11-22 07:59:17'),(396,20,'Matthew','108.162.220.85',1,'First Server',NULL,NULL,'2023-11-22 06:27:43','2023-11-22 06:31:11'),(397,20,'Matthew','108.162.220.85',1,'First Server',NULL,NULL,'2023-11-22 06:41:43','2023-11-22 06:57:46'),(398,20,'Matthew','108.162.220.85',1,'First Server',NULL,NULL,'2023-11-22 07:07:43','2023-11-22 07:14:54'),(399,20,'Matthew','108.162.220.85',1,'First Server',NULL,NULL,'2023-11-22 07:24:43','2023-11-22 07:59:17'),(400,20,'Matthew','108.162.220.85',2,'Second Server',NULL,NULL,'2023-11-22 08:09:43','2023-11-22 08:23:20'),(401,20,'Matthew','108.162.220.85',1,'First Server',NULL,NULL,'2023-11-22 08:09:43','2023-11-22 08:23:20'),(402,20,'Matthew','108.162.220.85',2,'Second Server',NULL,NULL,'2023-11-22 08:33:43','2023-11-22 08:58:35'),(403,20,'Matthew','108.162.220.85',1,'First Server',NULL,NULL,'2023-11-22 08:33:43','2023-11-22 10:01:47'),(404,20,'Matthew','108.162.220.85',2,'Second Server',NULL,NULL,'2023-11-22 09:08:43','2023-11-22 10:01:47'),(405,20,'Matthew','108.162.220.85',1,'First Server',NULL,NULL,'2023-11-22 10:11:43','2023-11-22 10:51:09'),(406,20,'Matthew','108.162.220.85',2,'Second Server',NULL,NULL,'2023-11-22 10:11:43','2023-11-22 10:53:24'),(407,20,'Matthew','108.162.220.85',1,'First Server',NULL,NULL,'2023-11-22 11:01:43','2023-11-22 11:56:10'),(408,20,'Matthew','108.162.220.85',2,'Second Server',NULL,NULL,'2023-11-22 11:03:43','2023-11-22 11:06:16'),(409,4,'pablojoy','172.71.114.10',2,'Second Server',NULL,NULL,'2023-11-22 11:06:14','2023-11-22 11:41:13'),(410,20,'Matthew','108.162.220.85',1,'First Server',NULL,NULL,'2023-11-22 12:06:43','2023-11-22 12:28:08'),(411,20,'Matthew','108.162.220.85',1,'First Server',NULL,NULL,'2023-11-22 12:38:43','2023-11-22 14:46:46'),(412,10,'olga','162.158.222.93',2,'Second Server',NULL,NULL,'2023-11-22 13:07:15','2023-11-22 13:07:33'),(413,10,'olga','162.158.222.93',3,'3rd seever',NULL,NULL,'2023-11-22 13:07:50','2023-11-22 16:19:20'),(414,4,'pablojoy','162.158.129.83',2,'Second Server',NULL,NULL,'2023-11-22 13:50:12','2023-11-22 13:59:54'),(415,4,'pablojoy','162.158.129.83',2,'Second Server',NULL,NULL,'2023-11-22 14:22:12','2023-11-22 14:25:46'),(416,20,'Matthew','108.162.220.85',1,'First Server',NULL,NULL,'2023-11-22 14:56:43','2023-11-22 16:54:12'),(417,24,'szymon','162.158.103.73',2,'Second Server',NULL,NULL,'2023-11-22 16:53:43','2023-11-22 16:56:42'),(418,24,'szymon','162.158.103.73',1,'First Server',NULL,NULL,'2023-11-22 16:54:03','2023-11-22 16:54:54'),(419,24,'szymon','162.158.103.73',1,'First Server',NULL,NULL,'2023-11-22 16:54:56','2023-11-22 16:54:57'),(420,24,'szymon','162.158.103.73',1,'First Server',NULL,NULL,'2023-11-22 16:54:58','2023-11-22 16:54:58'),(421,24,'szymon','162.158.103.73',1,'First Server',NULL,NULL,'2023-11-22 16:54:59','2023-11-22 16:54:59'),(422,24,'szymon','162.158.103.73',1,'First Server',NULL,NULL,'2023-11-22 16:55:00','2023-11-22 16:56:41'),(423,24,'szymon','162.158.103.73',3,'3rd seever',NULL,NULL,'2023-11-22 16:56:09','2023-11-22 16:59:42'),(424,8,'harouni','172.69.238.130',2,'Second Server',NULL,NULL,'2023-11-22 18:04:55','2023-11-22 18:23:31'),(425,8,'harouni','172.69.238.130',2,'Second Server',NULL,NULL,'2023-11-22 18:23:51','2023-11-22 18:36:09'),(426,8,'harouni','172.69.238.130',2,'Second Server',NULL,NULL,'2023-11-22 19:08:17','2023-11-22 19:11:07'),(427,8,'harouni','172.69.238.130',2,'Second Server',NULL,NULL,'2023-11-22 19:11:08','2023-11-22 19:11:36'),(428,8,'harouni','172.69.238.130',2,'Second Server',NULL,NULL,'2023-11-22 19:11:37','2023-11-22 19:12:49'),(429,8,'harouni','172.69.238.130',2,'Second Server',NULL,NULL,'2023-11-22 19:12:50','2023-11-22 19:18:50'),(430,8,'harouni','172.69.238.130',2,'Second Server',NULL,NULL,'2023-11-22 20:05:18','2023-11-22 20:09:15'),(431,8,'harouni','162.158.22.235',2,'Second Server',NULL,NULL,'2023-11-22 21:14:50','2023-11-22 21:24:24'),(432,8,'harouni','162.158.22.235',2,'Second Server',NULL,NULL,'2023-11-22 21:26:25','2023-11-22 21:27:24'),(433,8,'harouni','162.158.22.235',2,'Second Server',NULL,NULL,'2023-11-22 21:27:41','2023-11-22 21:28:08'),(434,8,'harouni','162.158.22.235',2,'Second Server',NULL,NULL,'2023-11-22 21:28:25','2023-11-22 21:30:03'),(435,8,'harouni','162.158.22.235',2,'Second Server',NULL,NULL,'2023-11-22 21:30:22','2023-11-22 21:30:40'),(436,8,'harouni','162.158.22.235',2,'Second Server',NULL,NULL,'2023-11-22 21:31:00','2023-11-22 21:31:34'),(437,8,'harouni','162.158.22.235',2,'Second Server',NULL,NULL,'2023-11-22 21:40:33','2023-11-22 21:46:16'),(438,8,'harouni','162.158.22.235',2,'Second Server',NULL,NULL,'2023-11-22 21:46:31','2023-11-22 21:47:15'),(439,8,'harouni','162.158.22.235',2,'Second Server',NULL,NULL,'2023-11-22 21:47:34','2023-11-22 21:48:56'),(440,8,'harouni','162.158.22.235',2,'Second Server',NULL,NULL,'2023-11-22 21:49:02','2023-11-22 21:49:20'),(441,8,'harouni','172.69.238.130',2,'Second Server',NULL,NULL,'2023-11-23 08:04:52','2023-11-23 08:09:03'),(442,24,'szymon','162.158.103.59',2,'Second Server',NULL,NULL,'2023-11-23 08:09:00','2023-11-23 08:17:03'),(443,10,'olga','162.158.239.18',1,'First Server',NULL,NULL,'2023-11-23 08:15:44','2023-11-23 08:16:46'),(444,10,'olga','162.158.239.18',2,'Second Server',NULL,NULL,'2023-11-23 08:17:00','2023-11-23 08:17:12'),(445,24,'szymon','162.158.103.59',2,'Second Server',NULL,NULL,'2023-11-23 08:17:09','2023-11-23 08:17:23'),(446,10,'olga','162.158.239.18',2,'Second Server',NULL,NULL,'2023-11-23 08:17:20','2023-11-23 08:17:29'),(447,24,'szymon','162.158.103.59',2,'Second Server',NULL,NULL,'2023-11-23 08:17:25','2023-11-23 08:18:32'),(448,10,'olga','162.158.239.18',3,'3rd seever',NULL,NULL,'2023-11-23 08:17:51','2023-11-23 09:21:37'),(449,8,'harouni','172.69.238.130',2,'Second Server',NULL,NULL,'2023-11-23 08:18:29','2023-11-23 08:18:57'),(450,24,'szymon','162.158.103.59',2,'Second Server',NULL,NULL,'2023-11-23 08:18:54','2023-11-23 08:19:02'),(451,8,'harouni','172.69.238.130',2,'Second Server',NULL,NULL,'2023-11-23 08:18:59','2023-11-23 08:19:07'),(452,24,'szymon','162.158.103.59',2,'Second Server',NULL,NULL,'2023-11-23 08:19:03','2023-11-23 08:19:18'),(453,8,'harouni','172.69.238.130',2,'Second Server',NULL,NULL,'2023-11-23 08:19:15','2023-11-23 08:19:23'),(454,24,'szymon','162.158.103.59',2,'Second Server',NULL,NULL,'2023-11-23 08:19:20','2023-11-23 08:19:29'),(455,8,'harouni','172.69.238.130',2,'Second Server',NULL,NULL,'2023-11-23 08:19:26','2023-11-23 08:20:22'),(456,24,'szymon','162.158.103.59',2,'Second Server',NULL,NULL,'2023-11-23 08:20:19','2023-11-23 10:19:25'),(457,8,'harouni','162.158.23.2',2,'Second Server',NULL,NULL,'2023-11-23 10:19:20','2023-11-23 10:25:13'),(458,24,'szymon','162.158.103.59',2,'Second Server',NULL,NULL,'2023-11-23 10:25:07','2023-11-23 10:39:08'),(459,2,'hema','172.69.194.15',3,'3rd seever',NULL,NULL,'2023-11-23 10:38:25','2023-11-23 10:39:06'),(460,2,'hema','172.69.194.15',2,'Second Server',NULL,NULL,'2023-11-23 10:39:02','2023-11-23 10:39:16'),(461,24,'szymon','162.158.103.59',2,'Second Server',NULL,NULL,'2023-11-23 10:39:11','2023-11-23 11:29:36'),(462,2,'hema','172.69.194.15',1,'First Server',NULL,NULL,'2023-11-23 10:39:17','2023-11-23 11:20:42'),(463,24,'szymon','162.158.103.59',1,'First Server',NULL,NULL,'2023-11-23 12:01:14','2023-11-23 12:38:01'),(464,28,'ghostz8520','172.71.210.31',3,'3rd seever',NULL,NULL,'2023-11-23 12:35:44','2023-11-23 12:37:26'),(465,28,'ghostz8520','172.71.214.23',1,'First Server',NULL,NULL,'2023-11-23 12:37:55','2023-11-23 12:41:53'),(466,28,'ghostz8520','172.71.214.23',2,'Second Server',NULL,NULL,'2023-11-23 12:42:16','2023-11-23 12:42:41'),(467,28,'ghostz8520','172.71.214.23',3,'3rd seever',NULL,NULL,'2023-11-23 12:42:49','2023-11-23 12:43:36'),(468,28,'ghostz8520','172.71.214.23',1,'First Server',NULL,NULL,'2023-11-23 12:43:47','2023-11-23 13:49:30'),(469,28,'ghostz8520','172.71.214.23',2,'Second Server',NULL,NULL,'2023-11-23 12:51:52','2023-11-23 12:52:07'),(470,10,'olga','162.158.183.205',2,'Second Server',NULL,NULL,'2023-11-23 18:57:33','2023-11-23 20:14:10'),(471,10,'olga','162.158.183.205',2,'Second Server',NULL,NULL,'2023-11-23 20:24:52','2023-11-23 20:50:51'),(472,28,'ghostz8520','172.71.210.214',1,'First Server',NULL,NULL,'2023-11-24 00:18:36','2023-11-24 01:30:07'),(473,11,'vipin','162.158.22.233',3,'3rd seever',NULL,NULL,'2023-11-24 01:15:00','2023-11-24 02:01:16'),(474,8,'harouni','162.158.18.169',2,'Second Server',NULL,NULL,'2023-11-24 06:36:41','2023-11-24 07:16:31'),(475,10,'olga','162.158.238.33',3,'3rd seever',NULL,NULL,'2023-11-24 06:44:20','2023-11-24 06:46:37'),(476,10,'olga','162.158.238.33',3,'3rd seever',NULL,NULL,'2023-11-24 07:14:19','2023-11-24 07:27:22'),(477,10,'olga','162.158.238.33',3,'3rd seever',NULL,NULL,'2023-11-24 07:27:23','2023-11-24 07:28:24'),(478,24,'szymon','172.68.138.73',1,'First Server',NULL,NULL,'2023-11-24 08:53:30','2023-11-24 09:12:12'),(479,24,'szymon','172.68.138.73',1,'First Server',NULL,NULL,'2023-11-24 09:12:13','2023-11-24 09:33:11'),(480,28,'ghostz8520','162.158.179.31',2,'Second Server',NULL,NULL,'2023-11-24 09:32:42','2023-11-24 09:32:55'),(481,28,'ghostz8520','162.158.179.31',1,'First Server',NULL,NULL,'2023-11-24 09:33:06','2023-11-24 09:33:19'),(482,24,'szymon','172.68.138.73',1,'First Server',NULL,NULL,'2023-11-24 09:33:13','2023-11-24 09:37:36'),(483,28,'ghostz8520','162.158.179.31',3,'3rd seever',NULL,NULL,'2023-11-24 09:33:27','2023-11-24 09:37:23'),(484,28,'ghostz8520','162.158.179.31',1,'First Server',NULL,NULL,'2023-11-24 09:37:31','2023-11-24 09:37:45'),(485,24,'szymon','172.68.138.73',1,'First Server',NULL,NULL,'2023-11-24 09:37:37','2023-11-24 09:39:33'),(486,28,'ghostz8520','162.158.179.31',2,'Second Server',NULL,NULL,'2023-11-24 09:37:55','2023-11-24 09:39:03'),(487,8,'harouni','162.158.18.112',2,'Second Server',NULL,NULL,'2023-11-24 09:39:00','2023-11-24 09:39:11'),(488,28,'ghostz8520','162.158.179.31',2,'Second Server',NULL,NULL,'2023-11-24 09:39:08','2023-11-24 09:39:17'),(489,8,'harouni','162.158.18.112',2,'Second Server',NULL,NULL,'2023-11-24 09:39:13','2023-11-24 09:43:44'),(490,28,'ghostz8520','162.158.179.31',1,'First Server',NULL,NULL,'2023-11-24 09:39:29','2023-11-24 09:39:38'),(491,24,'szymon','172.68.138.73',1,'First Server',NULL,NULL,'2023-11-24 09:39:34','2023-11-24 09:39:56'),(492,28,'ghostz8520','162.158.179.31',1,'First Server',NULL,NULL,'2023-11-24 09:39:52','2023-11-24 09:40:01'),(493,24,'szymon','172.68.138.73',1,'First Server',NULL,NULL,'2023-11-24 09:39:57','2023-11-24 11:00:54'),(494,8,'harouni','162.158.18.112',2,'Second Server',NULL,NULL,'2023-11-24 09:44:03','2023-11-24 09:53:46'),(495,28,'ghostz8520','162.158.179.31',3,'3rd seever',NULL,NULL,'2023-11-24 09:44:46','2023-11-24 10:19:11'),(496,8,'harouni','162.158.18.112',2,'Second Server',NULL,NULL,'2023-11-24 09:53:48','2023-11-24 10:21:38'),(497,28,'ghostz8520','162.158.179.31',3,'3rd seever',NULL,NULL,'2023-11-24 10:19:14','2023-11-24 10:21:44'),(498,28,'ghostz8520','162.158.179.31',2,'Second Server',NULL,NULL,'2023-11-24 10:23:15','2023-11-24 10:27:41'),(499,8,'harouni','162.158.18.112',2,'Second Server',NULL,NULL,'2023-11-24 10:27:38','2023-11-24 10:31:43'),(500,8,'harouni','162.158.18.112',2,'Second Server',NULL,NULL,'2023-11-24 10:31:46','2023-11-24 10:36:55'),(501,8,'harouni','162.158.18.112',2,'Second Server',NULL,NULL,'2023-11-24 10:37:12','2023-11-24 10:38:25'),(502,8,'harouni','162.158.18.112',2,'Second Server',NULL,NULL,'2023-11-24 10:38:27','2023-11-24 10:47:10'),(503,20,'Matthew','162.158.210.169',2,'Second Server',NULL,NULL,'2023-11-24 10:50:19','2023-11-24 10:58:37'),(504,8,'harouni','162.158.18.112',2,'Second Server',NULL,NULL,'2023-11-24 10:58:30','2023-11-24 11:00:36'),(505,20,'Matthew','162.158.210.169',2,'Second Server',NULL,NULL,'2023-11-24 11:00:33','2023-11-24 11:09:20'),(506,20,'Matthew','141.101.105.6',1,'First Server',NULL,NULL,'2023-11-24 11:00:51','2023-11-24 12:09:09'),(507,20,'Matthew','141.101.105.6',2,'Second Server',NULL,NULL,'2023-11-24 11:09:21','2023-11-24 11:54:01'),(508,20,'Matthew','141.101.105.6',2,'Second Server',NULL,NULL,'2023-11-24 11:54:04','2023-11-24 12:07:41'),(509,24,'szymon','162.158.102.172',2,'Second Server',NULL,NULL,'2023-11-24 12:07:34','2023-11-24 12:09:13'),(510,24,'szymon','162.158.102.172',3,'3rd seever',NULL,NULL,'2023-11-24 12:08:42','2023-11-24 12:09:12'),(511,24,'szymon','162.158.102.172',1,'First Server',NULL,NULL,'2023-11-24 12:09:05','2023-11-24 12:14:49'),(512,20,'Matthew','141.101.105.6',2,'Second Server',NULL,NULL,'2023-11-24 12:10:36','2023-11-24 12:25:19'),(513,20,'Matthew','141.101.105.6',2,'Second Server',NULL,NULL,'2023-11-24 12:25:32','2023-11-24 13:10:24'),(514,24,'szymon','172.68.139.61',1,'First Server',NULL,NULL,'2023-11-24 12:57:47','2023-11-24 13:25:18'),(515,24,'szymon','172.68.139.61',3,'3rd seever',NULL,NULL,'2023-11-24 13:19:40','2023-11-24 13:25:18'),(516,24,'szymon','172.68.139.61',2,'Second Server',NULL,NULL,'2023-11-24 13:20:04','2023-11-24 13:20:53'),(517,20,'Matthew','141.101.105.6',2,'Second Server',NULL,NULL,'2023-11-24 13:20:49','2023-11-24 13:21:01'),(518,24,'szymon','172.68.139.61',2,'Second Server',NULL,NULL,'2023-11-24 13:20:55','2023-11-24 13:25:18'),(519,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-24 19:21:15','2023-11-24 19:32:22'),(520,20,'Matthew','141.101.105.161',1,'First Server',NULL,NULL,'2023-11-24 19:21:38','2023-11-24 19:32:22'),(521,20,'Matthew','141.101.105.161',1,'First Server',NULL,NULL,'2023-11-24 19:37:54','2023-11-24 19:38:44'),(522,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-24 19:37:57','2023-11-24 19:48:00'),(523,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-24 19:57:50','2023-11-24 21:45:45'),(524,20,'Matthew','141.101.105.161',1,'First Server',NULL,NULL,'2023-11-24 20:16:55','2023-11-24 22:19:07'),(525,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-24 21:55:50','2023-11-24 22:07:25'),(526,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-24 22:07:26','2023-11-24 22:07:30'),(527,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-24 22:07:31','2023-11-24 22:13:16'),(528,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-24 22:13:17','2023-11-24 22:13:18'),(529,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-24 22:13:19','2023-11-24 22:18:41'),(530,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-24 22:18:42','2023-11-24 22:18:44'),(531,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-24 22:18:45','2023-11-24 22:22:54'),(532,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-24 22:23:00','2023-11-24 22:23:15'),(533,20,'Matthew','141.101.105.161',3,'3rd seever',NULL,NULL,'2023-11-24 22:23:27','2023-11-24 22:24:25'),(534,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-24 22:24:28','2023-11-25 07:15:16'),(535,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-25 07:25:50','2023-11-25 08:13:28'),(536,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-25 08:23:50','2023-11-25 09:55:28'),(537,8,'harouni','172.69.238.135',3,'3rd seever',NULL,NULL,'2023-11-25 09:52:11','2023-11-25 09:54:30'),(538,8,'harouni','172.69.238.135',3,'3rd seever',NULL,NULL,'2023-11-25 09:54:30','2023-11-25 09:55:48'),(539,8,'harouni','172.69.238.138',2,'Second Server',NULL,NULL,'2023-11-25 09:55:25','2023-11-25 09:57:35'),(540,8,'harouni','172.69.238.134',1,'First Server',NULL,NULL,'2023-11-25 09:56:16','2023-11-25 10:08:12'),(541,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-25 10:21:23','2023-11-25 10:48:47'),(542,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-25 11:01:36','2023-11-25 16:02:40'),(543,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-25 16:12:51','2023-11-25 16:30:46'),(544,9,'jeff','162.158.186.24',2,'Second Server',NULL,NULL,'2023-11-25 16:30:44','2023-11-25 16:34:05'),(545,9,'jeff','162.158.186.24',1,'First Server',NULL,NULL,'2023-11-25 17:19:34','2023-11-25 17:57:03'),(546,20,'Matthew','141.101.105.138',2,'Second Server',NULL,NULL,'2023-11-25 20:21:23','2023-11-25 20:48:07'),(547,20,'Matthew','141.101.105.138',2,'Second Server',NULL,NULL,'2023-11-25 20:48:08','2023-11-25 20:48:10'),(548,20,'Matthew','141.101.105.138',2,'Second Server',NULL,NULL,'2023-11-25 20:48:11','2023-11-25 23:02:39'),(549,8,'harouni','172.69.238.135',1,'First Server',NULL,NULL,'2023-11-25 20:57:06','2023-11-25 21:02:14'),(550,8,'harouni','172.69.238.135',1,'First Server',NULL,NULL,'2023-11-25 21:02:17','2023-11-25 21:07:31'),(551,8,'harouni','172.69.238.135',1,'First Server',NULL,NULL,'2023-11-25 21:08:35','2023-11-25 22:05:37'),(552,20,'Matthew','141.101.105.138',2,'Second Server',NULL,NULL,'2023-11-25 23:12:51','2023-11-26 08:03:08'),(553,20,'Matthew','141.101.105.138',2,'Second Server',NULL,NULL,'2023-11-26 08:12:52','2023-11-26 08:53:18'),(554,20,'Matthew','141.101.105.138',2,'Second Server',NULL,NULL,'2023-11-26 09:03:52','2023-11-26 11:14:04'),(555,20,'Matthew','141.101.105.138',2,'Second Server',NULL,NULL,'2023-11-26 11:14:05','2023-11-26 12:56:25'),(556,2,'hema','172.69.194.15',2,'Second Server',NULL,NULL,'2023-11-26 12:56:22','2023-11-26 12:56:55'),(557,20,'Matthew','141.101.105.138',2,'Second Server',NULL,NULL,'2023-11-26 12:58:01','2023-11-26 20:02:26'),(558,20,'Matthew','141.101.105.138',2,'Second Server',NULL,NULL,'2023-11-26 20:12:52','2023-11-26 20:21:30'),(559,20,'Matthew','141.101.105.138',2,'Second Server',NULL,NULL,'2023-11-26 20:31:52','2023-11-26 22:09:21'),(560,20,'Matthew','141.101.105.138',2,'Second Server',NULL,NULL,'2023-11-26 22:09:22','2023-11-26 22:09:25'),(561,20,'Matthew','141.101.105.138',2,'Second Server',NULL,NULL,'2023-11-26 22:09:26','2023-11-27 07:18:03'),(562,20,'Matthew','141.101.105.138',2,'Second Server',NULL,NULL,'2023-11-27 07:27:53','2023-11-27 07:44:46'),(563,20,'Matthew','141.101.105.138',2,'Second Server',NULL,NULL,'2023-11-27 07:54:53','2023-11-27 08:34:34'),(564,20,'Matthew','141.101.105.138',2,'Second Server',NULL,NULL,'2023-11-27 08:44:53','2023-11-27 09:51:34'),(565,10,'olga','172.70.42.223',3,'3rd seever',NULL,NULL,'2023-11-27 09:28:31','2023-11-27 09:44:57'),(566,10,'olga','172.70.42.223',1,'First Server',NULL,NULL,'2023-11-27 09:45:10','2023-11-27 09:51:13'),(567,10,'olga','172.70.42.223',2,'Second Server',NULL,NULL,'2023-11-27 09:51:31','2023-11-27 10:00:45'),(568,29,'mariusz.grela','162.158.103.115',1,'First Server',NULL,NULL,'2023-11-27 10:07:48','2023-11-27 10:16:22'),(569,29,'mariusz.grela','162.158.103.115',2,'Second Server',NULL,NULL,'2023-11-27 10:14:54','2023-11-27 10:16:22'),(570,29,'mariusz.grela','162.158.103.115',3,'3rd seever',NULL,NULL,'2023-11-27 10:15:05','2023-11-27 10:16:22'),(571,10,'olga','162.158.238.78',2,'Second Server',NULL,NULL,'2023-11-27 10:20:34','2023-11-27 10:29:33'),(572,29,'mariusz.grela','162.158.103.115',1,'First Server',NULL,NULL,'2023-11-27 10:21:00','2023-11-27 10:38:54'),(573,29,'mariusz.grela','162.158.103.115',2,'Second Server',NULL,NULL,'2023-11-27 10:29:27','2023-11-27 10:37:56'),(574,29,'mariusz.grela','162.158.103.115',2,'Second Server',NULL,NULL,'2023-11-27 10:38:31','2023-11-27 10:38:53'),(575,29,'mariusz.grela','162.158.103.115',2,'Second Server',NULL,NULL,'2023-11-27 11:13:04','2023-11-27 12:35:07'),(576,20,'Matthew','141.101.105.6',2,'Second Server',NULL,NULL,'2023-11-27 12:46:09','2023-11-27 14:38:19'),(577,29,'mariusz.grela','162.158.103.115',1,'First Server',NULL,NULL,'2023-11-27 13:31:06','2023-11-27 13:57:44'),(578,29,'mariusz.grela','162.158.103.115',1,'First Server',NULL,NULL,'2023-11-27 14:25:36','2023-11-27 16:18:06'),(579,10,'olga','172.71.223.134',2,'Second Server',NULL,NULL,'2023-11-27 14:38:17','2023-11-27 14:39:25'),(580,10,'olga','172.71.223.134',3,'3rd seever',NULL,NULL,'2023-11-27 14:39:35','2023-11-27 15:07:56'),(581,10,'olga','172.71.223.134',3,'3rd seever',NULL,NULL,'2023-11-27 15:09:04','2023-11-27 15:09:24'),(582,10,'olga','172.71.223.134',3,'3rd seever',NULL,NULL,'2023-11-27 15:09:25','2023-11-27 15:29:58'),(583,20,'Matthew','141.101.105.6',2,'Second Server',NULL,NULL,'2023-11-27 15:25:14','2023-11-27 16:32:57'),(584,20,'Matthew','141.101.105.6',2,'Second Server',NULL,NULL,'2023-11-27 16:32:58','2023-11-27 19:13:22'),(585,5,'goutham','172.70.126.103',3,'3rd seever',NULL,NULL,'2023-11-27 16:36:53','2023-11-27 19:40:04'),(586,2,'hema','172.70.86.27',6,'freelance',NULL,NULL,'2023-11-27 17:28:25','2023-11-27 17:29:47'),(587,30,'team','172.71.103.41',6,'freelance',NULL,NULL,'2023-11-27 17:29:44','2023-11-27 17:32:33'),(588,2,'hema','172.70.86.27',6,'freelance',NULL,NULL,'2023-11-27 17:40:13','2023-11-27 18:52:51'),(589,30,'team','172.70.85.25',6,'freelance',NULL,NULL,'2023-11-27 18:52:48','2023-11-27 19:09:40'),(590,30,'team','172.70.85.25',6,'freelance',NULL,NULL,'2023-11-27 19:11:07','2023-11-27 19:11:49'),(591,30,'team','172.70.85.25',6,'freelance',NULL,NULL,'2023-11-27 19:11:50','2023-11-27 19:11:52'),(592,30,'team','172.70.85.25',6,'freelance',NULL,NULL,'2023-11-27 19:11:53','2023-11-27 19:12:06'),(593,30,'team','172.70.91.148',6,'freelance',NULL,NULL,'2023-11-27 19:12:39','2023-11-27 19:25:20'),(594,20,'Matthew','141.101.105.6',2,'Second Server',NULL,NULL,'2023-11-27 19:23:53','2023-11-27 22:16:44'),(595,30,'team','172.70.90.236',6,'freelance',NULL,NULL,'2023-11-27 19:33:33','2023-11-27 19:41:35'),(596,30,'team','172.70.86.140',6,'freelance',NULL,NULL,'2023-11-27 19:45:43','2023-11-27 20:08:26'),(597,5,'goutham','172.70.126.103',3,'3rd seever',NULL,NULL,'2023-11-27 19:50:50','2023-11-27 20:27:55'),(598,30,'team','172.70.86.140',6,'freelance',NULL,NULL,'2023-11-27 20:08:28','2023-11-27 20:09:09'),(599,20,'Matthew','141.101.105.6',2,'Second Server',NULL,NULL,'2023-11-27 22:26:53','2023-11-27 22:38:20'),(600,20,'Matthew','141.101.105.6',2,'Second Server',NULL,NULL,'2023-11-27 22:48:53','2023-11-27 23:57:09'),(601,30,'team','162.158.22.235',6,'freelance',NULL,NULL,'2023-11-27 23:31:43','2023-11-27 23:32:04'),(602,30,'team','172.71.186.204',6,'freelance',NULL,NULL,'2023-11-27 23:40:51','2023-11-27 23:52:08'),(603,20,'Matthew','141.101.105.6',2,'Second Server',NULL,NULL,'2023-11-28 00:07:53','2023-11-28 06:16:50'),(604,20,'Matthew','141.101.105.6',2,'Second Server',NULL,NULL,'2023-11-28 06:19:16','2023-11-28 06:27:23'),(605,24,'szymon','162.158.102.181',1,'First Server',NULL,NULL,'2023-11-28 06:31:28','2023-11-28 06:32:23'),(606,20,'Matthew','141.101.105.6',2,'Second Server',NULL,NULL,'2023-11-28 06:37:28','2023-11-28 06:41:47'),(607,20,'Matthew','141.101.105.6',2,'Second Server',NULL,NULL,'2023-11-28 06:42:53','2023-11-28 07:13:14'),(608,2,'hema','172.70.86.152',6,'freelance',NULL,NULL,'2023-11-28 06:54:09','2023-11-28 06:55:03'),(609,2,'hema','172.70.86.152',3,'3rd seever',NULL,NULL,'2023-11-28 06:54:59','2023-11-28 07:09:20'),(610,2,'hema','172.70.86.152',1,'First Server',NULL,NULL,'2023-11-28 07:09:25','2023-11-28 07:16:33'),(611,2,'hema','172.70.86.152',2,'Second Server',NULL,NULL,'2023-11-28 07:13:11','2023-11-28 07:16:32'),(612,29,'mariusz.grela','172.68.139.21',3,'3rd seever',NULL,NULL,'2023-11-28 08:22:46','2023-11-28 08:32:26'),(613,28,'ghostz8520','172.71.214.24',3,'3rd seever',NULL,NULL,'2023-11-28 08:32:23','2023-11-28 08:33:00'),(614,28,'ghostz8520','172.71.214.24',2,'Second Server',NULL,NULL,'2023-11-28 08:33:10','2023-11-28 08:33:55'),(615,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-28 08:33:51','2023-11-28 08:34:02'),(616,28,'ghostz8520','172.71.214.24',2,'Second Server',NULL,NULL,'2023-11-28 08:33:58','2023-11-28 08:34:09'),(617,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-28 08:34:03','2023-11-28 09:01:42'),(618,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-28 09:01:58','2023-11-28 09:39:41'),(619,10,'olga','172.70.42.30',1,'First Server',NULL,NULL,'2023-11-28 09:20:25','2023-11-28 09:37:10'),(620,10,'olga','172.70.42.30',2,'Second Server',NULL,NULL,'2023-11-28 09:39:38','2023-11-28 09:44:40'),(621,2,'hema','172.69.194.167',6,'freelance',NULL,NULL,'2023-11-28 09:43:15','2023-11-28 11:32:21'),(622,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-28 09:44:36','2023-11-28 09:44:47'),(623,10,'olga','172.70.42.30',2,'Second Server',NULL,NULL,'2023-11-28 09:44:42','2023-11-28 09:44:51'),(624,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-28 09:44:48','2023-11-28 09:44:59'),(625,10,'olga','172.70.42.30',2,'Second Server',NULL,NULL,'2023-11-28 09:44:54','2023-11-28 09:45:04'),(626,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-28 09:45:00','2023-11-28 09:45:10'),(627,10,'olga','172.70.42.30',2,'Second Server',NULL,NULL,'2023-11-28 09:45:06','2023-11-28 09:45:16'),(628,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-28 09:45:12','2023-11-28 09:45:22'),(629,10,'olga','172.70.42.30',2,'Second Server',NULL,NULL,'2023-11-28 09:45:18','2023-11-28 09:45:27'),(630,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-28 09:45:24','2023-11-28 10:38:46'),(631,24,'szymon','172.68.138.178',2,'Second Server',NULL,NULL,'2023-11-28 10:38:43','2023-11-28 11:02:08'),(632,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-28 11:02:05','2023-11-28 22:14:12'),(633,30,'team','172.71.186.145',6,'freelance',NULL,NULL,'2023-11-28 13:41:50','2023-11-28 14:04:36'),(634,30,'team','172.71.186.248',6,'freelance',NULL,NULL,'2023-11-28 14:04:40','2023-11-28 14:10:43'),(635,30,'team','172.71.186.248',6,'freelance',NULL,NULL,'2023-11-28 14:10:44','2023-11-28 14:16:00'),(636,30,'team','172.71.186.248',6,'freelance',NULL,NULL,'2023-11-28 14:23:17','2023-11-28 15:17:23'),(637,2,'hema','172.71.178.82',6,'freelance',NULL,NULL,'2023-11-28 16:50:59','2023-11-28 16:52:15'),(638,30,'team','162.158.22.234',6,'freelance',NULL,NULL,'2023-11-28 17:07:22','2023-11-28 17:08:45'),(639,30,'team','162.158.22.234',6,'freelance',NULL,NULL,'2023-11-28 17:09:03','2023-11-28 17:13:44'),(640,30,'team','162.158.22.234',6,'freelance',NULL,NULL,'2023-11-28 17:13:49','2023-11-28 17:14:58'),(641,30,'team','162.158.22.234',6,'freelance',NULL,NULL,'2023-11-28 17:17:21','2023-11-28 17:51:22'),(642,30,'team','162.158.22.234',6,'freelance',NULL,NULL,'2023-11-28 17:51:46','2023-11-28 18:33:56'),(643,30,'team','162.158.22.234',6,'freelance',NULL,NULL,'2023-11-28 18:34:12','2023-11-28 18:34:39'),(644,2,'hema','172.71.99.99',6,'freelance',NULL,NULL,'2023-11-28 18:34:34','2023-11-28 18:34:55'),(645,30,'team','162.158.22.234',6,'freelance',NULL,NULL,'2023-11-28 18:34:50','2023-11-28 18:35:07'),(646,2,'hema','172.71.99.99',6,'freelance',NULL,NULL,'2023-11-28 18:35:02','2023-11-28 18:35:23'),(647,30,'team','162.158.22.234',6,'freelance',NULL,NULL,'2023-11-28 18:35:19','2023-11-28 18:35:46'),(648,2,'hema','172.71.99.99',6,'freelance',NULL,NULL,'2023-11-28 18:35:31','2023-11-28 18:36:10'),(649,30,'team','162.158.22.234',6,'freelance',NULL,NULL,'2023-11-28 18:36:36','2023-11-28 18:42:47'),(650,2,'hema','172.71.99.99',6,'freelance',NULL,NULL,'2023-11-28 18:42:39','2023-11-28 18:43:03'),(651,30,'team','162.158.22.234',6,'freelance',NULL,NULL,'2023-11-28 18:42:56','2023-11-28 18:43:10'),(652,2,'hema','172.71.99.99',6,'freelance',NULL,NULL,'2023-11-28 18:43:05','2023-11-28 18:48:10'),(653,30,'team','162.158.22.234',6,'freelance',NULL,NULL,'2023-11-28 18:48:06','2023-11-28 18:48:17'),(654,2,'hema','172.71.99.99',6,'freelance',NULL,NULL,'2023-11-28 18:48:13','2023-11-28 18:49:19'),(655,30,'team','162.158.22.234',6,'freelance',NULL,NULL,'2023-11-28 18:51:57','2023-11-28 19:09:11'),(656,2,'hema','172.71.99.99',6,'freelance',NULL,NULL,'2023-11-28 19:09:06','2023-11-28 19:13:33'),(657,30,'team','162.158.22.234',6,'freelance',NULL,NULL,'2023-11-28 19:13:29','2023-11-28 19:13:39'),(658,2,'hema','172.71.99.99',6,'freelance',NULL,NULL,'2023-11-28 19:13:35','2023-11-28 19:32:11'),(659,30,'team','162.158.22.234',6,'freelance',NULL,NULL,'2023-11-28 19:32:08','2023-11-28 20:02:24'),(660,30,'team','162.158.22.234',6,'freelance',NULL,NULL,'2023-11-28 20:03:25','2023-11-28 20:05:32'),(661,30,'team','162.158.22.234',6,'freelance',NULL,NULL,'2023-11-28 20:06:42','2023-11-28 20:06:42'),(662,30,'team','162.158.22.234',6,'freelance',NULL,NULL,'2023-11-28 20:07:10','2023-11-28 20:12:29'),(663,30,'team','162.158.22.234',6,'freelance',NULL,NULL,'2023-11-28 20:13:04','2023-11-28 20:16:15'),(664,2,'hema','172.69.194.167',3,'3rd seever',NULL,NULL,'2023-11-28 20:37:10','2023-11-28 20:39:04'),(665,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-28 22:23:55','2023-11-29 01:52:10'),(666,30,'team','172.68.62.49',6,'freelance',NULL,NULL,'2023-11-28 22:47:01','2023-11-28 23:15:19'),(667,30,'team','172.68.62.49',6,'freelance',NULL,NULL,'2023-11-28 23:17:14','2023-11-28 23:40:00'),(668,30,'team','172.68.62.49',6,'freelance',NULL,NULL,'2023-11-28 23:40:07','2023-11-29 00:00:12'),(669,30,'team','172.68.62.49',6,'freelance',NULL,NULL,'2023-11-29 00:00:29','2023-11-29 00:24:15'),(670,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-29 02:02:55','2023-11-29 04:41:41'),(671,17,'cooley','172.71.99.107',1,'First Server',NULL,NULL,'2023-11-29 03:50:49','2023-11-29 04:05:53'),(672,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-29 04:51:55','2023-11-29 07:33:52'),(673,10,'olga','162.158.239.17',2,'Second Server',NULL,NULL,'2023-11-29 07:36:05','2023-11-29 07:43:58'),(674,10,'olga','162.158.239.17',3,'3rd seever',NULL,NULL,'2023-11-29 07:37:15','2023-11-29 09:49:02'),(675,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-29 07:43:55','2023-11-29 08:16:02'),(676,29,'mariusz.grela','172.68.138.236',1,'First Server',NULL,NULL,'2023-11-29 08:03:07','2023-11-29 08:04:17'),(677,29,'mariusz.grela','172.68.138.237',1,'First Server',NULL,NULL,'2023-11-29 08:05:36','2023-11-29 08:13:07'),(678,30,'team','172.68.62.121',6,'freelance',NULL,NULL,'2023-11-29 08:14:25','2023-11-29 08:41:43'),(679,20,'Matthew','141.101.105.161',2,'Second Server',NULL,NULL,'2023-11-29 08:25:55','2023-11-29 10:12:47'),(680,30,'team','172.68.62.121',6,'freelance',NULL,NULL,'2023-11-29 08:51:51','2023-11-29 08:54:12'),(681,30,'team','172.68.62.121',6,'freelance',NULL,NULL,'2023-11-29 09:10:40','2023-11-29 09:46:57'),(682,29,'mariusz.grela','172.68.139.5',1,'First Server',NULL,NULL,'2023-11-29 09:38:56','2023-11-29 11:03:40'),(683,29,'mariusz.grela','172.68.139.5',3,'3rd seever',NULL,NULL,'2023-11-29 09:48:58','2023-11-29 11:03:40'),(684,30,'team','172.68.62.121',6,'freelance',NULL,NULL,'2023-11-29 09:51:41','2023-11-29 10:21:47'),(685,29,'mariusz.grela','172.68.139.5',2,'Second Server',NULL,NULL,'2023-11-29 10:12:44','2023-11-29 11:03:40'),(686,30,'team','172.68.62.121',6,'freelance',NULL,NULL,'2023-11-29 10:22:27','2023-11-29 10:26:39'),(687,30,'team','172.68.62.121',6,'freelance',NULL,NULL,'2023-11-29 10:28:01','2023-11-29 10:31:13'),(688,30,'team','172.68.62.121',6,'freelance',NULL,NULL,'2023-11-29 10:37:17','2023-11-29 10:38:32'),(689,30,'team','172.68.62.121',6,'freelance',NULL,NULL,'2023-11-29 10:38:43','2023-11-29 11:44:10'),(690,29,'mariusz.grela','172.68.139.5',3,'3rd seever',NULL,NULL,'2023-11-29 11:59:23','2023-11-29 12:46:59'),(691,29,'mariusz.grela','172.68.139.5',2,'Second Server',NULL,NULL,'2023-11-29 12:05:11','2023-11-29 12:46:51'),(692,29,'mariusz.grela','172.68.139.5',1,'First Server',NULL,NULL,'2023-11-29 12:05:27','2023-11-29 12:47:00'),(693,30,'team','162.158.23.2',6,'freelance',NULL,NULL,'2023-11-29 12:12:05','2023-11-29 13:42:47'),(694,30,'team','162.158.23.2',6,'freelance',NULL,NULL,'2023-11-29 13:53:03','2023-11-29 15:46:51'),(695,10,'olga','162.158.239.73',3,'3rd seever',NULL,NULL,'2023-11-29 14:29:28','2023-11-29 14:39:00'),(696,14,'lukasz','172.68.139.28',1,'First Server',NULL,NULL,'2023-11-29 14:37:40','2023-11-29 14:41:06'),(697,14,'lukasz','172.68.138.179',3,'3rd seever',NULL,NULL,'2023-11-29 14:38:57','2023-11-29 14:39:10'),(698,10,'olga','162.158.239.73',3,'3rd seever',NULL,NULL,'2023-11-29 14:40:33','2023-11-29 16:10:22'),(699,30,'team','162.158.23.2',6,'freelance',NULL,NULL,'2023-11-29 15:52:59','2023-11-29 16:17:38'),(700,10,'olga','162.158.239.73',3,'3rd seever',NULL,NULL,'2023-11-29 16:20:34','2023-11-29 17:14:11'),(701,10,'olga','172.71.222.217',3,'3rd seever',NULL,NULL,'2023-11-29 19:24:31','2023-11-29 19:59:18'),(702,6,'yagoman','141.101.68.238',3,'3rd seever',NULL,NULL,'2023-11-29 23:12:18','2023-11-29 23:17:25'),(703,10,'olga','172.70.34.240',3,'3rd seever',NULL,NULL,'2023-11-30 06:38:08','2023-11-30 07:21:27'),(704,10,'olga','172.70.34.240',3,'3rd seever',NULL,NULL,'2023-11-30 07:31:34','2023-11-30 08:09:54'),(705,6,'yagoman','172.64.238.88',3,'3rd seever',NULL,NULL,'2023-11-30 08:09:51','2023-11-30 08:23:56'),(706,6,'yagoman','172.64.238.88',3,'3rd seever',NULL,NULL,'2023-11-30 08:27:22','2023-11-30 08:35:44'),(707,10,'olga','172.70.34.240',3,'3rd seever',NULL,NULL,'2023-11-30 08:35:41','2023-11-30 08:41:26'),(708,6,'yagoman','172.64.238.88',3,'3rd seever',NULL,NULL,'2023-11-30 08:41:23','2023-11-30 08:41:32'),(709,10,'olga','172.70.34.240',3,'3rd seever',NULL,NULL,'2023-11-30 08:41:29','2023-11-30 08:41:38'),(710,6,'yagoman','172.64.238.88',3,'3rd seever',NULL,NULL,'2023-11-30 08:41:34','2023-11-30 08:41:43'),(711,10,'olga','172.70.34.240',3,'3rd seever',NULL,NULL,'2023-11-30 08:41:40','2023-11-30 08:41:49'),(712,6,'yagoman','172.64.238.88',3,'3rd seever',NULL,NULL,'2023-11-30 08:41:45','2023-11-30 08:41:55'),(713,10,'olga','172.70.34.240',3,'3rd seever',NULL,NULL,'2023-11-30 08:41:53','2023-11-30 08:42:01'),(714,6,'yagoman','172.64.238.88',3,'3rd seever',NULL,NULL,'2023-11-30 08:41:57','2023-11-30 09:07:31'),(715,10,'olga','172.70.34.240',3,'3rd seever',NULL,NULL,'2023-11-30 09:07:27','2023-11-30 09:07:36'),(716,6,'yagoman','172.64.238.88',3,'3rd seever',NULL,NULL,'2023-11-30 09:07:33','2023-11-30 09:18:11'),(717,14,'lukasz','172.71.98.110',3,'3rd seever',NULL,NULL,'2023-11-30 09:18:07','2023-11-30 09:18:17'),(718,6,'yagoman','172.64.238.88',3,'3rd seever',NULL,NULL,'2023-11-30 09:18:12','2023-11-30 09:18:25'),(719,14,'lukasz','172.71.98.110',3,'3rd seever',NULL,NULL,'2023-11-30 09:18:22','2023-11-30 09:18:30'),(720,6,'yagoman','172.64.238.88',3,'3rd seever',NULL,NULL,'2023-11-30 09:18:26','2023-11-30 09:18:39'),(721,14,'lukasz','172.71.98.110',3,'3rd seever',NULL,NULL,'2023-11-30 09:18:36','2023-11-30 09:18:45'),(722,6,'yagoman','172.64.238.88',3,'3rd seever',NULL,NULL,'2023-11-30 09:18:41','2023-11-30 09:18:53'),(723,14,'lukasz','172.71.98.110',3,'3rd seever',NULL,NULL,'2023-11-30 09:18:50','2023-11-30 09:18:58'),(724,6,'yagoman','172.64.238.88',3,'3rd seever',NULL,NULL,'2023-11-30 09:18:55','2023-11-30 09:39:19'),(725,14,'lukasz','172.71.98.110',1,'First Server',NULL,NULL,'2023-11-30 09:18:58','2023-11-30 09:19:27'),(726,10,'olga','172.70.34.240',3,'3rd seever',NULL,NULL,'2023-11-30 09:39:16','2023-11-30 09:43:07'),(727,6,'yagoman','172.64.238.88',3,'3rd seever',NULL,NULL,'2023-11-30 09:43:04','2023-11-30 09:43:58'),(728,6,'yagoman','172.64.238.88',3,'3rd seever',NULL,NULL,'2023-11-30 09:45:50','2023-11-30 09:51:11'),(729,10,'olga','172.70.34.240',3,'3rd seever',NULL,NULL,'2023-11-30 09:51:08','2023-11-30 09:51:39'),(730,6,'yagoman','172.64.238.88',3,'3rd seever',NULL,NULL,'2023-11-30 09:51:36','2023-11-30 10:48:12'),(731,30,'team','162.158.22.234',6,'freelance',NULL,NULL,'2023-11-30 10:52:47','2023-11-30 10:58:02'),(732,6,'yagoman','172.64.238.88',3,'3rd seever',NULL,NULL,'2023-11-30 10:58:50','2023-11-30 11:44:14'),(733,30,'team','162.158.22.234',6,'freelance',NULL,NULL,'2023-11-30 10:59:34','2023-11-30 10:59:37'),(734,30,'team','162.158.22.234',6,'freelance',NULL,NULL,'2023-11-30 10:59:58','2023-11-30 11:00:50'),(735,30,'team','162.158.22.234',6,'freelance',NULL,NULL,'2023-11-30 11:23:15','2023-11-30 11:31:20'),(736,20,'Matthew','108.162.220.122',2,'Second Server',NULL,NULL,'2023-11-30 11:24:10','2023-11-30 11:33:31'),(737,30,'team','162.158.22.234',6,'freelance',NULL,NULL,'2023-11-30 11:31:44','2023-11-30 11:32:45'),(738,30,'team','162.158.22.234',6,'freelance',NULL,NULL,'2023-11-30 11:33:18','2023-11-30 11:33:53'),(739,30,'team','162.158.22.234',6,'freelance',NULL,NULL,'2023-11-30 11:34:01','2023-11-30 11:37:19'),(740,30,'team','162.158.22.234',6,'freelance',NULL,NULL,'2023-11-30 11:37:39','2023-11-30 11:38:34'),(741,30,'team','162.158.22.234',6,'freelance',NULL,NULL,'2023-11-30 11:39:14','2023-11-30 11:40:38'),(742,30,'team','162.158.22.234',6,'freelance',NULL,NULL,'2023-11-30 11:41:26','2023-11-30 12:29:51'),(743,20,'Matthew','108.162.220.122',2,'Second Server',NULL,NULL,'2023-11-30 11:43:56','2023-11-30 13:12:34'),(744,28,'ghostz8520','172.71.215.80',3,'3rd seever',NULL,NULL,'2023-11-30 11:44:10','2023-11-30 11:44:32'),(745,10,'olga','172.70.42.160',3,'3rd seever',NULL,NULL,'2023-11-30 11:53:30','2023-11-30 13:04:22'),(746,30,'team','162.158.22.234',6,'freelance',NULL,NULL,'2023-11-30 12:41:46','2023-11-30 12:42:16'),(747,30,'team','162.158.22.234',6,'freelance',NULL,NULL,'2023-11-30 12:53:36','2023-11-30 12:53:51'),(748,13,'fouad','172.69.214.93',2,'Second Server',NULL,NULL,'2023-11-30 13:12:32','2023-11-30 13:55:44'),(749,20,'Matthew','108.162.220.122',2,'Second Server',NULL,NULL,'2023-11-30 13:55:40','2023-11-30 13:59:07'),(750,20,'Matthew','108.162.220.122',2,'Second Server',NULL,NULL,'2023-11-30 13:59:09','2023-11-30 13:59:09'),(751,20,'Matthew','108.162.220.122',2,'Second Server',NULL,NULL,'2023-11-30 13:59:11','2023-11-30 15:29:53'),(752,30,'team','162.158.23.2',6,'freelance',NULL,NULL,'2023-11-30 14:11:04','2023-11-30 14:33:51'),(753,30,'team','162.158.23.2',6,'freelance',NULL,NULL,'2023-11-30 14:34:06','2023-11-30 14:58:05'),(754,30,'team','141.101.69.53',6,'freelance',NULL,NULL,'2023-11-30 15:20:30','2023-11-30 15:26:30'),(755,20,'Matthew','108.162.220.122',3,'3rd seever',NULL,NULL,'2023-11-30 15:29:58','2023-11-30 15:30:10'),(756,20,'Matthew','108.162.220.122',3,'3rd seever',NULL,NULL,'2023-11-30 15:30:11','2023-11-30 15:30:12'),(757,20,'Matthew','108.162.220.122',3,'3rd seever',NULL,NULL,'2023-11-30 15:30:13','2023-11-30 15:44:43'),(758,20,'Matthew','108.162.220.122',3,'3rd seever',NULL,NULL,'2023-11-30 15:44:44','2023-11-30 15:52:06'),(759,20,'Matthew','108.162.220.122',1,'First Server',NULL,NULL,'2023-11-30 15:52:10','2023-11-30 15:52:12'),(760,20,'Matthew','108.162.220.122',3,'3rd seever',NULL,NULL,'2023-11-30 15:52:13','2023-11-30 15:52:14'),(761,20,'Matthew','108.162.220.122',2,'Second Server',NULL,NULL,'2023-11-30 15:52:15','2023-11-30 15:52:44'),(762,20,'Matthew','108.162.220.122',1,'First Server',NULL,NULL,'2023-11-30 15:52:19','2023-11-30 15:52:44'),(763,20,'Matthew','108.162.220.122',3,'3rd seever',NULL,NULL,'2023-11-30 15:52:46','2023-11-30 18:44:18'),(764,20,'Matthew','108.162.220.122',2,'Second Server',NULL,NULL,'2023-11-30 15:55:14','2023-11-30 17:56:19'),(765,2,'hema','172.69.194.197',2,'Second Server',NULL,NULL,'2023-11-30 17:56:17','2023-11-30 17:57:40'),(766,2,'hema','172.69.194.197',1,'First Server',NULL,NULL,'2023-11-30 17:56:32','2023-11-30 17:59:56'),(767,30,'team','162.158.22.254',6,'freelance',NULL,NULL,'2023-11-30 23:07:00','2023-11-30 23:07:45'),(768,30,'team','162.158.22.254',6,'freelance',NULL,NULL,'2023-11-30 23:07:51','2023-11-30 23:08:48'),(769,30,'team','162.158.22.254',6,'freelance',NULL,NULL,'2023-11-30 23:09:14','2023-12-01 00:15:48'),(770,30,'team','162.158.22.253',6,'freelance',NULL,NULL,'2023-12-01 00:42:50','2023-12-01 01:04:36'),(771,30,'team','162.158.22.253',6,'freelance',NULL,NULL,'2023-12-01 01:05:04','2023-12-01 01:06:28'),(772,30,'team','162.158.22.253',6,'freelance',NULL,NULL,'2023-12-01 01:06:46','2023-12-01 01:57:56'),(773,10,'olga','162.158.239.74',3,'3rd seever',NULL,NULL,'2023-12-01 07:21:46','2023-12-01 11:16:46'),(774,20,'Matthew','162.158.210.27',2,'Second Server',NULL,NULL,'2023-12-01 07:59:22','2023-12-01 08:51:56'),(775,10,'olga','162.158.238.78',3,'3rd seever',NULL,NULL,'2023-12-01 11:36:30','2023-12-01 11:36:45'),(776,10,'olga','162.158.238.78',1,'First Server',NULL,NULL,'2023-12-01 11:36:57','2023-12-01 12:14:58'),(777,10,'olga','162.158.238.79',3,'3rd seever',NULL,NULL,'2023-12-01 18:55:30','2023-12-01 19:24:58'),(778,10,'olga','162.158.238.79',3,'3rd seever',NULL,NULL,'2023-12-01 19:37:11','2023-12-01 21:32:17'),(779,10,'olga','162.158.238.79',2,'Second Server',NULL,NULL,'2023-12-01 21:32:32','2023-12-01 21:33:12'),(780,10,'olga','162.158.238.79',1,'First Server',NULL,NULL,'2023-12-01 21:33:26','2023-12-01 21:39:29'),(781,10,'olga','162.158.239.74',2,'Second Server',NULL,NULL,'2023-12-02 07:01:45','2023-12-02 07:05:03'),(782,10,'olga','162.158.239.74',2,'Second Server',NULL,NULL,'2023-12-02 07:25:45','2023-12-02 07:29:16'),(783,10,'olga','162.158.239.17',2,'Second Server',NULL,NULL,'2023-12-02 15:20:55','2023-12-02 15:33:08'),(784,17,'cooley','172.71.103.175',1,'First Server',NULL,NULL,'2023-12-02 20:50:30','2023-12-02 22:23:38'),(785,17,'cooley','172.71.103.175',1,'First Server',NULL,NULL,'2023-12-02 22:33:55','2023-12-03 00:26:36'),(786,30,'team','172.71.186.196',6,'freelance',NULL,NULL,'2023-12-03 02:21:48','2023-12-03 02:32:39'),(787,2,'hema','141.101.99.203',3,'3rd seever',NULL,NULL,'2023-12-03 08:21:37','2023-12-03 08:22:59'),(788,2,'hema','141.101.99.203',1,'First Server',NULL,NULL,'2023-12-03 08:22:56','2023-12-03 08:23:27'),(789,2,'hema','141.101.99.203',2,'Second Server',NULL,NULL,'2023-12-03 08:23:25','2023-12-03 08:29:04'),(790,25,'mike','162.158.126.21',1,'First Server',NULL,NULL,'2023-12-03 08:41:45','2023-12-03 08:47:01'),(791,25,'mike','162.158.126.21',2,'Second Server',NULL,NULL,'2023-12-03 08:42:43','2023-12-03 09:49:34'),(792,25,'mike','162.158.126.21',2,'Second Server',NULL,NULL,'2023-12-03 09:49:41','2023-12-03 09:50:29'),(793,25,'mike','162.158.126.21',2,'Second Server',NULL,NULL,'2023-12-03 09:50:31','2023-12-03 09:52:03'),(794,25,'mike','162.158.126.21',2,'Second Server',NULL,NULL,'2023-12-03 09:52:06','2023-12-03 09:59:58'),(795,25,'mike','162.158.126.21',2,'Second Server',NULL,NULL,'2023-12-03 10:00:02','2023-12-03 11:17:05'),(796,30,'team','172.71.186.144',6,'freelance',NULL,NULL,'2023-12-03 10:17:22','2023-12-03 12:15:03'),(797,25,'mike','162.158.126.18',2,'Second Server',NULL,NULL,'2023-12-03 11:18:02','2023-12-03 11:22:38'),(798,25,'mike','162.158.126.18',2,'Second Server',NULL,NULL,'2023-12-03 11:22:50','2023-12-03 11:28:03'),(799,25,'mike','162.158.126.18',2,'Second Server',NULL,NULL,'2023-12-03 11:28:18','2023-12-03 11:30:34'),(800,30,'team','172.71.186.145',6,'freelance',NULL,NULL,'2023-12-03 12:18:40','2023-12-03 12:24:34'),(801,30,'team','172.71.186.145',6,'freelance',NULL,NULL,'2023-12-03 12:24:54','2023-12-03 12:30:53'),(802,6,'yagoman','172.64.236.28',1,'First Server',NULL,NULL,'2023-12-03 13:11:55','2023-12-03 13:12:40'),(803,6,'yagoman','172.64.236.28',1,'First Server',NULL,NULL,'2023-12-03 13:12:43','2023-12-03 13:22:01'),(804,30,'team','141.101.68.219',6,'freelance',NULL,NULL,'2023-12-03 14:56:31','2023-12-03 15:14:57'),(805,30,'team','141.101.68.219',6,'freelance',NULL,NULL,'2023-12-03 15:15:41','2023-12-03 15:50:35'),(806,30,'team','172.71.186.17',6,'freelance',NULL,NULL,'2023-12-03 16:34:29','2023-12-03 16:35:09'),(807,30,'team','172.71.186.17',6,'freelance',NULL,NULL,'2023-12-03 16:35:17','2023-12-03 16:39:57'),(808,30,'team','172.71.186.17',6,'freelance',NULL,NULL,'2023-12-03 16:56:17','2023-12-03 17:06:01'),(809,30,'team','172.71.186.17',6,'freelance',NULL,NULL,'2023-12-03 17:10:30','2023-12-03 17:25:35'),(810,30,'team','172.71.186.17',6,'freelance',NULL,NULL,'2023-12-03 17:34:51','2023-12-03 19:04:01'),(811,30,'team','172.71.186.17',6,'freelance',NULL,NULL,'2023-12-03 19:04:27','2023-12-03 19:23:53'),(812,30,'team','172.71.186.17',6,'freelance',NULL,NULL,'2023-12-03 19:24:31','2023-12-03 19:25:15'),(813,30,'team','172.71.186.17',6,'freelance',NULL,NULL,'2023-12-03 19:26:08','2023-12-03 19:27:02'),(814,30,'team','172.71.186.17',6,'freelance',NULL,NULL,'2023-12-03 19:27:26','2023-12-03 19:27:59'),(815,30,'team','172.71.186.17',6,'freelance',NULL,NULL,'2023-12-03 19:31:23','2023-12-03 19:50:14'),(816,30,'team','172.71.186.17',6,'freelance',NULL,NULL,'2023-12-03 19:50:20','2023-12-03 19:58:18'),(817,30,'team','172.71.186.17',6,'freelance',NULL,NULL,'2023-12-03 20:03:07','2023-12-03 20:46:26'),(818,30,'team','172.71.186.17',6,'freelance',NULL,NULL,'2023-12-03 20:56:43','2023-12-03 21:06:01'),(819,30,'team','172.71.186.17',6,'freelance',NULL,NULL,'2023-12-03 21:06:50','2023-12-03 21:15:00'),(820,17,'cooley','172.70.46.56',1,'First Server',NULL,NULL,'2023-12-03 21:43:25','2023-12-03 23:01:49'),(821,17,'cooley','172.70.46.56',1,'First Server',NULL,NULL,'2023-12-03 23:12:34','2023-12-04 07:40:02'),(822,30,'team','162.158.22.82',6,'freelance',NULL,NULL,'2023-12-04 04:39:27','2023-12-04 05:03:31'),(823,30,'team','162.158.22.82',6,'freelance',NULL,NULL,'2023-12-04 05:23:12','2023-12-04 06:07:34'),(824,30,'team','162.158.22.82',6,'freelance',NULL,NULL,'2023-12-04 06:08:59','2023-12-04 06:11:18'),(825,30,'team','162.158.22.82',6,'freelance',NULL,NULL,'2023-12-04 06:12:33','2023-12-04 06:15:46'),(826,30,'team','162.158.22.82',6,'freelance',NULL,NULL,'2023-12-04 06:21:46','2023-12-04 06:25:28'),(827,17,'cooley','172.70.46.56',1,'First Server',NULL,NULL,'2023-12-04 07:50:32','2023-12-04 08:06:41'),(828,30,'team','172.68.62.209',6,'freelance',NULL,NULL,'2023-12-04 07:55:51','2023-12-04 08:33:16'),(829,10,'olga','162.158.238.32',2,'Second Server',NULL,NULL,'2023-12-04 08:02:20','2023-12-04 13:06:47'),(830,10,'olga','162.158.238.32',1,'First Server',NULL,NULL,'2023-12-04 08:06:38','2023-12-04 13:06:47'),(831,30,'team','172.68.62.209',6,'freelance',NULL,NULL,'2023-12-04 08:33:38','2023-12-04 09:01:58'),(832,30,'team','172.68.62.209',6,'freelance',NULL,NULL,'2023-12-04 09:04:47','2023-12-04 10:12:39'),(833,10,'olga','162.158.222.105',1,'First Server',NULL,NULL,'2023-12-04 13:16:38','2023-12-04 18:27:21'),(834,30,'team','172.71.186.145',6,'freelance',NULL,NULL,'2023-12-04 14:51:47','2023-12-04 15:56:23'),(835,30,'team','141.101.68.123',6,'freelance',NULL,NULL,'2023-12-04 17:30:03','2023-12-04 17:32:04'),(836,2,'hema','172.70.91.6',6,'freelance',NULL,NULL,'2023-12-04 17:32:01','2023-12-04 17:34:40'),(837,30,'team','141.101.68.123',6,'freelance',NULL,NULL,'2023-12-04 17:34:36','2023-12-04 17:34:48'),(838,2,'hema','172.70.91.6',6,'freelance',NULL,NULL,'2023-12-04 17:34:45','2023-12-04 17:35:02'),(839,30,'team','141.101.68.123',6,'freelance',NULL,NULL,'2023-12-04 17:34:53','2023-12-04 17:35:28'),(840,30,'team','141.101.68.123',6,'freelance',NULL,NULL,'2023-12-04 17:35:30','2023-12-04 17:44:20'),(841,30,'team','141.101.68.123',6,'freelance',NULL,NULL,'2023-12-04 17:44:23','2023-12-04 17:45:18'),(842,30,'team','141.101.68.123',6,'freelance',NULL,NULL,'2023-12-04 17:45:23','2023-12-04 17:55:49'),(843,30,'team','141.101.68.123',6,'freelance',NULL,NULL,'2023-12-04 18:20:07','2023-12-04 18:21:17'),(844,30,'team','162.158.22.251',6,'freelance',NULL,NULL,'2023-12-04 21:15:43','2023-12-04 21:26:48'),(845,30,'team','162.158.22.251',6,'freelance',NULL,NULL,'2023-12-04 21:28:32','2023-12-04 21:48:29'),(846,30,'team','162.158.22.251',6,'freelance',NULL,NULL,'2023-12-04 21:49:26','2023-12-04 22:19:35'),(847,30,'team','162.158.22.251',6,'freelance',NULL,NULL,'2023-12-04 22:21:38','2023-12-04 22:26:07'),(848,30,'team','162.158.22.251',6,'freelance',NULL,NULL,'2023-12-04 22:26:44','2023-12-04 22:28:35'),(849,30,'team','162.158.22.251',6,'freelance',NULL,NULL,'2023-12-04 22:30:42','2023-12-04 22:56:34'),(850,30,'team','162.158.22.251',6,'freelance',NULL,NULL,'2023-12-04 22:56:36','2023-12-04 23:08:07'),(851,10,'olga','162.158.239.18',2,'Second Server',NULL,NULL,'2023-12-05 04:30:30','2023-12-05 05:23:36'),(852,10,'olga','141.101.105.161',2,'Second Server',NULL,NULL,'2023-12-05 08:20:47','2023-12-05 09:08:57'),(853,10,'olga','141.101.105.161',2,'Second Server',NULL,NULL,'2023-12-05 09:16:34','2023-12-05 09:22:45'),(854,10,'olga','141.101.105.161',2,'Second Server',NULL,NULL,'2023-12-05 09:57:27','2023-12-05 11:01:45'),(855,30,'team','162.158.22.180',6,'freelance',NULL,NULL,'2023-12-05 10:06:14','2023-12-05 10:09:57'),(856,30,'team','162.158.22.180',6,'freelance',NULL,NULL,'2023-12-05 10:44:14','2023-12-05 11:09:47'),(857,29,'mariusz.grela','172.68.138.198',1,'First Server',NULL,NULL,'2023-12-05 11:00:46','2023-12-05 11:03:06'),(858,29,'mariusz.grela','172.68.138.198',2,'Second Server',NULL,NULL,'2023-12-05 11:01:42','2023-12-05 11:03:06'),(859,29,'mariusz.grela','172.68.138.198',3,'3rd seever',NULL,NULL,'2023-12-05 11:02:07','2023-12-05 11:03:06'),(860,30,'team','162.158.22.180',6,'freelance',NULL,NULL,'2023-12-05 11:09:59','2023-12-05 11:41:16'),(861,30,'team','162.158.22.180',6,'freelance',NULL,NULL,'2023-12-05 11:43:17','2023-12-05 12:15:50'),(862,30,'team','162.158.22.180',6,'freelance',NULL,NULL,'2023-12-05 12:18:40','2023-12-05 12:58:24'),(863,30,'team','162.158.22.254',6,'freelance',NULL,NULL,'2023-12-05 13:03:51','2023-12-05 13:11:04'),(864,30,'team','162.158.22.254',6,'freelance',NULL,NULL,'2023-12-05 13:12:31','2023-12-05 13:16:55'),(865,30,'team','162.158.22.254',6,'freelance',NULL,NULL,'2023-12-05 13:16:56','2023-12-05 13:17:25'),(866,30,'team','162.158.22.254',6,'freelance',NULL,NULL,'2023-12-05 13:17:32','2023-12-05 13:22:49'),(867,30,'team','162.158.22.254',6,'freelance',NULL,NULL,'2023-12-05 13:22:50','2023-12-05 13:32:55'),(868,20,'Matthew','162.158.18.168',2,'Second Server',NULL,NULL,'2023-12-05 13:48:36','2023-12-05 21:03:46'),(869,29,'mariusz.grela','162.158.102.162',2,'Second Server',NULL,NULL,'2023-12-05 21:03:43','2023-12-05 21:14:15'),(870,29,'mariusz.grela','162.158.102.162',2,'Second Server',NULL,NULL,'2023-12-05 21:14:19','2023-12-05 21:27:00'),(871,29,'mariusz.grela','162.158.102.162',1,'First Server',NULL,NULL,'2023-12-05 21:23:20','2023-12-05 21:24:26'),(872,29,'mariusz.grela','162.158.102.162',3,'3rd seever',NULL,NULL,'2023-12-05 21:24:04','2023-12-05 21:27:00'),(873,29,'mariusz.grela','162.158.102.162',1,'First Server',NULL,NULL,'2023-12-05 21:24:32','2023-12-05 21:27:00'),(874,29,'mariusz.grela','162.158.102.162',2,'Second Server',NULL,NULL,'2023-12-05 21:27:00','2023-12-05 21:27:10'),(875,30,'team','162.158.22.180',6,'freelance',NULL,NULL,'2023-12-05 22:01:43','2023-12-05 22:32:42'),(876,27,'tony','162.158.186.166',1,'First Server',NULL,NULL,'2023-12-05 22:19:58','2023-12-05 22:30:25'),(877,30,'team','162.158.22.180',6,'freelance',NULL,NULL,'2023-12-05 22:33:15','2023-12-05 22:56:22'),(878,27,'tony','162.158.186.166',1,'First Server',NULL,NULL,'2023-12-05 22:37:42','2023-12-05 23:50:25'),(879,17,'cooley','172.70.46.118',1,'First Server',NULL,NULL,'2023-12-06 02:59:53','2023-12-06 04:54:55'),(880,10,'olga','162.158.238.32',3,'3rd seever',NULL,NULL,'2023-12-06 06:33:17','2023-12-06 07:14:12'),(881,10,'olga','162.158.238.32',3,'3rd seever',NULL,NULL,'2023-12-06 07:24:55','2023-12-06 07:43:49'),(882,10,'olga','162.158.238.32',3,'3rd seever',NULL,NULL,'2023-12-06 07:53:55','2023-12-06 08:39:49'),(883,10,'olga','162.158.238.32',3,'3rd seever',NULL,NULL,'2023-12-06 08:43:04','2023-12-06 12:56:48'),(884,30,'team','162.158.22.28',6,'freelance',NULL,NULL,'2023-12-06 10:34:18','2023-12-06 11:16:17'),(885,10,'olga','162.158.238.32',1,'First Server',NULL,NULL,'2023-12-06 11:00:48','2023-12-06 14:53:58'),(886,30,'team','162.158.22.235',6,'freelance',NULL,NULL,'2023-12-06 11:41:50','2023-12-06 11:56:49'),(887,30,'team','172.71.186.134',6,'freelance',NULL,NULL,'2023-12-06 12:04:40','2023-12-06 12:14:58'),(888,30,'team','172.71.186.134',6,'freelance',NULL,NULL,'2023-12-06 12:15:53','2023-12-06 12:22:01'),(889,30,'team','172.71.186.134',6,'freelance',NULL,NULL,'2023-12-06 12:26:56','2023-12-06 12:27:26'),(890,30,'team','172.71.186.134',6,'freelance',NULL,NULL,'2023-12-06 12:29:24','2023-12-06 12:33:12'),(891,30,'team','172.71.186.134',6,'freelance',NULL,NULL,'2023-12-06 12:33:48','2023-12-06 12:42:41'),(892,10,'olga','162.158.238.32',3,'3rd seever',NULL,NULL,'2023-12-06 12:58:34','2023-12-06 12:59:54'),(893,10,'olga','162.158.238.32',2,'Second Server',NULL,NULL,'2023-12-06 13:00:21','2023-12-06 13:08:03'),(894,10,'olga','162.158.238.32',3,'3rd seever',NULL,NULL,'2023-12-06 13:02:33','2023-12-06 13:08:03'),(895,10,'olga','162.158.238.32',3,'3rd seever',NULL,NULL,'2023-12-06 13:08:46','2023-12-06 14:00:55'),(896,10,'olga','162.158.238.32',2,'Second Server',NULL,NULL,'2023-12-06 13:16:24','2023-12-06 14:00:55'),(897,30,'team','172.71.186.135',6,'freelance',NULL,NULL,'2023-12-06 14:23:45','2023-12-06 14:24:17'),(898,30,'team','172.71.186.135',6,'freelance',NULL,NULL,'2023-12-06 14:26:25','2023-12-06 14:27:00'),(899,30,'team','172.71.186.135',6,'freelance',NULL,NULL,'2023-12-06 14:31:07','2023-12-06 16:29:48'),(900,10,'olga','162.158.238.32',2,'Second Server',NULL,NULL,'2023-12-06 14:48:32','2023-12-06 16:52:06'),(901,10,'olga','162.158.238.32',3,'3rd seever',NULL,NULL,'2023-12-06 14:49:36','2023-12-06 16:52:06'),(902,6,'yagoman','188.114.111.131',1,'First Server',NULL,NULL,'2023-12-06 16:32:35','2023-12-06 16:33:28'),(903,30,'team','172.71.186.16',6,'freelance',NULL,NULL,'2023-12-06 16:47:58','2023-12-06 17:05:51'),(904,30,'team','172.71.186.16',6,'freelance',NULL,NULL,'2023-12-06 17:20:44','2023-12-06 17:21:27'),(905,30,'team','172.71.186.16',6,'freelance',NULL,NULL,'2023-12-06 17:21:28','2023-12-06 17:23:22'),(906,30,'team','172.71.186.16',6,'freelance',NULL,NULL,'2023-12-06 17:23:23','2023-12-06 17:49:49'),(907,29,'mariusz.grela','162.158.103.102',2,'Second Server',NULL,NULL,'2023-12-06 19:03:30','2023-12-06 19:03:46'),(908,29,'mariusz.grela','162.158.103.102',2,'Second Server',NULL,NULL,'2023-12-06 19:03:47','2023-12-06 19:25:18'),(909,29,'mariusz.grela','162.158.103.102',2,'Second Server',NULL,NULL,'2023-12-06 19:25:19','2023-12-06 20:43:57'),(910,29,'mariusz.grela','162.158.103.102',2,'Second Server',NULL,NULL,'2023-12-06 20:58:38','2023-12-06 20:59:08'),(911,10,'olga','162.158.238.79',2,'Second Server',NULL,NULL,'2023-12-07 06:51:52','2023-12-07 08:50:31'),(912,10,'olga','162.158.239.74',2,'Second Server',NULL,NULL,'2023-12-07 08:55:53','2023-12-07 09:20:40'),(913,10,'olga','162.158.239.74',2,'Second Server',NULL,NULL,'2023-12-07 09:21:44','2023-12-07 09:24:19'),(914,30,'team','162.158.22.28',6,'freelance',NULL,NULL,'2023-12-07 09:25:43','2023-12-07 10:34:56'),(915,20,'Matthew','162.158.18.89',2,'Second Server',NULL,NULL,'2023-12-07 10:48:11','2023-12-07 14:03:17'),(916,30,'team','162.158.22.180',6,'freelance',NULL,NULL,'2023-12-07 12:14:01','2023-12-07 12:24:03'),(917,30,'team','172.71.186.135',6,'freelance',NULL,NULL,'2023-12-07 12:54:43','2023-12-07 13:35:22'),(918,30,'team','172.71.186.135',6,'freelance',NULL,NULL,'2023-12-07 13:35:32','2023-12-07 13:51:39'),(919,30,'team','172.71.186.135',6,'freelance',NULL,NULL,'2023-12-07 13:51:48','2023-12-07 14:05:40'),(920,10,'olga','162.158.239.73',2,'Second Server',NULL,NULL,'2023-12-07 14:03:14','2023-12-07 16:20:16'),(921,30,'team','172.71.186.135',6,'freelance',NULL,NULL,'2023-12-07 14:06:59','2023-12-07 14:41:07'),(922,30,'team','172.71.186.135',6,'freelance',NULL,NULL,'2023-12-07 14:41:12','2023-12-07 15:03:06'),(923,30,'team','172.71.186.135',6,'freelance',NULL,NULL,'2023-12-07 15:04:16','2023-12-07 15:04:48'),(924,30,'team','172.71.186.135',6,'freelance',NULL,NULL,'2023-12-07 15:06:06','2023-12-07 15:30:27'),(925,10,'olga','162.158.239.18',3,'3rd seever',NULL,NULL,'2023-12-07 16:20:46','2023-12-07 18:25:57'),(926,30,'team','162.158.23.2',6,'freelance',NULL,NULL,'2023-12-07 17:22:43','2023-12-07 18:04:01'),(927,30,'team','162.158.23.2',6,'freelance',NULL,NULL,'2023-12-07 18:04:22','2023-12-07 18:15:11'),(928,10,'olga','162.158.238.32',2,'Second Server',NULL,NULL,'2023-12-07 18:59:40','2023-12-07 19:40:47'),(929,27,'tony','162.158.90.206',2,'Second Server',NULL,NULL,'2023-12-07 21:04:33','2023-12-07 21:25:40'),(930,4,'pablojoy','172.71.114.7',2,'Second Server',NULL,NULL,'2023-12-07 21:25:37','2023-12-07 21:50:55'),(931,28,'ghostz8520','162.158.178.170',1,'First Server',NULL,NULL,'2023-12-08 00:32:30','2023-12-08 00:43:26'),(932,28,'ghostz8520','162.158.178.170',3,'3rd seever',NULL,NULL,'2023-12-08 00:43:37','2023-12-08 00:44:21'),(933,28,'ghostz8520','162.158.178.170',1,'First Server',NULL,NULL,'2023-12-08 00:44:25','2023-12-08 02:32:14'),(934,28,'ghostz8520','162.158.178.170',2,'Second Server',NULL,NULL,'2023-12-08 02:32:24','2023-12-08 02:42:31'),(935,28,'ghostz8520','162.158.178.170',2,'Second Server',NULL,NULL,'2023-12-08 02:42:48','2023-12-08 03:00:20'),(936,10,'olga','162.158.239.73',3,'3rd seever',NULL,NULL,'2023-12-08 14:31:18','2023-12-08 14:32:37'),(937,10,'olga','162.158.239.73',2,'Second Server',NULL,NULL,'2023-12-08 14:32:59','2023-12-08 17:22:42'),(938,28,'ghostz8520','172.71.218.88',1,'First Server',NULL,NULL,'2023-12-08 14:52:36','2023-12-08 15:38:36'),(939,2,'hema','172.69.194.24',3,'3rd seever',NULL,NULL,'2023-12-09 09:14:33','2023-12-09 09:20:07'),(940,28,'ghostz8520','172.71.210.105',2,'Second Server',NULL,NULL,'2023-12-09 09:18:01','2023-12-09 09:30:10'),(941,28,'ghostz8520','172.71.210.105',1,'First Server',NULL,NULL,'2023-12-09 09:30:19','2023-12-09 11:32:34'),(942,28,'ghostz8520','172.71.210.105',2,'Second Server',NULL,NULL,'2023-12-09 09:30:38','2023-12-09 14:32:56'),(943,28,'ghostz8520','172.71.210.105',2,'Second Server',NULL,NULL,'2023-12-09 14:33:14','2023-12-09 16:31:08'),(944,28,'ghostz8520','162.158.179.109',1,'First Server',NULL,NULL,'2023-12-10 03:20:42','2023-12-10 03:21:18'),(945,28,'ghostz8520','162.158.179.109',2,'Second Server',NULL,NULL,'2023-12-10 03:21:25','2023-12-10 03:22:51'),(946,30,'team','162.158.23.67',6,'freelance',NULL,NULL,'2023-12-10 14:05:04','2023-12-10 17:01:16'),(947,28,'ghostz8520','172.71.219.84',2,'Second Server',NULL,NULL,'2023-12-10 15:04:50','2023-12-10 15:06:47'),(948,28,'ghostz8520','172.71.219.84',3,'3rd seever',NULL,NULL,'2023-12-10 15:06:58','2023-12-10 15:08:06'),(949,31,'luxesquire','162.158.245.77',3,'3rd seever',NULL,NULL,'2023-12-10 17:19:24','2023-12-10 17:56:24'),(950,2,'hema','172.70.91.78',3,'3rd seever',NULL,NULL,'2023-12-10 17:56:19','2023-12-10 17:57:20'),(951,31,'luxesquire','162.158.245.54',3,'3rd seever',NULL,NULL,'2023-12-10 17:58:06','2023-12-10 18:03:06'),(952,30,'team','162.158.22.180',6,'freelance',NULL,NULL,'2023-12-10 18:00:36','2023-12-10 18:07:42'),(953,31,'luxesquire','162.158.245.54',1,'First Server',NULL,NULL,'2023-12-10 18:03:28','2023-12-10 19:51:45'),(954,30,'team','162.158.22.180',6,'freelance',NULL,NULL,'2023-12-10 18:10:08','2023-12-10 18:31:02'),(955,30,'team','162.158.22.180',6,'freelance',NULL,NULL,'2023-12-10 18:31:16','2023-12-10 18:32:29'),(956,30,'team','162.158.22.180',6,'freelance',NULL,NULL,'2023-12-10 18:33:52','2023-12-10 18:36:22'),(957,30,'team','162.158.22.180',6,'freelance',NULL,NULL,'2023-12-10 18:38:40','2023-12-10 18:42:10'),(958,30,'team','162.158.22.180',6,'freelance',NULL,NULL,'2023-12-10 18:47:28','2023-12-10 18:58:26'),(959,30,'team','162.158.22.199',6,'freelance',NULL,NULL,'2023-12-10 20:07:00','2023-12-10 20:26:11'),(960,30,'team','172.71.186.76',6,'freelance',NULL,NULL,'2023-12-10 23:21:57','2023-12-10 23:23:30'),(961,30,'team','172.71.186.76',6,'freelance',NULL,NULL,'2023-12-10 23:26:18','2023-12-10 23:26:23'),(962,30,'team','172.71.186.76',6,'freelance',NULL,NULL,'2023-12-10 23:27:12','2023-12-10 23:29:09'),(963,30,'team','172.71.186.76',6,'freelance',NULL,NULL,'2023-12-10 23:30:00','2023-12-10 23:30:30'),(964,30,'team','172.71.186.76',6,'freelance',NULL,NULL,'2023-12-10 23:31:06','2023-12-10 23:32:23'),(965,30,'team','172.71.186.76',6,'freelance',NULL,NULL,'2023-12-10 23:32:33','2023-12-10 23:36:47'),(966,30,'team','172.71.186.76',6,'freelance',NULL,NULL,'2023-12-10 23:38:36','2023-12-10 23:39:44'),(967,30,'team','172.71.186.76',6,'freelance',NULL,NULL,'2023-12-10 23:45:08','2023-12-10 23:47:57'),(968,11,'vipin','162.158.23.2',3,'3rd seever',NULL,NULL,'2023-12-11 00:43:21','2023-12-11 00:44:28'),(969,11,'vipin','162.158.23.2',2,'Second Server',NULL,NULL,'2023-12-11 00:43:58','2023-12-11 02:05:30'),(970,30,'team','172.71.186.77',6,'freelance',NULL,NULL,'2023-12-11 05:57:30','2023-12-11 06:01:22'),(971,30,'team','172.71.186.77',6,'freelance',NULL,NULL,'2023-12-11 06:02:25','2023-12-11 06:17:22'),(972,30,'team','172.71.186.77',6,'freelance',NULL,NULL,'2023-12-11 06:17:59','2023-12-11 06:19:32'),(973,30,'team','172.71.186.77',6,'freelance',NULL,NULL,'2023-12-11 06:24:09','2023-12-11 06:27:15'),(974,30,'team','172.71.186.77',6,'freelance',NULL,NULL,'2023-12-11 06:28:45','2023-12-11 06:33:17'),(975,30,'team','172.71.186.77',6,'freelance',NULL,NULL,'2023-12-11 06:36:16','2023-12-11 06:36:39'),(976,30,'team','172.71.186.77',6,'freelance',NULL,NULL,'2023-12-11 06:36:59','2023-12-11 06:51:21'),(977,30,'team','172.71.186.77',6,'freelance',NULL,NULL,'2023-12-11 06:51:36','2023-12-11 07:00:28'),(978,24,'szymon','162.158.103.232',2,'Second Server',NULL,NULL,'2023-12-11 08:55:23','2023-12-11 09:08:43'),(979,4,'pablojoy','172.71.114.7',2,'Second Server',NULL,NULL,'2023-12-11 09:14:14','2023-12-11 09:15:56'),(980,4,'pablojoy','172.71.114.7',2,'Second Server',NULL,NULL,'2023-12-11 09:15:57','2023-12-11 09:19:41'),(981,30,'team','172.68.62.17',6,'freelance',NULL,NULL,'2023-12-11 10:57:03','2023-12-11 11:10:57'),(982,30,'team','172.68.62.17',6,'freelance',NULL,NULL,'2023-12-11 11:11:06','2023-12-11 12:26:05'),(983,10,'olga','162.158.239.18',3,'3rd seever',NULL,NULL,'2023-12-11 11:43:01','2023-12-11 12:25:03'),(984,28,'ghostz8520','162.158.179.110',3,'3rd seever',NULL,NULL,'2023-12-11 12:24:59','2023-12-11 12:25:31'),(985,28,'ghostz8520','162.158.179.110',2,'Second Server',NULL,NULL,'2023-12-11 12:25:39','2023-12-11 12:27:15'),(986,30,'team','172.68.62.17',6,'freelance',NULL,NULL,'2023-12-11 12:26:31','2023-12-11 13:11:52'),(987,28,'ghostz8520','162.158.179.110',1,'First Server',NULL,NULL,'2023-12-11 12:27:22','2023-12-11 12:28:20'),(988,10,'olga','162.158.239.18',3,'3rd seever',NULL,NULL,'2023-12-11 13:16:44','2023-12-11 13:17:05'),(989,10,'olga','162.158.239.18',3,'3rd seever',NULL,NULL,'2023-12-11 13:17:07','2023-12-11 15:00:56'),(990,10,'olga','162.158.239.18',3,'3rd seever',NULL,NULL,'2023-12-11 15:11:57','2023-12-11 16:11:42'),(991,10,'olga','162.158.239.18',2,'Second Server',NULL,NULL,'2023-12-11 16:12:10','2023-12-11 18:26:27'),(992,30,'team','172.71.186.249',6,'freelance',NULL,NULL,'2023-12-11 19:21:45','2023-12-11 19:33:03'),(993,20,'Matthew','162.158.18.112',2,'Second Server',NULL,NULL,'2023-12-11 21:11:30','2023-12-12 01:06:19'),(994,30,'team','162.158.22.163',6,'freelance',NULL,NULL,'2023-12-11 21:41:52','2023-12-11 22:44:39'),(995,20,'Matthew','162.158.18.112',2,'Second Server',NULL,NULL,'2023-12-12 01:17:10','2023-12-12 01:47:04'),(996,20,'Matthew','162.158.18.112',2,'Second Server',NULL,NULL,'2023-12-12 01:57:10','2023-12-12 06:46:24'),(997,10,'olga','162.158.239.73',2,'Second Server',NULL,NULL,'2023-12-12 06:46:21','2023-12-12 06:56:24'),(998,10,'olga','162.158.239.73',3,'3rd seever',NULL,NULL,'2023-12-12 06:57:26','2023-12-12 08:52:34'),(999,10,'olga','162.158.239.73',1,'First Server',NULL,NULL,'2023-12-12 06:58:43','2023-12-12 08:52:34'),(1000,10,'olga','162.158.239.73',2,'Second Server',NULL,NULL,'2023-12-12 06:59:28','2023-12-12 08:52:34'),(1001,20,'Matthew','162.158.18.50',2,'Second Server',NULL,NULL,'2023-12-12 10:21:48','2023-12-12 11:04:28'),(1002,20,'Matthew','141.101.104.86',2,'Second Server',NULL,NULL,'2023-12-12 13:58:54','2023-12-12 13:59:21'),(1003,20,'Matthew','141.101.104.86',1,'First Server',NULL,NULL,'2023-12-12 13:59:25','2023-12-12 14:01:18'),(1004,20,'Matthew','141.101.104.86',3,'3rd seever',NULL,NULL,'2023-12-12 14:01:23','2023-12-12 21:52:25'),(1005,30,'team','172.68.62.95',6,'freelance',NULL,NULL,'2023-12-12 17:34:48','2023-12-12 17:45:33'),(1006,30,'team','172.68.62.95',6,'freelance',NULL,NULL,'2023-12-12 17:45:56','2023-12-12 17:51:19'),(1007,30,'team','172.68.62.95',6,'freelance',NULL,NULL,'2023-12-12 17:58:56','2023-12-12 18:02:16'),(1008,30,'team','172.68.62.95',6,'freelance',NULL,NULL,'2023-12-12 18:02:32','2023-12-12 18:11:00'),(1009,30,'team','172.68.62.95',6,'freelance',NULL,NULL,'2023-12-12 18:11:28','2023-12-12 18:14:13'),(1010,30,'team','172.68.62.95',6,'freelance',NULL,NULL,'2023-12-12 18:14:42','2023-12-12 18:16:18'),(1011,30,'team','172.68.62.95',6,'freelance',NULL,NULL,'2023-12-12 18:17:13','2023-12-12 18:24:15'),(1012,30,'team','172.68.62.95',6,'freelance',NULL,NULL,'2023-12-12 18:25:17','2023-12-12 18:33:28'),(1013,30,'team','172.68.62.95',6,'freelance',NULL,NULL,'2023-12-12 18:33:55','2023-12-12 18:38:35'),(1014,30,'team','172.68.62.95',6,'freelance',NULL,NULL,'2023-12-12 18:39:07','2023-12-12 18:41:50'),(1015,30,'team','172.68.62.95',6,'freelance',NULL,NULL,'2023-12-12 18:43:19','2023-12-12 18:43:48'),(1016,30,'team','172.68.62.16',6,'freelance',NULL,NULL,'2023-12-12 21:47:22','2023-12-12 22:00:49'),(1017,20,'Matthew','141.101.104.86',1,'First Server',NULL,NULL,'2023-12-12 21:52:30','2023-12-12 22:04:25'),(1018,20,'Matthew','141.101.104.86',1,'First Server',NULL,NULL,'2023-12-12 22:04:27','2023-12-12 22:05:20'),(1019,20,'Matthew','141.101.104.86',1,'First Server',NULL,NULL,'2023-12-12 22:05:26','2023-12-12 22:07:12'),(1020,20,'Matthew','141.101.104.86',1,'First Server',NULL,NULL,'2023-12-12 22:07:13','2023-12-12 22:07:13'),(1021,20,'Matthew','141.101.104.86',1,'First Server',NULL,NULL,'2023-12-12 22:07:14','2023-12-12 22:07:49'),(1022,20,'Matthew','141.101.104.86',1,'First Server',NULL,NULL,'2023-12-12 22:07:51','2023-12-12 22:07:52'),(1023,20,'Matthew','141.101.104.86',2,'Second Server',NULL,NULL,'2023-12-12 22:08:05','2023-12-12 22:35:54'),(1024,30,'team','172.68.62.16',6,'freelance',NULL,NULL,'2023-12-12 22:29:58','2023-12-13 00:10:44'),(1025,20,'Matthew','141.101.104.86',2,'Second Server',NULL,NULL,'2023-12-12 22:35:54','2023-12-13 06:45:47'),(1026,30,'team','172.68.62.16',6,'freelance',NULL,NULL,'2023-12-13 00:11:10','2023-12-13 00:12:24'),(1027,30,'team','172.68.62.16',6,'freelance',NULL,NULL,'2023-12-13 00:12:30','2023-12-13 00:16:32'),(1028,30,'team','172.68.62.16',6,'freelance',NULL,NULL,'2023-12-13 00:16:56','2023-12-13 00:22:58'),(1029,30,'team','172.68.62.16',6,'freelance',NULL,NULL,'2023-12-13 00:23:25','2023-12-13 00:27:53'),(1030,30,'team','172.68.62.16',6,'freelance',NULL,NULL,'2023-12-13 00:28:01','2023-12-13 00:28:47'),(1031,30,'team','172.68.62.16',6,'freelance',NULL,NULL,'2023-12-13 00:29:11','2023-12-13 00:30:54'),(1032,30,'team','172.68.62.16',6,'freelance',NULL,NULL,'2023-12-13 00:31:42','2023-12-13 00:33:57'),(1033,30,'team','172.68.62.16',6,'freelance',NULL,NULL,'2023-12-13 00:34:09','2023-12-13 00:38:31'),(1034,30,'team','172.68.62.16',6,'freelance',NULL,NULL,'2023-12-13 00:38:45','2023-12-13 00:40:28'),(1035,30,'team','172.68.62.16',6,'freelance',NULL,NULL,'2023-12-13 00:40:39','2023-12-13 01:39:33'),(1036,30,'team','172.68.62.16',6,'freelance',NULL,NULL,'2023-12-13 01:40:07','2023-12-13 01:40:07'),(1037,30,'team','172.68.62.16',6,'freelance',NULL,NULL,'2023-12-13 01:40:13','2023-12-13 01:43:33'),(1038,20,'Matthew','141.101.104.86',2,'Second Server',NULL,NULL,'2023-12-13 06:56:11','2023-12-13 07:28:19'),(1039,20,'Matthew','141.101.104.86',2,'Second Server',NULL,NULL,'2023-12-13 07:38:12','2023-12-13 07:41:49'),(1040,20,'Matthew','141.101.104.86',2,'Second Server',NULL,NULL,'2023-12-13 07:52:11','2023-12-13 08:00:25'),(1041,20,'Matthew','141.101.104.86',2,'Second Server',NULL,NULL,'2023-12-13 08:10:12','2023-12-13 08:31:42'),(1042,20,'Matthew','141.101.104.86',2,'Second Server',NULL,NULL,'2023-12-13 08:42:12','2023-12-13 08:57:18'),(1043,10,'olga','172.71.103.8',2,'Second Server',NULL,NULL,'2023-12-13 08:57:15','2023-12-13 09:15:19'),(1044,10,'olga','172.71.103.8',1,'First Server',NULL,NULL,'2023-12-13 08:57:56','2023-12-13 09:15:19'),(1045,10,'olga','172.71.103.8',3,'3rd seever',NULL,NULL,'2023-12-13 08:58:22','2023-12-13 09:15:19'),(1046,32,'legacymail','172.71.147.179',1,'First Server',NULL,NULL,'2023-12-13 09:29:42','2023-12-13 09:30:10'),(1047,32,'legacymail','172.71.147.179',1,'First Server',NULL,NULL,'2023-12-13 09:30:13','2023-12-13 09:37:50'),(1048,32,'legacymail','172.71.147.179',2,'Second Server',NULL,NULL,'2023-12-13 09:38:02','2023-12-13 09:39:23'),(1049,32,'legacymail','172.71.147.179',2,'Second Server',NULL,NULL,'2023-12-13 09:39:47','2023-12-13 11:03:19'),(1050,27,'tony','162.158.187.16',1,'First Server',NULL,NULL,'2023-12-13 14:55:37','2023-12-13 15:24:15'),(1051,27,'tony','162.158.187.16',1,'First Server',NULL,NULL,'2023-12-13 15:55:30','2023-12-13 16:14:06'),(1052,30,'team','162.158.22.15',6,'freelance',NULL,NULL,'2023-12-13 16:45:23','2023-12-13 16:50:57'),(1053,30,'team','162.158.22.15',6,'freelance',NULL,NULL,'2023-12-13 16:51:23','2023-12-13 17:21:01'),(1054,27,'tony','162.158.187.16',1,'First Server',NULL,NULL,'2023-12-13 17:04:30','2023-12-13 17:21:31'),(1055,27,'tony','162.158.187.16',1,'First Server',NULL,NULL,'2023-12-13 17:32:30','2023-12-13 17:41:34'),(1056,27,'tony','162.158.187.16',3,'3rd seever',NULL,NULL,'2023-12-13 17:41:44','2023-12-13 17:46:30'),(1057,27,'tony','162.158.187.16',2,'Second Server',NULL,NULL,'2023-12-13 17:46:36','2023-12-13 17:49:39'),(1058,27,'tony','162.158.187.16',2,'Second Server',NULL,NULL,'2023-12-13 17:49:44','2023-12-13 17:53:09'),(1059,27,'tony','162.158.187.16',2,'Second Server',NULL,NULL,'2023-12-13 17:53:25','2023-12-13 18:03:44'),(1060,30,'team','172.68.62.120',6,'freelance',NULL,NULL,'2023-12-13 22:34:53','2023-12-13 23:12:19'),(1061,30,'team','162.158.22.107',6,'freelance',NULL,NULL,'2023-12-14 01:04:44','2023-12-14 01:14:45'),(1062,30,'team','162.158.22.107',6,'freelance',NULL,NULL,'2023-12-14 01:17:44','2023-12-14 01:27:38'),(1063,30,'team','162.158.22.107',6,'freelance',NULL,NULL,'2023-12-14 01:28:30','2023-12-14 02:27:28'),(1064,30,'team','162.158.22.107',6,'freelance',NULL,NULL,'2023-12-14 02:27:53','2023-12-14 02:32:43'),(1065,30,'team','162.158.22.107',6,'freelance',NULL,NULL,'2023-12-14 02:33:19','2023-12-14 03:14:18'),(1066,31,'luxesquire','162.158.245.75',1,'First Server',NULL,NULL,'2023-12-14 08:30:37','2023-12-14 08:40:55'),(1067,20,'Matthew','162.158.210.23',1,'First Server',NULL,NULL,'2023-12-14 09:15:05','2023-12-14 09:15:16'),(1068,20,'Matthew','162.158.210.23',2,'Second Server',NULL,NULL,'2023-12-14 09:15:22','2023-12-14 10:34:30'),(1069,10,'olga','172.71.98.116',2,'Second Server',NULL,NULL,'2023-12-14 10:34:26','2023-12-14 11:12:07'),(1070,10,'olga','172.71.98.116',3,'3rd seever',NULL,NULL,'2023-12-14 10:35:04','2023-12-14 11:12:07'),(1071,10,'olga','172.71.98.116',1,'First Server',NULL,NULL,'2023-12-14 10:35:38','2023-12-14 11:12:07'),(1072,10,'olga','172.70.46.187',3,'3rd seever',NULL,NULL,'2023-12-14 12:25:51','2023-12-14 15:26:07'),(1073,29,'mariusz.grela','162.158.102.26',1,'First Server',NULL,NULL,'2023-12-14 15:21:43','2023-12-14 15:23:55'),(1074,29,'mariusz.grela','162.158.102.26',1,'First Server',NULL,NULL,'2023-12-14 15:23:56','2023-12-14 15:24:12'),(1075,29,'mariusz.grela','162.158.102.26',1,'First Server',NULL,NULL,'2023-12-14 15:24:23','2023-12-14 15:29:17'),(1076,14,'lukasz','172.71.134.247',3,'3rd seever',NULL,NULL,'2023-12-14 15:26:01','2023-12-14 15:29:10'),(1077,14,'lukasz','172.71.134.247',1,'First Server',NULL,NULL,'2023-12-14 15:29:14','2023-12-14 15:56:26'),(1078,29,'mariusz.grela','162.158.102.102',2,'Second Server',NULL,NULL,'2023-12-14 15:34:58','2023-12-14 15:39:31'),(1079,29,'mariusz.grela','162.158.102.102',3,'3rd seever',NULL,NULL,'2023-12-14 15:39:43','2023-12-14 16:19:18'),(1080,14,'lukasz','172.71.134.247',2,'Second Server',NULL,NULL,'2023-12-14 15:56:31','2023-12-14 16:18:17'),(1081,30,'team','172.71.115.58',6,'freelance',NULL,NULL,'2023-12-14 17:37:30','2023-12-14 18:14:25'),(1082,30,'team','172.71.115.58',6,'freelance',NULL,NULL,'2023-12-14 18:14:53','2023-12-14 18:33:04'),(1083,30,'team','172.71.115.58',6,'freelance',NULL,NULL,'2023-12-14 18:33:53','2023-12-14 18:37:05'),(1084,30,'team','172.71.115.58',6,'freelance',NULL,NULL,'2023-12-14 18:39:47','2023-12-14 19:03:45'),(1085,30,'team','172.71.115.58',6,'freelance',NULL,NULL,'2023-12-14 19:04:15','2023-12-14 19:07:49'),(1086,30,'team','172.71.115.58',6,'freelance',NULL,NULL,'2023-12-14 19:08:04','2023-12-14 19:15:23'),(1087,30,'team','172.71.115.58',6,'freelance',NULL,NULL,'2023-12-14 19:19:11','2023-12-14 19:33:14'),(1088,29,'mariusz.grela','162.158.103.245',2,'Second Server',NULL,NULL,'2023-12-14 20:58:53','2023-12-14 21:28:56'),(1089,29,'mariusz.grela','162.158.103.245',2,'Second Server',NULL,NULL,'2023-12-14 21:28:57','2023-12-14 21:38:19'),(1090,29,'mariusz.grela','162.158.103.245',2,'Second Server',NULL,NULL,'2023-12-14 21:38:25','2023-12-14 21:47:35'),(1091,9,'jeff','172.69.214.181',2,'Second Server',NULL,NULL,'2023-12-14 23:07:17','2023-12-14 23:16:16'),(1092,9,'jeff','172.69.214.181',2,'Second Server',NULL,NULL,'2023-12-14 23:17:31','2023-12-14 23:19:57'),(1093,30,'team','172.68.62.106',6,'freelance',NULL,NULL,'2023-12-15 01:14:11','2023-12-15 02:06:45'),(1094,30,'team','172.68.62.106',6,'freelance',NULL,NULL,'2023-12-15 02:07:16','2023-12-15 02:54:15'),(1095,10,'olga','172.71.98.242',3,'3rd seever',NULL,NULL,'2023-12-15 05:29:09','2023-12-15 06:12:06'),(1096,10,'olga','172.71.98.242',3,'3rd seever',NULL,NULL,'2023-12-15 06:21:59','2023-12-15 07:35:30'),(1097,10,'olga','162.158.239.73',3,'3rd seever',NULL,NULL,'2023-12-15 09:42:49','2023-12-15 12:25:49'),(1098,29,'mariusz.grela','162.158.102.229',2,'Second Server',NULL,NULL,'2023-12-15 10:16:53','2023-12-15 10:46:45'),(1099,29,'mariusz.grela','162.158.102.229',2,'Second Server',NULL,NULL,'2023-12-15 10:47:02','2023-12-15 10:47:45'),(1100,4,'pablojoy','172.71.114.11',1,'First Server',NULL,NULL,'2023-12-15 11:39:02','2023-12-15 11:49:48'),(1101,10,'olga','162.158.239.73',2,'Second Server',NULL,NULL,'2023-12-15 12:26:04','2023-12-15 12:28:49'),(1102,10,'olga','162.158.239.73',3,'3rd seever',NULL,NULL,'2023-12-15 12:29:03','2023-12-15 12:34:42'),(1103,14,'lukasz','172.70.47.20',2,'Second Server',NULL,NULL,'2023-12-15 13:17:40','2023-12-15 14:16:36'),(1104,30,'team','162.158.23.57',6,'freelance',NULL,NULL,'2023-12-17 10:50:05','2023-12-17 12:40:17'),(1105,20,'Matthew','141.101.105.39',2,'Second Server',NULL,NULL,'2023-12-17 13:32:08','2023-12-17 14:41:49'),(1106,24,'szymon','162.158.102.102',3,'3rd seever',NULL,NULL,'2023-12-17 14:32:16','2023-12-17 14:50:49'),(1107,24,'szymon','162.158.102.102',2,'Second Server',NULL,NULL,'2023-12-17 14:41:45','2023-12-17 14:50:49'),(1108,24,'szymon','162.158.102.102',1,'First Server',NULL,NULL,'2023-12-17 14:50:02','2023-12-17 14:50:49'),(1109,24,'szymon','162.158.102.102',1,'First Server',NULL,NULL,'2023-12-17 14:51:07','2023-12-17 14:54:44'),(1110,24,'szymon','162.158.102.102',3,'3rd seever',NULL,NULL,'2023-12-17 14:54:51','2023-12-17 14:57:36'),(1111,30,'team','172.71.186.249',6,'freelance',NULL,NULL,'2023-12-17 16:01:12','2023-12-17 17:02:49'),(1112,30,'team','172.71.186.249',6,'freelance',NULL,NULL,'2023-12-17 17:04:04','2023-12-17 17:58:03'),(1113,10,'olga','162.158.239.17',3,'3rd seever',NULL,NULL,'2023-12-17 17:40:02','2023-12-18 03:34:56'),(1114,10,'olga','162.158.239.17',3,'3rd seever',NULL,NULL,'2023-12-18 03:46:01','2023-12-18 05:00:34'),(1115,10,'olga','162.158.239.17',3,'3rd seever',NULL,NULL,'2023-12-18 05:11:01','2023-12-18 05:30:45'),(1116,10,'olga','162.158.239.17',3,'3rd seever',NULL,NULL,'2023-12-18 05:41:01','2023-12-18 08:36:44'),(1117,10,'olga','162.158.239.17',2,'Second Server',NULL,NULL,'2023-12-18 06:20:59','2023-12-18 08:36:14'),(1118,20,'Matthew','141.101.105.40',2,'Second Server',NULL,NULL,'2023-12-18 12:14:55','2023-12-18 12:17:58'),(1119,20,'Matthew','141.101.105.40',2,'Second Server',NULL,NULL,'2023-12-18 12:18:13','2023-12-18 12:22:39'),(1120,20,'Matthew','141.101.105.40',2,'Second Server',NULL,NULL,'2023-12-18 12:23:33','2023-12-18 14:13:13'),(1121,30,'team','172.68.62.217',6,'freelance',NULL,NULL,'2023-12-18 14:11:29','2023-12-18 14:14:33'),(1122,14,'lukasz','162.158.103.231',2,'Second Server',NULL,NULL,'2023-12-18 14:13:10','2023-12-18 14:13:45'),(1123,20,'Matthew','141.101.105.40',2,'Second Server',NULL,NULL,'2023-12-18 14:13:42','2023-12-18 14:30:32'),(1124,14,'lukasz','162.158.103.231',3,'3rd seever',NULL,NULL,'2023-12-18 14:14:10','2023-12-18 14:39:04'),(1125,20,'Matthew','141.101.105.40',2,'Second Server',NULL,NULL,'2023-12-18 14:30:48','2023-12-18 16:47:33'),(1126,10,'olga','162.158.239.17',3,'3rd seever',NULL,NULL,'2023-12-18 14:39:01','2023-12-18 14:47:43'),(1127,10,'olga','162.158.239.17',3,'3rd seever',NULL,NULL,'2023-12-18 14:58:01','2023-12-18 16:26:18'),(1128,10,'olga','162.158.239.17',3,'3rd seever',NULL,NULL,'2023-12-18 16:37:01','2023-12-18 17:17:03'),(1129,20,'Matthew','141.101.105.40',2,'Second Server',NULL,NULL,'2023-12-18 16:55:02','2023-12-18 17:00:06'),(1130,20,'Matthew','141.101.105.40',2,'Second Server',NULL,NULL,'2023-12-18 17:00:21','2023-12-18 17:40:19'),(1131,10,'olga','162.158.239.17',3,'3rd seever',NULL,NULL,'2023-12-18 17:28:01','2023-12-18 18:58:56'),(1132,20,'Matthew','141.101.105.40',2,'Second Server',NULL,NULL,'2023-12-18 17:40:35','2023-12-18 17:52:26'),(1133,20,'Matthew','141.101.105.40',2,'Second Server',NULL,NULL,'2023-12-18 17:52:26','2023-12-18 17:58:40'),(1134,27,'tony','172.70.211.37',1,'First Server',NULL,NULL,'2023-12-18 18:02:22','2023-12-18 19:11:30'),(1135,20,'Matthew','141.101.105.40',2,'Second Server',NULL,NULL,'2023-12-18 18:38:59','2023-12-18 19:04:24'),(1136,24,'szymon','172.68.138.200',2,'Second Server',NULL,NULL,'2023-12-18 19:04:21','2023-12-18 19:21:28'),(1137,27,'tony','162.158.187.77',1,'First Server',NULL,NULL,'2023-12-18 19:53:37','2023-12-18 20:17:26'),(1138,14,'lukasz','162.158.102.228',3,'3rd seever',NULL,NULL,'2023-12-18 19:54:18','2023-12-18 20:56:24'),(1139,27,'tony','162.158.187.77',1,'First Server',NULL,NULL,'2023-12-18 20:18:51','2023-12-18 20:33:32'),(1140,27,'tony','162.158.187.77',1,'First Server',NULL,NULL,'2023-12-18 20:34:11','2023-12-18 20:55:54'),(1141,33,'Jason','162.158.186.231',1,'First Server',NULL,NULL,'2023-12-18 20:55:51','2023-12-18 20:57:54'),(1142,33,'Jason','162.158.186.231',3,'3rd seever',NULL,NULL,'2023-12-18 20:56:21','2023-12-18 20:57:52'),(1143,33,'Jason','162.158.186.231',2,'Second Server',NULL,NULL,'2023-12-18 20:56:49','2023-12-18 21:18:28'),(1144,33,'Jason','162.158.186.231',1,'First Server',NULL,NULL,'2023-12-18 21:11:48','2023-12-18 21:12:57'),(1145,27,'tony','162.158.187.77',1,'First Server',NULL,NULL,'2023-12-18 21:19:01','2023-12-18 22:10:20'),(1146,10,'olga','162.158.239.18',3,'3rd seever',NULL,NULL,'2023-12-19 07:01:02','2023-12-19 07:01:41'),(1147,10,'olga','162.158.239.18',2,'Second Server',NULL,NULL,'2023-12-19 07:02:12','2023-12-19 07:47:53'),(1148,20,'Matthew','162.158.210.27',2,'Second Server',NULL,NULL,'2023-12-19 07:47:50','2023-12-19 08:26:50'),(1149,20,'Matthew','162.158.210.27',3,'3rd seever',NULL,NULL,'2023-12-19 08:26:54','2023-12-19 08:35:34'),(1150,20,'Matthew','162.158.210.27',2,'Second Server',NULL,NULL,'2023-12-19 08:29:53','2023-12-19 12:02:19'),(1151,20,'Matthew','162.158.210.27',3,'3rd seever',NULL,NULL,'2023-12-19 08:37:37','2023-12-19 08:42:59'),(1152,20,'Matthew','162.158.210.27',3,'3rd seever',NULL,NULL,'2023-12-19 08:53:27','2023-12-19 09:03:10'),(1153,20,'Matthew','162.158.210.27',3,'3rd seever',NULL,NULL,'2023-12-19 09:13:27','2023-12-19 09:34:06'),(1154,20,'Matthew','162.158.210.27',3,'3rd seever',NULL,NULL,'2023-12-19 09:34:06','2023-12-19 09:55:54'),(1155,20,'Matthew','162.158.210.27',3,'3rd seever',NULL,NULL,'2023-12-19 10:15:02','2023-12-19 10:55:32'),(1156,14,'lukasz','141.101.76.227',3,'3rd seever',NULL,NULL,'2023-12-19 10:55:26','2023-12-19 13:07:47'),(1157,20,'Matthew','162.158.210.27',2,'Second Server',NULL,NULL,'2023-12-19 12:04:16','2023-12-19 14:34:10'),(1158,20,'Matthew','162.158.210.27',3,'3rd seever',NULL,NULL,'2023-12-19 13:07:44','2023-12-19 13:22:26'),(1159,14,'lukasz','141.101.76.227',3,'3rd seever',NULL,NULL,'2023-12-19 13:22:23','2023-12-19 15:23:24'),(1160,20,'Matthew','162.158.210.27',2,'Second Server',NULL,NULL,'2023-12-19 14:44:27','2023-12-19 16:35:53'),(1161,6,'yagoman','172.64.238.131',3,'3rd seever',NULL,NULL,'2023-12-19 15:56:06','2023-12-19 16:33:21'),(1162,20,'Matthew','162.158.210.27',2,'Second Server',NULL,NULL,'2023-12-19 16:46:27','2023-12-19 16:51:33'),(1163,20,'Matthew','162.158.210.27',2,'Second Server',NULL,NULL,'2023-12-19 17:01:27','2023-12-19 17:04:20'),(1164,20,'Matthew','162.158.210.27',3,'3rd seever',NULL,NULL,'2023-12-19 17:13:51','2023-12-19 17:43:06'),(1165,20,'Matthew','162.158.210.27',2,'Second Server',NULL,NULL,'2023-12-19 17:14:25','2023-12-19 17:34:37'),(1166,20,'Matthew','162.158.210.27',2,'Second Server',NULL,NULL,'2023-12-19 17:45:27','2023-12-19 21:25:07'),(1167,20,'Matthew','162.158.210.27',3,'3rd seever',NULL,NULL,'2023-12-19 17:53:27','2023-12-19 22:14:50'),(1168,20,'Matthew','162.158.210.27',2,'Second Server',NULL,NULL,'2023-12-19 21:35:28','2023-12-19 22:16:49'),(1169,6,'yagoman','188.114.111.78',1,'First Server',NULL,NULL,'2023-12-19 22:15:36','2023-12-19 22:16:44'),(1170,6,'yagoman','188.114.111.78',2,'Second Server',NULL,NULL,'2023-12-19 22:16:46','2023-12-19 22:17:13'),(1171,6,'yagoman','188.114.111.78',3,'3rd seever',NULL,NULL,'2023-12-19 22:17:19','2023-12-19 22:17:54'),(1172,6,'yagoman','188.114.111.78',3,'3rd seever',NULL,NULL,'2023-12-19 22:17:55','2023-12-19 22:18:28'),(1173,6,'yagoman','172.64.236.29',3,'3rd seever',NULL,NULL,'2023-12-19 22:18:58','2023-12-19 22:19:56'),(1174,6,'yagoman','172.64.236.29',1,'First Server',NULL,NULL,'2023-12-19 22:19:55','2023-12-19 22:20:10'),(1175,20,'Matthew','162.158.210.27',3,'3rd seever',NULL,NULL,'2023-12-19 22:24:27','2023-12-20 05:56:00'),(1176,2,'hema','172.69.194.53',3,'3rd seever',NULL,NULL,'2023-12-20 05:55:54','2023-12-20 05:56:27'),(1177,2,'hema','172.69.194.53',1,'First Server',NULL,NULL,'2023-12-20 05:56:31','2023-12-20 05:59:08'),(1178,10,'olga','141.101.105.40',2,'Second Server',NULL,NULL,'2023-12-20 06:43:41','2023-12-20 06:56:14'),(1179,17,'cooley','172.71.103.7',2,'Second Server',NULL,NULL,'2023-12-20 06:56:10','2023-12-20 07:21:11'),(1180,17,'cooley','172.71.103.7',2,'Second Server',NULL,NULL,'2023-12-20 07:21:23','2023-12-20 09:18:36'),(1181,17,'cooley','172.71.103.7',2,'Second Server',NULL,NULL,'2023-12-20 09:29:10','2023-12-20 09:32:05'),(1182,17,'cooley','172.71.103.7',2,'Second Server',NULL,NULL,'2023-12-20 09:32:23','2023-12-20 09:33:45'),(1183,17,'cooley','172.71.103.7',2,'Second Server',NULL,NULL,'2023-12-20 09:54:19','2023-12-20 10:26:37'),(1184,29,'mariusz.grela','172.68.139.64',2,'Second Server',NULL,NULL,'2023-12-20 10:26:34','2023-12-20 10:37:55'),(1185,29,'mariusz.grela','172.68.139.64',1,'First Server',NULL,NULL,'2023-12-20 10:27:28','2023-12-20 10:37:55'),(1186,29,'mariusz.grela','172.68.139.64',3,'3rd seever',NULL,NULL,'2023-12-20 10:28:43','2023-12-20 10:37:55'),(1187,29,'mariusz.grela','172.68.139.64',2,'Second Server',NULL,NULL,'2023-12-20 10:54:23','2023-12-20 11:02:15'),(1188,29,'mariusz.grela','172.68.139.64',3,'3rd seever',NULL,NULL,'2023-12-20 10:56:01','2023-12-20 11:02:15'),(1189,6,'yagoman','172.64.238.89',3,'3rd seever',NULL,NULL,'2023-12-20 11:13:44','2023-12-20 12:00:53'),(1190,6,'yagoman','172.64.238.89',3,'3rd seever',NULL,NULL,'2023-12-20 12:00:54','2023-12-20 13:02:05'),(1191,3,'mazen','108.162.242.54',3,'3rd seever',NULL,NULL,'2023-12-20 13:02:00','2023-12-20 13:02:13'),(1192,6,'yagoman','172.64.238.89',3,'3rd seever',NULL,NULL,'2023-12-20 13:02:09','2023-12-20 13:02:21'),(1193,3,'mazen','108.162.242.54',3,'3rd seever',NULL,NULL,'2023-12-20 13:02:18','2023-12-20 13:02:26'),(1194,6,'yagoman','172.64.238.89',3,'3rd seever',NULL,NULL,'2023-12-20 13:02:23','2023-12-20 13:08:57'),(1195,3,'mazen','108.162.242.53',1,'First Server',NULL,NULL,'2023-12-20 13:02:55','2023-12-20 13:21:48'),(1196,10,'olga','141.101.105.110',2,'Second Server',NULL,NULL,'2023-12-20 13:40:54','2023-12-20 15:18:34'),(1197,10,'olga','141.101.105.110',3,'3rd seever',NULL,NULL,'2023-12-20 13:41:30','2023-12-20 15:07:41'),(1198,10,'olga','141.101.105.110',1,'First Server',NULL,NULL,'2023-12-20 13:41:54','2023-12-20 14:29:02'),(1199,10,'olga','141.101.105.110',1,'First Server',NULL,NULL,'2023-12-20 14:29:04','2023-12-20 16:30:38'),(1200,6,'yagoman','172.64.236.49',3,'3rd seever',NULL,NULL,'2023-12-20 15:07:38','2023-12-20 15:53:12'),(1201,17,'cooley','172.71.103.70',2,'Second Server',NULL,NULL,'2023-12-20 15:22:21','2023-12-20 15:36:06'),(1202,17,'cooley','172.71.103.70',2,'Second Server',NULL,NULL,'2023-12-20 15:36:10','2023-12-20 15:42:32'),(1203,17,'cooley','172.71.103.70',2,'Second Server',NULL,NULL,'2023-12-20 15:44:00','2023-12-20 16:48:13'),(1204,6,'yagoman','172.64.236.49',3,'3rd seever',NULL,NULL,'2023-12-20 15:53:32','2023-12-20 16:40:17'),(1205,10,'olga','162.158.238.251',3,'3rd seever',NULL,NULL,'2023-12-20 18:47:17','2023-12-20 18:47:30'),(1206,10,'olga','162.158.222.48',1,'First Server',NULL,NULL,'2023-12-20 18:49:18','2023-12-20 18:54:09'),(1207,10,'olga','162.158.222.48',2,'Second Server',NULL,NULL,'2023-12-20 18:54:37','2023-12-20 18:54:59'),(1208,3,'mazen','108.162.242.53',2,'Second Server',NULL,NULL,'2023-12-20 18:54:55','2023-12-20 18:55:06'),(1209,10,'olga','162.158.222.48',2,'Second Server',NULL,NULL,'2023-12-20 18:55:01','2023-12-20 18:55:11'),(1210,3,'mazen','108.162.242.53',2,'Second Server',NULL,NULL,'2023-12-20 18:55:08','2023-12-20 18:55:16'),(1211,10,'olga','162.158.222.48',2,'Second Server',NULL,NULL,'2023-12-20 18:55:14','2023-12-20 18:55:22'),(1212,3,'mazen','108.162.242.53',2,'Second Server',NULL,NULL,'2023-12-20 18:55:19','2023-12-20 18:55:28'),(1213,10,'olga','162.158.222.48',2,'Second Server',NULL,NULL,'2023-12-20 18:55:25','2023-12-20 18:56:49'),(1214,3,'mazen','108.162.242.53',3,'3rd seever',NULL,NULL,'2023-12-20 18:55:37','2023-12-20 18:56:15'),(1215,3,'mazen','108.162.242.53',3,'3rd seever',NULL,NULL,'2023-12-20 18:56:26','2023-12-20 18:57:03'),(1216,10,'olga','162.158.222.48',3,'3rd seever',NULL,NULL,'2023-12-20 18:57:00','2023-12-20 18:57:08'),(1217,3,'mazen','108.162.242.53',3,'3rd seever',NULL,NULL,'2023-12-20 18:57:05','2023-12-20 18:57:14'),(1218,10,'olga','162.158.222.48',3,'3rd seever',NULL,NULL,'2023-12-20 18:57:10','2023-12-20 18:57:19'),(1219,3,'mazen','108.162.242.53',3,'3rd seever',NULL,NULL,'2023-12-20 18:57:15','2023-12-20 18:57:26'),(1220,10,'olga','162.158.222.48',3,'3rd seever',NULL,NULL,'2023-12-20 18:57:21','2023-12-20 18:57:32'),(1221,3,'mazen','108.162.242.53',3,'3rd seever',NULL,NULL,'2023-12-20 18:57:28','2023-12-20 18:57:37'),(1222,10,'olga','162.158.222.48',3,'3rd seever',NULL,NULL,'2023-12-20 18:57:34','2023-12-20 18:58:06'),(1223,3,'mazen','108.162.242.53',3,'3rd seever',NULL,NULL,'2023-12-20 18:58:04','2023-12-20 18:58:12'),(1224,10,'olga','162.158.222.48',3,'3rd seever',NULL,NULL,'2023-12-20 18:58:09','2023-12-20 19:40:57'),(1225,3,'mazen','108.162.242.53',1,'First Server',NULL,NULL,'2023-12-20 18:58:21','2023-12-20 22:22:54'),(1226,3,'mazen','108.162.242.53',3,'3rd seever',NULL,NULL,'2023-12-20 19:40:53','2023-12-20 21:04:53'),(1227,3,'mazen','108.162.242.53',1,'First Server',NULL,NULL,'2023-12-20 22:33:56','2023-12-20 22:44:33'),(1228,17,'cooley','172.71.99.225',3,'3rd seever',NULL,NULL,'2023-12-21 03:48:37','2023-12-21 03:51:19'),(1229,17,'cooley','172.71.99.225',1,'First Server',NULL,NULL,'2023-12-21 03:53:08','2023-12-21 03:53:37'),(1230,17,'cooley','172.71.99.225',2,'Second Server',NULL,NULL,'2023-12-21 03:54:06','2023-12-21 06:30:22'),(1231,17,'cooley','172.71.99.225',2,'Second Server',NULL,NULL,'2023-12-21 06:34:02','2023-12-21 07:28:01'),(1232,17,'cooley','172.71.99.225',2,'Second Server',NULL,NULL,'2023-12-21 07:30:51','2023-12-21 07:33:22'),(1233,17,'cooley','172.71.99.225',1,'First Server',NULL,NULL,'2023-12-21 07:32:50','2023-12-21 07:33:09'),(1234,17,'cooley','172.71.102.58',1,'First Server',NULL,NULL,'2023-12-21 07:33:27','2023-12-21 07:35:05'),(1235,17,'cooley','172.71.102.58',2,'Second Server',NULL,NULL,'2023-12-21 07:33:47','2023-12-21 07:36:07'),(1236,10,'olga','162.158.238.44',1,'First Server',NULL,NULL,'2023-12-21 09:00:09','2023-12-21 09:00:52'),(1237,10,'olga','162.158.238.44',1,'First Server',NULL,NULL,'2023-12-21 09:00:54','2023-12-21 09:32:52'),(1238,20,'Matthew','108.162.220.84',2,'Second Server',NULL,NULL,'2023-12-21 09:05:19','2023-12-21 09:06:54'),(1239,20,'Matthew','108.162.220.84',2,'Second Server',NULL,NULL,'2023-12-21 09:06:57','2023-12-21 11:01:52'),(1240,10,'olga','162.158.238.44',1,'First Server',NULL,NULL,'2023-12-21 09:32:54','2023-12-21 09:41:02'),(1241,20,'Matthew','108.162.220.84',2,'Second Server',NULL,NULL,'2023-12-21 11:44:33','2023-12-21 12:24:00'),(1242,20,'Matthew','108.162.220.84',2,'Second Server',NULL,NULL,'2023-12-21 12:34:29','2023-12-21 13:47:10'),(1243,20,'Matthew','108.162.220.84',2,'Second Server',NULL,NULL,'2023-12-21 13:57:30','2023-12-21 15:10:47'),(1244,3,'mazen','172.69.214.180',1,'First Server',NULL,NULL,'2023-12-21 14:58:15','2023-12-21 15:00:09'),(1245,3,'mazen','172.69.214.180',3,'3rd seever',NULL,NULL,'2023-12-21 15:00:12','2023-12-21 15:13:23'),(1246,17,'cooley','172.71.103.4',1,'First Server',NULL,NULL,'2023-12-21 15:09:38','2023-12-21 15:10:22'),(1247,17,'cooley','172.71.103.4',2,'Second Server',NULL,NULL,'2023-12-21 15:10:44','2023-12-21 15:12:35'),(1248,17,'cooley','172.71.103.4',1,'First Server',NULL,NULL,'2023-12-21 15:12:47','2023-12-21 15:13:03'),(1249,17,'cooley','172.71.103.4',3,'3rd seever',NULL,NULL,'2023-12-21 15:13:20','2023-12-21 15:38:54'),(1250,27,'tony','162.158.187.16',1,'First Server',NULL,NULL,'2023-12-21 21:34:46','2023-12-22 00:35:42'),(1251,27,'tony','162.158.187.16',2,'Second Server',NULL,NULL,'2023-12-21 21:35:53','2023-12-22 00:35:42'),(1252,10,'olga','162.158.238.72',3,'3rd seever',NULL,NULL,'2023-12-22 06:53:02','2023-12-22 10:06:50'),(1253,20,'Matthew','162.158.210.169',2,'Second Server',NULL,NULL,'2023-12-22 09:31:33','2023-12-22 09:33:21'),(1254,20,'Matthew','162.158.210.169',2,'Second Server',NULL,NULL,'2023-12-22 09:33:24','2023-12-22 10:00:43'),(1255,24,'szymon','162.158.103.245',2,'Second Server',NULL,NULL,'2023-12-22 10:00:40','2023-12-22 10:04:53'),(1256,20,'Matthew','162.158.210.169',2,'Second Server',NULL,NULL,'2023-12-22 10:04:51','2023-12-22 10:04:59'),(1257,24,'szymon','162.158.103.245',2,'Second Server',NULL,NULL,'2023-12-22 10:04:56','2023-12-22 10:05:36'),(1258,20,'Matthew','162.158.210.169',2,'Second Server',NULL,NULL,'2023-12-22 10:06:28','2023-12-22 10:13:10'),(1259,24,'szymon','162.158.103.231',2,'Second Server',NULL,NULL,'2023-12-22 10:13:07','2023-12-22 10:13:27'),(1260,20,'Matthew','162.158.210.169',2,'Second Server',NULL,NULL,'2023-12-22 10:13:24','2023-12-22 10:13:31'),(1261,24,'szymon','162.158.103.231',2,'Second Server',NULL,NULL,'2023-12-22 10:13:29','2023-12-22 10:13:36'),(1262,20,'Matthew','162.158.210.169',2,'Second Server',NULL,NULL,'2023-12-22 10:13:33','2023-12-22 10:13:41'),(1263,24,'szymon','162.158.103.231',2,'Second Server',NULL,NULL,'2023-12-22 10:13:38','2023-12-22 10:15:50'),(1264,20,'Matthew','162.158.210.169',2,'Second Server',NULL,NULL,'2023-12-22 10:15:47','2023-12-22 10:15:56'),(1265,24,'szymon','162.158.103.231',2,'Second Server',NULL,NULL,'2023-12-22 10:15:51','2023-12-22 10:16:02'),(1266,20,'Matthew','162.158.210.169',2,'Second Server',NULL,NULL,'2023-12-22 10:15:57','2023-12-22 10:16:07'),(1267,24,'szymon','162.158.103.231',2,'Second Server',NULL,NULL,'2023-12-22 10:16:03','2023-12-22 10:17:30'),(1268,20,'Matthew','162.158.210.169',2,'Second Server',NULL,NULL,'2023-12-22 10:17:27','2023-12-22 10:17:35'),(1269,24,'szymon','162.158.103.231',2,'Second Server',NULL,NULL,'2023-12-22 10:17:32','2023-12-22 10:17:40'),(1270,20,'Matthew','162.158.210.169',2,'Second Server',NULL,NULL,'2023-12-22 10:17:37','2023-12-22 10:17:45'),(1271,24,'szymon','162.158.103.231',2,'Second Server',NULL,NULL,'2023-12-22 10:17:42','2023-12-22 10:19:04'),(1272,20,'Matthew','162.158.210.169',2,'Second Server',NULL,NULL,'2023-12-22 10:19:02','2023-12-22 10:19:11'),(1273,24,'szymon','162.158.103.231',2,'Second Server',NULL,NULL,'2023-12-22 10:19:07','2023-12-22 10:22:49'),(1274,20,'Matthew','162.158.210.169',2,'Second Server',NULL,NULL,'2023-12-22 10:22:39','2023-12-22 10:24:25'),(1275,24,'szymon','162.158.103.231',2,'Second Server',NULL,NULL,'2023-12-22 10:24:22','2023-12-22 10:29:13'),(1276,20,'Matthew','162.158.210.169',2,'Second Server',NULL,NULL,'2023-12-22 10:30:51','2023-12-22 10:40:47'),(1277,20,'Matthew','162.158.210.169',2,'Second Server',NULL,NULL,'2023-12-22 10:40:48','2023-12-22 10:40:49'),(1278,20,'Matthew','162.158.210.169',2,'Second Server',NULL,NULL,'2023-12-22 10:40:50','2023-12-22 10:44:53'),(1279,20,'Matthew','162.158.210.169',2,'Second Server',NULL,NULL,'2023-12-22 10:44:54','2023-12-22 11:18:37'),(1280,20,'Matthew','162.158.210.169',2,'Second Server',NULL,NULL,'2023-12-22 11:18:39','2023-12-22 12:41:00'),(1281,10,'olga','162.158.238.73',2,'Second Server',NULL,NULL,'2023-12-22 12:40:57','2023-12-22 12:50:15'),(1282,10,'olga','162.158.238.73',1,'First Server',NULL,NULL,'2023-12-22 12:41:52','2023-12-22 14:50:22'),(1283,20,'Matthew','162.158.210.169',2,'Second Server',NULL,NULL,'2023-12-22 12:50:12','2023-12-22 13:06:52'),(1284,20,'Matthew','162.158.210.169',2,'Second Server',NULL,NULL,'2023-12-22 13:06:53','2023-12-22 13:06:54'),(1285,20,'Matthew','162.158.210.169',2,'Second Server',NULL,NULL,'2023-12-22 13:06:54','2023-12-22 13:17:23'),(1286,16,'arbmaniac','172.70.230.52',2,'Second Server',NULL,NULL,'2023-12-22 13:17:20','2023-12-22 13:21:39'),(1287,20,'Matthew','162.158.210.169',2,'Second Server',NULL,NULL,'2023-12-22 13:21:36','2023-12-23 01:01:00'),(1288,20,'Matthew','162.158.210.169',2,'Second Server',NULL,NULL,'2023-12-23 01:11:31','2023-12-23 07:35:07'),(1289,31,'luxesquire','172.69.146.130',1,'First Server',NULL,NULL,'2023-12-23 02:20:13','2023-12-23 02:21:13'),(1290,31,'luxesquire','172.69.146.130',3,'3rd seever',NULL,NULL,'2023-12-23 02:21:21','2023-12-23 02:25:49'),(1291,31,'luxesquire','172.69.146.130',1,'First Server',NULL,NULL,'2023-12-23 02:45:26','2023-12-23 02:46:47'),(1292,31,'luxesquire','172.69.146.130',1,'First Server',NULL,NULL,'2023-12-23 02:46:55','2023-12-23 02:47:02'),(1293,31,'luxesquire','172.69.146.130',3,'3rd seever',NULL,NULL,'2023-12-23 02:47:08','2023-12-23 02:56:59'),(1294,31,'luxesquire','172.69.146.130',3,'3rd seever',NULL,NULL,'2023-12-23 03:30:28','2023-12-23 03:55:14'),(1295,31,'luxesquire','172.69.146.130',3,'3rd seever',NULL,NULL,'2023-12-23 04:10:41','2023-12-23 11:07:12'),(1296,20,'Matthew','162.158.210.169',2,'Second Server',NULL,NULL,'2023-12-23 07:45:32','2023-12-23 08:01:52'),(1297,20,'Matthew','162.158.210.169',2,'Second Server',NULL,NULL,'2023-12-23 08:11:32','2023-12-23 08:12:21'),(1298,20,'Matthew','162.158.210.169',2,'Second Server',NULL,NULL,'2023-12-23 08:22:32','2023-12-23 08:38:32'),(1299,20,'Matthew','162.158.210.169',2,'Second Server',NULL,NULL,'2023-12-23 08:49:32','2023-12-23 09:07:38'),(1300,20,'Matthew','162.158.210.169',2,'Second Server',NULL,NULL,'2023-12-23 09:17:32','2023-12-23 09:40:06'),(1301,20,'Matthew','162.158.210.169',2,'Second Server',NULL,NULL,'2023-12-23 09:50:32','2023-12-23 13:17:18'),(1302,6,'yagoman','172.64.238.65',1,'First Server',NULL,NULL,'2023-12-23 10:28:32','2023-12-23 10:52:31'),(1303,31,'luxesquire','172.69.146.130',3,'3rd seever',NULL,NULL,'2023-12-23 11:43:06','2023-12-23 13:07:22'),(1304,31,'luxesquire','172.69.146.130',3,'3rd seever',NULL,NULL,'2023-12-23 13:18:06','2023-12-23 13:36:06'),(1305,20,'Matthew','162.158.210.169',2,'Second Server',NULL,NULL,'2023-12-23 13:27:32','2023-12-23 15:42:24'),(1306,31,'luxesquire','172.69.146.130',3,'3rd seever',NULL,NULL,'2023-12-23 14:22:17','2023-12-23 14:24:57'),(1307,31,'luxesquire','172.69.146.130',3,'3rd seever',NULL,NULL,'2023-12-23 15:09:47','2023-12-23 15:11:01'),(1308,31,'luxesquire','172.69.146.130',3,'3rd seever',NULL,NULL,'2023-12-23 15:28:22','2023-12-23 15:48:44'),(1309,20,'Matthew','162.158.210.169',2,'Second Server',NULL,NULL,'2023-12-23 15:52:32','2023-12-23 22:50:20'),(1310,31,'luxesquire','172.69.146.130',3,'3rd seever',NULL,NULL,'2023-12-23 15:59:22','2023-12-23 16:06:58'),(1311,2,'hema','172.70.91.160',6,'freelance',NULL,NULL,'2023-12-23 19:13:45','2023-12-23 20:49:49'),(1312,20,'Matthew','162.158.210.169',2,'Second Server',NULL,NULL,'2023-12-23 23:00:32','2023-12-24 08:18:41'),(1313,31,'luxesquire','172.68.34.52',3,'3rd seever',NULL,NULL,'2023-12-24 03:31:33','2023-12-24 04:02:33'),(1314,31,'luxesquire','172.68.34.52',3,'3rd seever',NULL,NULL,'2023-12-24 04:13:40','2023-12-24 04:20:24'),(1315,31,'luxesquire','172.68.34.52',3,'3rd seever',NULL,NULL,'2023-12-24 04:30:39','2023-12-24 04:32:24'),(1316,31,'luxesquire','172.68.34.52',3,'3rd seever',NULL,NULL,'2023-12-24 04:42:39','2023-12-24 04:49:43'),(1317,31,'luxesquire','172.68.34.52',3,'3rd seever',NULL,NULL,'2023-12-24 05:00:40','2023-12-24 05:11:52'),(1318,20,'Matthew','162.158.210.169',2,'Second Server',NULL,NULL,'2023-12-24 08:28:33','2023-12-24 09:18:56'),(1319,20,'Matthew','162.158.210.169',2,'Second Server',NULL,NULL,'2023-12-24 09:28:33','2023-12-24 11:20:36'),(1320,24,'szymon','162.158.103.101',3,'3rd seever',NULL,NULL,'2023-12-24 11:19:48','2023-12-24 11:21:05'),(1321,24,'szymon','162.158.103.101',1,'First Server',NULL,NULL,'2023-12-24 11:20:15','2023-12-24 11:21:04'),(1322,24,'szymon','162.158.103.101',2,'Second Server',NULL,NULL,'2023-12-24 11:20:33','2023-12-24 12:16:50'),(1323,2,'hema','162.158.194.135',3,'3rd seever',NULL,NULL,'2023-12-24 17:00:04','2023-12-24 17:00:43'),(1324,10,'olga','162.158.238.44',1,'First Server',NULL,NULL,'2023-12-25 09:27:04','2023-12-25 11:34:55'),(1325,10,'olga','162.158.238.44',2,'Second Server',NULL,NULL,'2023-12-25 09:27:51','2023-12-25 11:34:55'),(1326,10,'olga','162.158.238.44',2,'Second Server',NULL,NULL,'2023-12-25 12:08:22','2023-12-25 15:31:20'),(1327,10,'olga','162.158.238.251',2,'Second Server',NULL,NULL,'2023-12-26 06:16:53','2023-12-26 07:05:16'),(1328,10,'olga','162.158.238.251',2,'Second Server',NULL,NULL,'2023-12-26 07:05:32','2023-12-26 07:06:05'),(1329,10,'olga','162.158.238.72',1,'First Server',NULL,NULL,'2023-12-26 11:27:36','2023-12-26 11:29:22'),(1330,10,'olga','162.158.238.72',2,'Second Server',NULL,NULL,'2023-12-26 11:27:52','2023-12-26 11:29:21'),(1331,10,'olga','162.158.238.72',3,'3rd seever',NULL,NULL,'2023-12-26 11:28:37','2023-12-26 12:33:05'),(1332,29,'mariusz.grela','172.68.139.63',2,'Second Server',NULL,NULL,'2023-12-26 12:31:57','2023-12-26 12:33:31'),(1333,29,'mariusz.grela','172.68.139.63',1,'First Server',NULL,NULL,'2023-12-26 12:32:39','2023-12-26 12:33:31'),(1334,29,'mariusz.grela','172.68.139.63',3,'3rd seever',NULL,NULL,'2023-12-26 12:33:01','2023-12-26 12:33:31'),(1335,27,'tony','172.70.210.177',2,'Second Server',NULL,NULL,'2023-12-26 18:21:28','2023-12-27 02:47:47'),(1336,19,'Kamal','172.68.154.141',1,'First Server',NULL,NULL,'2023-12-26 21:19:15','2023-12-26 21:21:02'),(1337,10,'olga','162.158.238.251',3,'3rd seever',NULL,NULL,'2023-12-27 07:53:18','2023-12-27 09:55:01'),(1338,10,'olga','162.158.222.192',3,'3rd seever',NULL,NULL,'2023-12-27 10:59:08','2023-12-27 13:29:32'),(1339,9,'jeff','162.158.186.150',1,'First Server',NULL,NULL,'2023-12-27 16:44:52','2023-12-27 16:46:25'),(1340,9,'jeff','162.158.186.150',2,'Second Server',NULL,NULL,'2023-12-27 16:46:30','2023-12-27 16:48:11'),(1341,9,'jeff','162.158.186.150',3,'3rd seever',NULL,NULL,'2023-12-27 16:48:16','2023-12-27 18:31:09'),(1342,19,'Kamal','172.68.154.144',1,'First Server',NULL,NULL,'2023-12-27 20:40:56','2023-12-27 21:46:16'),(1343,10,'olga','172.68.238.20',2,'Second Server',NULL,NULL,'2023-12-28 06:15:59','2023-12-28 06:23:50'),(1344,10,'olga','172.68.238.20',3,'3rd seever',NULL,NULL,'2023-12-28 06:24:04','2023-12-28 06:39:38'),(1345,27,'tony','162.158.186.106',1,'First Server',NULL,NULL,'2023-12-28 16:41:41','2023-12-28 16:47:40'),(1346,27,'tony','162.158.186.106',1,'First Server',NULL,NULL,'2023-12-28 16:47:47','2023-12-28 16:48:10'),(1347,27,'tony','162.158.186.106',2,'Second Server',NULL,NULL,'2023-12-28 16:48:14','2023-12-28 17:16:33'),(1348,27,'tony','162.158.90.113',2,'Second Server',NULL,NULL,'2023-12-28 17:51:11','2023-12-28 18:12:20'),(1349,19,'Kamal','172.68.154.146',1,'First Server',NULL,NULL,'2023-12-28 18:10:15','2023-12-28 18:11:09'),(1350,19,'Kamal','172.68.154.146',3,'3rd seever',NULL,NULL,'2023-12-28 18:11:20','2023-12-28 18:12:08'),(1351,19,'Kamal','172.68.154.146',2,'Second Server',NULL,NULL,'2023-12-28 18:12:17','2023-12-28 18:12:33'),(1352,27,'tony','162.158.90.113',2,'Second Server',NULL,NULL,'2023-12-28 18:12:28','2023-12-28 18:12:41'),(1353,19,'Kamal','172.68.154.146',2,'Second Server',NULL,NULL,'2023-12-28 18:12:38','2023-12-28 18:14:43'),(1354,19,'Kamal','172.68.154.146',1,'First Server',NULL,NULL,'2023-12-28 18:14:57','2023-12-28 18:19:09'),(1355,27,'tony','162.158.90.113',1,'First Server',NULL,NULL,'2023-12-28 18:19:06','2023-12-28 18:19:15'),(1356,19,'Kamal','172.68.154.146',1,'First Server',NULL,NULL,'2023-12-28 18:19:12','2023-12-28 18:22:51'),(1357,27,'tony','162.158.90.132',2,'Second Server',NULL,NULL,'2023-12-28 18:19:29','2023-12-28 21:39:31'),(1358,19,'Kamal','172.68.154.146',1,'First Server',NULL,NULL,'2023-12-28 18:23:08','2023-12-28 19:24:07'),(1359,19,'Kamal','172.68.154.146',1,'First Server',NULL,NULL,'2023-12-28 19:24:32','2023-12-28 19:28:40'),(1360,19,'Kamal','172.68.154.145',1,'First Server',NULL,NULL,'2023-12-28 21:44:12','2023-12-28 21:49:00'),(1361,19,'Kamal','172.68.154.145',1,'First Server',NULL,NULL,'2023-12-28 21:50:04','2023-12-28 22:00:01'),(1362,19,'Kamal','172.68.154.145',1,'First Server',NULL,NULL,'2023-12-28 22:00:15','2023-12-28 22:00:42'),(1363,19,'Kamal','172.68.154.145',1,'First Server',NULL,NULL,'2023-12-28 22:05:22','2023-12-28 22:20:09'),(1364,27,'tony','172.70.206.242',2,'Second Server',NULL,NULL,'2023-12-29 00:12:53','2023-12-29 00:54:18'),(1365,10,'olga','162.158.238.251',3,'3rd seever',NULL,NULL,'2023-12-29 06:21:00','2023-12-29 10:53:33'),(1366,24,'szymon','162.158.103.232',2,'Second Server',NULL,NULL,'2023-12-29 13:26:59','2023-12-29 13:27:30'),(1367,24,'szymon','162.158.103.232',3,'3rd seever',NULL,NULL,'2023-12-29 13:27:43','2023-12-29 13:28:32'),(1368,24,'szymon','162.158.103.232',2,'Second Server',NULL,NULL,'2023-12-29 13:28:39','2023-12-29 13:42:40'),(1369,24,'szymon','162.158.103.232',1,'First Server',NULL,NULL,'2023-12-29 13:28:54','2023-12-29 13:44:16'),(1370,10,'olga','162.158.238.250',3,'3rd seever',NULL,NULL,'2023-12-29 13:41:00','2023-12-29 13:42:33'),(1371,10,'olga','162.158.238.250',2,'Second Server',NULL,NULL,'2023-12-29 13:42:38','2023-12-29 13:44:58'),(1372,10,'olga','162.158.238.250',1,'First Server',NULL,NULL,'2023-12-29 13:44:13','2023-12-29 13:44:58'),(1373,10,'olga','162.158.238.250',2,'Second Server',NULL,NULL,'2023-12-29 13:46:43','2023-12-29 13:53:11'),(1374,24,'szymon','162.158.103.232',1,'First Server',NULL,NULL,'2023-12-29 13:51:37','2023-12-29 13:53:10'),(1375,24,'szymon','162.158.103.232',2,'Second Server',NULL,NULL,'2023-12-29 13:53:08','2023-12-29 13:58:54'),(1376,24,'szymon','162.158.103.232',1,'First Server',NULL,NULL,'2023-12-29 13:59:31','2023-12-29 14:01:19'),(1377,24,'szymon','162.158.103.232',2,'Second Server',NULL,NULL,'2023-12-29 14:00:58','2023-12-29 14:01:19'),(1378,10,'olga','162.158.238.250',2,'Second Server',NULL,NULL,'2023-12-29 14:09:53','2023-12-29 14:13:34'),(1379,10,'olga','162.158.238.250',3,'3rd seever',NULL,NULL,'2023-12-29 14:10:06','2023-12-29 14:14:42'),(1380,10,'olga','162.158.238.250',3,'3rd seever',NULL,NULL,'2023-12-29 14:14:43','2023-12-29 14:15:33'),(1381,10,'olga','162.158.238.250',3,'3rd seever',NULL,NULL,'2023-12-29 14:16:27','2023-12-29 14:28:05'),(1382,10,'olga','162.158.238.250',1,'First Server',NULL,NULL,'2023-12-29 14:17:09','2023-12-29 14:25:35'),(1383,10,'olga','162.158.238.250',2,'Second Server',NULL,NULL,'2023-12-29 14:17:53','2023-12-29 14:18:45'),(1384,24,'szymon','162.158.103.232',2,'Second Server',NULL,NULL,'2023-12-29 14:18:43','2023-12-29 14:18:55'),(1385,10,'olga','162.158.238.250',2,'Second Server',NULL,NULL,'2023-12-29 14:18:52','2023-12-29 14:19:01'),(1386,24,'szymon','162.158.103.232',2,'Second Server',NULL,NULL,'2023-12-29 14:18:59','2023-12-29 14:26:23'),(1387,24,'szymon','162.158.103.232',1,'First Server',NULL,NULL,'2023-12-29 14:25:32','2023-12-29 14:28:00'),(1388,24,'szymon','162.158.103.232',2,'Second Server',NULL,NULL,'2023-12-29 14:27:47','2023-12-29 14:27:59'),(1389,24,'szymon','162.158.103.232',3,'3rd seever',NULL,NULL,'2023-12-29 14:28:02','2023-12-29 14:28:49'),(1390,24,'szymon','162.158.103.232',3,'3rd seever',NULL,NULL,'2023-12-29 14:28:51','2023-12-29 14:29:36'),(1391,24,'szymon','162.158.103.232',3,'3rd seever',NULL,NULL,'2023-12-29 14:29:39','2023-12-29 14:46:29'),(1392,20,'Matthew','108.162.221.129',2,'Second Server',NULL,NULL,'2023-12-29 14:47:42','2023-12-29 15:07:02'),(1393,20,'Matthew','108.162.221.129',3,'3rd seever',NULL,NULL,'2023-12-29 14:53:01','2023-12-29 15:07:02'),(1394,20,'Matthew','108.162.221.129',1,'First Server',NULL,NULL,'2023-12-29 14:55:30','2023-12-29 15:07:02'),(1395,20,'Matthew','108.162.221.129',2,'Second Server',NULL,NULL,'2023-12-29 15:07:06','2023-12-29 15:08:56'),(1396,20,'Matthew','108.162.221.129',3,'3rd seever',NULL,NULL,'2023-12-29 15:09:00','2023-12-29 15:12:38'),(1397,20,'Matthew','108.162.221.129',1,'First Server',NULL,NULL,'2023-12-29 15:12:45','2023-12-29 15:14:25'),(1398,20,'Matthew','108.162.221.129',2,'Second Server',NULL,NULL,'2023-12-29 15:14:49','2023-12-29 15:54:54'),(1399,10,'olga','162.158.238.45',2,'Second Server',NULL,NULL,'2023-12-29 15:54:51','2023-12-29 15:55:24'),(1400,10,'olga','162.158.238.45',3,'3rd seever',NULL,NULL,'2023-12-29 16:50:44','2023-12-29 16:51:06'),(1401,20,'Matthew','108.162.221.130',2,'Second Server',NULL,NULL,'2023-12-29 19:13:49','2023-12-29 22:19:08'),(1402,20,'Matthew','108.162.221.130',2,'Second Server',NULL,NULL,'2023-12-29 22:29:40','2023-12-29 23:33:53'),(1403,20,'Matthew','108.162.221.130',2,'Second Server',NULL,NULL,'2023-12-29 23:43:40','2023-12-30 01:12:13'),(1404,20,'Matthew','108.162.221.130',2,'Second Server',NULL,NULL,'2023-12-30 01:12:14','2023-12-30 08:01:26'),(1405,20,'Matthew','108.162.221.130',2,'Second Server',NULL,NULL,'2023-12-30 08:11:40','2023-12-30 08:16:42'),(1406,20,'Matthew','108.162.221.130',2,'Second Server',NULL,NULL,'2023-12-30 08:26:40','2023-12-30 09:09:16'),(1407,20,'Matthew','108.162.221.130',2,'Second Server',NULL,NULL,'2023-12-30 09:09:17','2023-12-30 09:09:18'),(1408,20,'Matthew','108.162.221.130',2,'Second Server',NULL,NULL,'2023-12-30 09:09:19','2023-12-30 20:50:15'),(1409,19,'Kamal','172.68.154.141',1,'First Server',NULL,NULL,'2023-12-30 10:51:51','2023-12-30 11:01:12'),(1410,19,'Kamal','172.68.154.141',1,'First Server',NULL,NULL,'2023-12-30 11:07:58','2023-12-30 11:08:17'),(1411,20,'Matthew','108.162.221.130',2,'Second Server',NULL,NULL,'2023-12-30 20:50:16','2023-12-30 20:50:17'),(1412,20,'Matthew','108.162.221.130',2,'Second Server',NULL,NULL,'2023-12-30 20:50:18','2023-12-30 20:50:26'),(1413,20,'Matthew','108.162.221.130',1,'First Server',NULL,NULL,'2023-12-30 20:50:31','2023-12-30 20:50:43'),(1414,20,'Matthew','108.162.221.130',2,'Second Server',NULL,NULL,'2023-12-30 20:50:46','2023-12-30 20:50:55'),(1415,20,'Matthew','108.162.221.130',3,'3rd seever',NULL,NULL,'2023-12-30 20:50:57','2023-12-30 20:52:53'),(1416,20,'Matthew','108.162.221.130',2,'Second Server',NULL,NULL,'2023-12-30 20:52:58','2023-12-30 22:33:25'),(1417,20,'Matthew','108.162.221.130',2,'Second Server',NULL,NULL,'2023-12-30 22:43:41','2023-12-31 02:38:25'),(1418,31,'luxesquire','172.69.34.146',3,'3rd seever',NULL,NULL,'2023-12-31 02:31:18','2023-12-31 02:34:18'),(1419,31,'luxesquire','172.69.34.146',1,'First Server',NULL,NULL,'2023-12-31 02:34:28','2023-12-31 02:38:01'),(1420,31,'luxesquire','172.69.34.146',2,'Second Server',NULL,NULL,'2023-12-31 02:38:21','2023-12-31 04:51:54'),(1421,2,'hema','172.69.43.145',3,'3rd seever',NULL,NULL,'2023-12-31 06:26:49','2023-12-31 06:31:04'),(1422,2,'hema','172.69.43.145',1,'First Server',NULL,NULL,'2023-12-31 06:27:23','2023-12-31 06:31:51'),(1423,19,'Kamal','172.68.154.142',1,'First Server',NULL,NULL,'2023-12-31 09:18:13','2023-12-31 10:03:33'),(1424,19,'Kamal','172.68.154.142',1,'First Server',NULL,NULL,'2023-12-31 10:04:42','2023-12-31 13:14:58'),(1425,19,'Kamal','172.68.154.142',1,'First Server',NULL,NULL,'2023-12-31 13:15:24','2023-12-31 13:22:13'),(1426,19,'Kamal','172.68.154.142',1,'First Server',NULL,NULL,'2023-12-31 13:22:29','2023-12-31 13:47:05'),(1427,19,'Kamal','172.68.154.142',1,'First Server',NULL,NULL,'2023-12-31 13:47:21','2023-12-31 13:54:58'),(1428,19,'Kamal','172.68.154.142',1,'First Server',NULL,NULL,'2023-12-31 13:55:19','2023-12-31 14:34:08'),(1429,19,'Kamal','172.68.154.142',1,'First Server',NULL,NULL,'2023-12-31 14:34:27','2023-12-31 14:42:17'),(1430,19,'Kamal','172.68.154.142',1,'First Server',NULL,NULL,'2023-12-31 14:42:25','2023-12-31 17:25:26'),(1431,31,'luxesquire','172.70.210.14',2,'Second Server',NULL,NULL,'2023-12-31 17:17:27','2023-12-31 17:25:18'),(1432,31,'luxesquire','172.70.210.14',1,'First Server',NULL,NULL,'2023-12-31 17:25:23','2023-12-31 17:25:33'),(1433,19,'Kamal','172.68.154.142',1,'First Server',NULL,NULL,'2023-12-31 17:25:29','2023-12-31 17:25:42'),(1434,31,'luxesquire','172.70.210.14',1,'First Server',NULL,NULL,'2023-12-31 17:25:38','2023-12-31 17:25:48'),(1435,19,'Kamal','172.68.154.142',1,'First Server',NULL,NULL,'2023-12-31 17:25:43','2023-12-31 17:30:29'),(1436,31,'luxesquire','172.70.210.14',3,'3rd seever',NULL,NULL,'2023-12-31 17:25:56','2023-12-31 17:28:25'),(1437,19,'Kamal','172.68.154.142',1,'First Server',NULL,NULL,'2023-12-31 17:30:38','2023-12-31 17:37:18'),(1438,19,'Kamal','172.68.154.142',1,'First Server',NULL,NULL,'2023-12-31 17:37:35','2023-12-31 17:52:52'),(1439,31,'luxesquire','172.70.210.14',2,'Second Server',NULL,NULL,'2023-12-31 17:46:44','2023-12-31 18:04:52'),(1440,2,'hema','172.70.91.159',1,'First Server',NULL,NULL,'2023-12-31 17:52:48','2023-12-31 17:52:59'),(1441,19,'Kamal','172.68.154.142',1,'First Server',NULL,NULL,'2023-12-31 17:52:58','2023-12-31 17:54:15'),(1442,19,'Kamal','172.68.154.142',1,'First Server',NULL,NULL,'2023-12-31 17:54:35','2023-12-31 18:02:40'),(1443,6,'yagoman','172.68.134.12',1,'First Server',NULL,NULL,'2023-12-31 18:02:37','2023-12-31 18:02:53'),(1444,19,'Kamal','172.68.154.142',1,'First Server',NULL,NULL,'2023-12-31 18:02:47','2023-12-31 18:03:04'),(1445,6,'yagoman','172.68.134.12',1,'First Server',NULL,NULL,'2023-12-31 18:02:56','2023-12-31 18:03:14'),(1446,19,'Kamal','172.68.154.142',1,'First Server',NULL,NULL,'2023-12-31 18:03:07','2023-12-31 18:03:23'),(1447,6,'yagoman','172.68.134.12',1,'First Server',NULL,NULL,'2023-12-31 18:03:16','2023-12-31 18:03:30'),(1448,19,'Kamal','172.68.154.142',1,'First Server',NULL,NULL,'2023-12-31 18:03:25','2023-12-31 18:03:35'),(1449,6,'yagoman','172.68.134.12',1,'First Server',NULL,NULL,'2023-12-31 18:03:32','2023-12-31 18:03:44'),(1450,19,'Kamal','172.68.154.142',1,'First Server',NULL,NULL,'2023-12-31 18:03:40','2023-12-31 18:03:48'),(1451,6,'yagoman','172.68.134.12',1,'First Server',NULL,NULL,'2023-12-31 18:03:45','2023-12-31 18:04:03'),(1452,19,'Kamal','172.68.154.142',1,'First Server',NULL,NULL,'2023-12-31 18:04:00','2023-12-31 18:04:38'),(1453,6,'yagoman','172.68.134.12',3,'3rd seever',NULL,NULL,'2023-12-31 18:04:10','2023-12-31 18:05:20'),(1454,31,'luxesquire','172.70.210.14',1,'First Server',NULL,NULL,'2023-12-31 18:04:56','2023-12-31 20:56:12'),(1455,6,'yagoman','172.68.134.12',3,'3rd seever',NULL,NULL,'2023-12-31 18:10:08','2023-12-31 18:22:10'),(1456,31,'luxesquire','172.70.210.14',1,'First Server',NULL,NULL,'2023-12-31 21:28:17','2023-12-31 21:28:52'),(1457,31,'luxesquire','172.70.210.14',1,'First Server',NULL,NULL,'2023-12-31 22:08:00','2023-12-31 23:17:49'),(1458,31,'luxesquire','172.70.210.14',1,'First Server',NULL,NULL,'2024-01-01 00:18:22','2024-01-01 01:01:26'),(1459,22,'Hallett','172.69.194.254',1,'First Server',NULL,NULL,'2024-01-01 13:12:15','2024-01-01 13:16:47'),(1460,19,'Kamal','172.68.154.140',1,'First Server',NULL,NULL,'2024-01-01 14:20:55','2024-01-01 14:35:00'),(1461,19,'Kamal','172.68.154.140',1,'First Server',NULL,NULL,'2024-01-01 14:35:03','2024-01-01 15:07:03'),(1462,19,'Kamal','172.68.154.140',1,'First Server',NULL,NULL,'2024-01-01 15:07:06','2024-01-01 15:39:00'),(1463,19,'Kamal','172.68.154.140',1,'First Server',NULL,NULL,'2024-01-01 15:39:02','2024-01-01 15:43:48'),(1464,19,'Kamal','162.158.54.141',1,'First Server',NULL,NULL,'2024-01-01 20:58:29','2024-01-01 22:29:20'),(1465,19,'Kamal','162.158.54.141',2,'Second Server',NULL,NULL,'2024-01-01 22:29:32','2024-01-01 22:30:37'),(1466,19,'Kamal','162.158.54.141',2,'Second Server',NULL,NULL,'2024-01-01 22:30:44','2024-01-01 22:30:46'),(1467,19,'Kamal','162.158.54.141',1,'First Server',NULL,NULL,'2024-01-01 22:30:50','2024-01-01 22:34:22'),(1468,20,'Matthew','172.69.116.131',2,'Second Server',NULL,NULL,'2024-01-01 22:42:50','2024-01-01 22:43:12'),(1469,20,'Matthew','172.69.116.131',3,'3rd seever',NULL,NULL,'2024-01-01 22:43:30','2024-01-01 22:45:02'),(1470,20,'Matthew','172.69.116.131',1,'First Server',NULL,NULL,'2024-01-01 22:45:06','2024-01-02 07:54:19'),(1471,24,'szymon','162.158.102.27',2,'Second Server',NULL,NULL,'2024-01-02 06:55:32','2024-01-02 07:14:51'),(1472,2,'hema','172.69.43.145',3,'3rd seever',NULL,NULL,'2024-01-02 07:44:33','2024-01-02 07:45:21'),(1473,2,'hema','172.69.43.145',2,'Second Server',NULL,NULL,'2024-01-02 07:45:28','2024-01-02 07:46:00'),(1474,20,'Matthew','172.69.116.131',1,'First Server',NULL,NULL,'2024-01-02 07:54:23','2024-01-02 07:57:01'),(1475,20,'Matthew','172.69.116.131',2,'Second Server',NULL,NULL,'2024-01-02 07:57:04','2024-01-02 07:57:36'),(1476,20,'Matthew','172.69.116.131',3,'3rd seever',NULL,NULL,'2024-01-02 07:57:39','2024-01-02 08:01:00'),(1477,20,'Matthew','172.69.116.131',1,'First Server',NULL,NULL,'2024-01-02 08:01:04','2024-01-02 10:32:44'),(1478,20,'Matthew','172.69.116.131',1,'First Server',NULL,NULL,'2024-01-02 10:42:44','2024-01-02 15:09:58'),(1479,14,'lukasz','172.70.46.237',2,'Second Server',NULL,NULL,'2024-01-02 14:00:38','2024-01-02 14:11:25'),(1480,19,'Kamal','172.68.154.142',1,'First Server',NULL,NULL,'2024-01-02 15:09:54','2024-01-02 15:51:11'),(1481,19,'Kamal','172.68.154.142',1,'First Server',NULL,NULL,'2024-01-02 15:51:13','2024-01-02 16:35:54'),(1482,19,'Kamal','172.68.154.142',1,'First Server',NULL,NULL,'2024-01-02 16:38:01','2024-01-02 16:54:00'),(1483,19,'Kamal','172.68.154.142',1,'First Server',NULL,NULL,'2024-01-02 17:02:05','2024-01-02 17:13:58'),(1484,20,'Matthew','141.101.105.39',1,'First Server',NULL,NULL,'2024-01-02 17:13:55','2024-01-02 17:16:08'),(1485,19,'Kamal','172.68.154.142',1,'First Server',NULL,NULL,'2024-01-02 17:16:05','2024-01-02 17:17:15'),(1486,27,'tony','172.70.214.152',1,'First Server',NULL,NULL,'2024-01-02 18:37:39','2024-01-02 18:39:48'),(1487,19,'Kamal','172.68.154.142',1,'First Server',NULL,NULL,'2024-01-02 18:39:45','2024-01-02 18:40:01'),(1488,27,'tony','172.70.214.152',1,'First Server',NULL,NULL,'2024-01-02 18:39:58','2024-01-02 18:40:08'),(1489,19,'Kamal','172.68.154.142',1,'First Server',NULL,NULL,'2024-01-02 18:40:02','2024-01-02 18:44:33'),(1490,27,'tony','162.158.90.182',1,'First Server',NULL,NULL,'2024-01-02 18:44:30','2024-01-02 18:44:41'),(1491,19,'Kamal','172.68.154.142',1,'First Server',NULL,NULL,'2024-01-02 18:44:38','2024-01-02 18:45:11'),(1492,27,'tony','162.158.90.182',3,'3rd seever',NULL,NULL,'2024-01-02 18:45:01','2024-01-02 19:41:22'),(1493,24,'szymon','162.158.102.27',2,'Second Server',NULL,NULL,'2024-01-02 19:47:43','2024-01-02 19:48:49'),(1494,24,'szymon','162.158.102.27',3,'3rd seever',NULL,NULL,'2024-01-02 19:48:51','2024-01-02 19:52:29'),(1495,24,'szymon','162.158.102.27',3,'3rd seever',NULL,NULL,'2024-01-02 19:52:34','2024-01-02 19:54:02'),(1496,24,'szymon','162.158.102.27',1,'First Server',NULL,NULL,'2024-01-02 19:53:59','2024-01-02 19:56:02'),(1497,24,'szymon','162.158.102.27',2,'Second Server',NULL,NULL,'2024-01-02 19:55:54','2024-01-02 20:06:19'),(1498,24,'szymon','162.158.102.27',1,'First Server',NULL,NULL,'2024-01-02 19:56:47','2024-01-02 19:58:23'),(1499,24,'szymon','162.158.102.27',3,'3rd seever',NULL,NULL,'2024-01-02 20:05:43','2024-01-02 20:07:57'),(1500,24,'szymon','162.158.102.27',1,'First Server',NULL,NULL,'2024-01-02 20:08:01','2024-01-02 20:29:15'),(1501,27,'tony','162.158.186.195',3,'3rd seever',NULL,NULL,'2024-01-02 20:17:09','2024-01-02 21:39:24'),(1502,2,'hema','141.101.98.133',3,'3rd seever',NULL,NULL,'2024-01-03 06:46:40','2024-01-03 06:46:50'),(1503,2,'hema','141.101.98.133',6,'freelance',NULL,NULL,'2024-01-03 07:20:47','2024-01-03 08:00:08'),(1504,2,'hema','141.101.98.133',6,'freelance',NULL,NULL,'2024-01-03 08:00:26','2024-01-03 08:01:13'),(1505,2,'hema','141.101.98.133',6,'freelance',NULL,NULL,'2024-01-03 08:04:14','2024-01-03 08:42:36'),(1506,2,'hema','172.69.43.145',6,'freelance',NULL,NULL,'2024-01-03 10:02:23','2024-01-03 10:16:43'),(1507,14,'lukasz','172.70.47.19',2,'Second Server',NULL,NULL,'2024-01-03 11:48:49','2024-01-03 11:51:57'),(1508,14,'lukasz','172.70.47.19',1,'First Server',NULL,NULL,'2024-01-03 11:52:01','2024-01-03 11:53:05'),(1509,14,'lukasz','172.70.47.19',3,'3rd seever',NULL,NULL,'2024-01-03 11:52:49','2024-01-03 12:34:13'),(1510,24,'szymon','172.68.138.201',3,'3rd seever',NULL,NULL,'2024-01-03 13:28:06','2024-01-03 14:50:08'),(1511,2,'hema','141.101.98.19',6,'freelance',NULL,NULL,'2024-01-03 17:13:07','2024-01-03 17:31:15'),(1512,31,'luxesquire','172.70.211.128',1,'First Server',NULL,NULL,'2024-01-03 18:11:47','2024-01-03 18:13:04'),(1513,31,'luxesquire','172.70.211.128',2,'Second Server',NULL,NULL,'2024-01-03 18:13:09','2024-01-03 18:14:39'),(1514,31,'luxesquire','172.70.211.128',3,'3rd seever',NULL,NULL,'2024-01-03 18:14:45','2024-01-03 19:31:39'),(1515,31,'luxesquire','172.70.211.128',1,'First Server',NULL,NULL,'2024-01-03 18:21:34','2024-01-03 18:56:19'),(1516,4,'pablojoy','162.158.129.7',2,'Second Server',NULL,NULL,'2024-01-03 18:51:49','2024-01-03 18:56:12'),(1517,4,'pablojoy','162.158.129.7',1,'First Server',NULL,NULL,'2024-01-03 18:56:16','2024-01-03 18:58:19'),(1518,4,'pablojoy','162.158.129.7',1,'First Server',NULL,NULL,'2024-01-03 18:58:55','2024-01-03 19:00:21'),(1519,31,'luxesquire','172.70.211.128',1,'First Server',NULL,NULL,'2024-01-03 19:00:29','2024-01-03 19:35:23'),(1520,19,'Kamal','172.68.154.143',1,'First Server',NULL,NULL,'2024-01-03 19:35:20','2024-01-03 19:36:11'),(1521,31,'luxesquire','172.70.211.128',1,'First Server',NULL,NULL,'2024-01-03 19:36:08','2024-01-03 19:36:16'),(1522,19,'Kamal','172.68.154.143',1,'First Server',NULL,NULL,'2024-01-03 19:36:13','2024-01-03 19:36:21'),(1523,31,'luxesquire','172.70.211.128',1,'First Server',NULL,NULL,'2024-01-03 19:36:18','2024-01-03 19:36:26'),(1524,19,'Kamal','172.68.154.143',1,'First Server',NULL,NULL,'2024-01-03 19:36:23','2024-01-03 19:36:35'),(1525,31,'luxesquire','172.70.211.128',1,'First Server',NULL,NULL,'2024-01-03 19:36:32','2024-01-03 19:36:41'),(1526,19,'Kamal','172.68.154.143',1,'First Server',NULL,NULL,'2024-01-03 19:36:37','2024-01-03 19:36:56'),(1527,31,'luxesquire','172.70.211.128',1,'First Server',NULL,NULL,'2024-01-03 19:36:47','2024-01-03 19:36:48'),(1528,31,'luxesquire','172.70.211.128',1,'First Server',NULL,NULL,'2024-01-03 19:36:53','2024-01-03 19:37:14'),(1529,19,'Kamal','172.68.154.143',1,'First Server',NULL,NULL,'2024-01-03 19:37:11','2024-01-03 19:40:35'),(1530,31,'luxesquire','172.70.211.128',2,'Second Server',NULL,NULL,'2024-01-03 19:37:26','2024-01-03 19:40:25'),(1531,31,'luxesquire','172.70.211.128',1,'First Server',NULL,NULL,'2024-01-03 19:40:32','2024-01-03 19:41:30'),(1532,19,'Kamal','172.68.154.143',1,'First Server',NULL,NULL,'2024-01-03 19:41:26','2024-01-03 19:41:38'),(1533,31,'luxesquire','172.70.211.128',1,'First Server',NULL,NULL,'2024-01-03 19:41:35','2024-01-03 19:41:44'),(1534,19,'Kamal','172.68.154.143',1,'First Server',NULL,NULL,'2024-01-03 19:41:41','2024-01-03 19:41:50'),(1535,31,'luxesquire','172.70.211.128',1,'First Server',NULL,NULL,'2024-01-03 19:41:46','2024-01-03 19:42:21'),(1536,19,'Kamal','172.68.154.143',1,'First Server',NULL,NULL,'2024-01-03 19:42:18','2024-01-03 19:42:26'),(1537,31,'luxesquire','172.70.211.128',1,'First Server',NULL,NULL,'2024-01-03 19:42:23','2024-01-03 19:42:31'),(1538,19,'Kamal','172.68.154.143',1,'First Server',NULL,NULL,'2024-01-03 19:42:28','2024-01-03 19:42:36'),(1539,31,'luxesquire','172.70.211.128',1,'First Server',NULL,NULL,'2024-01-03 19:42:33','2024-01-03 19:42:41'),(1540,19,'Kamal','172.68.154.143',1,'First Server',NULL,NULL,'2024-01-03 19:42:38','2024-01-03 19:42:52'),(1541,31,'luxesquire','172.70.211.128',1,'First Server',NULL,NULL,'2024-01-03 19:42:49','2024-01-03 19:47:49'),(1542,19,'Kamal','172.68.154.143',1,'First Server',NULL,NULL,'2024-01-03 19:47:47','2024-01-03 19:47:55'),(1543,31,'luxesquire','172.70.211.128',1,'First Server',NULL,NULL,'2024-01-03 19:47:53','2024-01-03 20:48:05'),(1544,19,'Kamal','172.68.154.143',1,'First Server',NULL,NULL,'2024-01-03 20:48:02','2024-01-03 20:48:12'),(1545,31,'luxesquire','172.70.211.128',1,'First Server',NULL,NULL,'2024-01-03 20:48:09','2024-01-03 20:48:17'),(1546,19,'Kamal','172.68.154.143',1,'First Server',NULL,NULL,'2024-01-03 20:48:14','2024-01-03 20:48:22'),(1547,31,'luxesquire','172.70.211.128',1,'First Server',NULL,NULL,'2024-01-03 20:48:19','2024-01-03 20:48:30'),(1548,19,'Kamal','172.68.154.143',1,'First Server',NULL,NULL,'2024-01-03 20:48:27','2024-01-03 20:48:36'),(1549,31,'luxesquire','172.70.211.128',1,'First Server',NULL,NULL,'2024-01-03 20:48:32','2024-01-03 20:48:41'),(1550,19,'Kamal','172.68.154.143',1,'First Server',NULL,NULL,'2024-01-03 20:48:38','2024-01-03 20:48:46'),(1551,31,'luxesquire','172.70.211.128',1,'First Server',NULL,NULL,'2024-01-03 20:48:43','2024-01-03 20:48:51'),(1552,19,'Kamal','172.68.154.143',1,'First Server',NULL,NULL,'2024-01-03 20:48:48','2024-01-03 20:48:56'),(1553,31,'luxesquire','172.70.211.128',1,'First Server',NULL,NULL,'2024-01-03 20:48:53','2024-01-03 20:49:01'),(1554,19,'Kamal','172.68.154.143',1,'First Server',NULL,NULL,'2024-01-03 20:48:58','2024-01-03 20:49:07'),(1555,31,'luxesquire','172.70.211.128',1,'First Server',NULL,NULL,'2024-01-03 20:49:04','2024-01-03 20:49:12'),(1556,19,'Kamal','172.68.154.143',1,'First Server',NULL,NULL,'2024-01-03 20:49:09','2024-01-03 20:49:17'),(1557,31,'luxesquire','172.70.211.128',1,'First Server',NULL,NULL,'2024-01-03 20:49:14','2024-01-03 20:49:30'),(1558,19,'Kamal','172.68.154.143',1,'First Server',NULL,NULL,'2024-01-03 20:49:27','2024-01-03 20:49:36'),(1559,31,'luxesquire','172.70.211.128',1,'First Server',NULL,NULL,'2024-01-03 20:49:32','2024-01-03 20:53:57'),(1560,19,'Kamal','172.68.154.143',1,'First Server',NULL,NULL,'2024-01-03 20:53:54','2024-01-03 20:57:02'),(1561,31,'luxesquire','172.70.211.128',1,'First Server',NULL,NULL,'2024-01-03 20:56:57','2024-01-03 20:57:23'),(1562,19,'Kamal','172.68.154.143',1,'First Server',NULL,NULL,'2024-01-03 20:57:18','2024-01-03 20:57:28'),(1563,31,'luxesquire','172.70.211.128',1,'First Server',NULL,NULL,'2024-01-03 20:57:25','2024-01-03 20:59:57'),(1564,19,'Kamal','172.68.154.143',1,'First Server',NULL,NULL,'2024-01-03 20:59:54','2024-01-03 21:00:05'),(1565,31,'luxesquire','172.70.211.128',1,'First Server',NULL,NULL,'2024-01-03 21:00:00','2024-01-03 21:00:10'),(1566,19,'Kamal','172.68.154.143',1,'First Server',NULL,NULL,'2024-01-03 21:00:07','2024-01-03 21:00:16'),(1567,31,'luxesquire','172.70.211.128',1,'First Server',NULL,NULL,'2024-01-03 21:00:12','2024-01-03 21:00:36'),(1568,19,'Kamal','172.68.154.143',1,'First Server',NULL,NULL,'2024-01-03 21:00:33','2024-01-03 21:02:52'),(1569,19,'Kamal','172.68.154.143',1,'First Server',NULL,NULL,'2024-01-03 21:03:08','2024-01-03 21:04:17'),(1570,31,'luxesquire','172.70.211.128',1,'First Server',NULL,NULL,'2024-01-03 21:04:14','2024-01-04 02:36:55'),(1571,10,'olga','172.70.111.67',2,'Second Server',NULL,NULL,'2024-01-04 07:51:57','2024-01-04 08:31:59'),(1572,10,'olga','172.70.111.67',3,'3rd seever',NULL,NULL,'2024-01-04 07:52:29','2024-01-04 08:32:00'),(1573,10,'olga','172.70.111.67',1,'First Server',NULL,NULL,'2024-01-04 07:52:57','2024-01-04 08:49:13'),(1574,10,'olga','172.70.111.67',1,'First Server',NULL,NULL,'2024-01-04 08:51:59','2024-01-04 09:46:59'),(1575,20,'Matthew','108.162.220.84',1,'First Server',NULL,NULL,'2024-01-04 09:46:57','2024-01-04 09:47:56'),(1576,20,'Matthew','108.162.220.84',2,'Second Server',NULL,NULL,'2024-01-04 09:48:00','2024-01-04 10:42:18'),(1577,10,'olga','172.70.111.67',2,'Second Server',NULL,NULL,'2024-01-04 10:42:15','2024-01-04 10:54:09'),(1578,10,'olga','172.70.111.67',1,'First Server',NULL,NULL,'2024-01-04 10:42:51','2024-01-04 10:58:37'),(1579,14,'lukasz','172.71.103.45',3,'3rd seever',NULL,NULL,'2024-01-04 10:59:22','2024-01-04 11:11:01'),(1580,10,'olga','172.70.111.67',1,'First Server',NULL,NULL,'2024-01-04 11:00:21','2024-01-04 11:17:04'),(1581,2,'hema','172.69.194.53',2,'Second Server',NULL,NULL,'2024-01-04 11:07:13','2024-01-04 11:10:53'),(1582,2,'hema','172.69.194.53',3,'3rd seever',NULL,NULL,'2024-01-04 11:10:58','2024-01-04 11:11:14'),(1583,10,'olga','172.70.111.67',3,'3rd seever',NULL,NULL,'2024-01-04 11:11:53','2024-01-04 11:28:39'),(1584,20,'Matthew','108.162.220.84',2,'Second Server',NULL,NULL,'2024-01-04 11:22:19','2024-01-04 13:06:24'),(1585,10,'olga','172.70.111.67',3,'3rd seever',NULL,NULL,'2024-01-04 11:39:13','2024-01-04 12:24:18'),(1586,19,'Kamal','172.70.143.23',1,'First Server',NULL,NULL,'2024-01-04 12:09:47','2024-01-04 12:12:48'),(1587,19,'Kamal','172.70.143.23',1,'First Server',NULL,NULL,'2024-01-04 12:13:22','2024-01-04 12:14:34'),(1588,10,'olga','172.70.111.67',3,'3rd seever',NULL,NULL,'2024-01-04 12:35:02','2024-01-04 13:05:27'),(1589,24,'szymon','172.68.139.63',3,'3rd seever',NULL,NULL,'2024-01-04 13:05:24','2024-01-04 13:06:08'),(1590,24,'szymon','172.68.139.63',1,'First Server',NULL,NULL,'2024-01-04 13:06:06','2024-01-04 13:06:24'),(1591,24,'szymon','172.68.139.63',2,'Second Server',NULL,NULL,'2024-01-04 13:06:21','2024-01-04 13:47:40'),(1592,19,'Kamal','172.70.142.25',1,'First Server',NULL,NULL,'2024-01-04 13:49:56','2024-01-04 14:15:33'),(1593,14,'lukasz','172.70.46.119',3,'3rd seever',NULL,NULL,'2024-01-04 16:00:47','2024-01-04 16:29:53'),(1594,14,'lukasz','172.70.46.119',3,'3rd seever',NULL,NULL,'2024-01-04 16:59:36','2024-01-04 17:27:29'),(1595,19,'Kamal','172.68.154.140',1,'First Server',NULL,NULL,'2024-01-04 18:05:29','2024-01-04 18:33:39'),(1596,19,'Kamal','172.68.154.140',1,'First Server',NULL,NULL,'2024-01-04 18:48:23','2024-01-04 19:03:59'),(1597,19,'Kamal','172.68.154.140',1,'First Server',NULL,NULL,'2024-01-04 19:28:02','2024-01-04 19:37:48'),(1598,31,'luxesquire','162.158.186.195',1,'First Server',NULL,NULL,'2024-01-04 19:37:46','2024-01-04 19:37:54'),(1599,19,'Kamal','172.68.154.140',1,'First Server',NULL,NULL,'2024-01-04 19:37:50','2024-01-04 19:37:59'),(1600,31,'luxesquire','162.158.186.195',1,'First Server',NULL,NULL,'2024-01-04 19:37:56','2024-01-04 19:38:05'),(1601,19,'Kamal','172.68.154.140',1,'First Server',NULL,NULL,'2024-01-04 19:38:01','2024-01-04 19:38:11'),(1602,31,'luxesquire','162.158.186.195',1,'First Server',NULL,NULL,'2024-01-04 19:38:07','2024-01-04 19:38:16'),(1603,19,'Kamal','172.68.154.140',1,'First Server',NULL,NULL,'2024-01-04 19:38:12','2024-01-04 19:51:23'),(1604,31,'luxesquire','162.158.186.195',2,'Second Server',NULL,NULL,'2024-01-04 19:38:26','2024-01-04 20:07:33'),(1605,31,'luxesquire','162.158.186.195',1,'First Server',NULL,NULL,'2024-01-04 20:07:41','2024-01-04 20:19:26'),(1606,31,'luxesquire','162.158.186.195',1,'First Server',NULL,NULL,'2024-01-04 20:19:43','2024-01-04 23:39:33'),(1607,31,'luxesquire','162.158.186.195',1,'First Server',NULL,NULL,'2024-01-04 23:39:49','2024-01-05 01:34:41'),(1608,31,'luxesquire','162.158.186.195',1,'First Server',NULL,NULL,'2024-01-05 01:35:11','2024-01-05 01:47:15'),(1609,31,'luxesquire','162.158.186.195',3,'3rd seever',NULL,NULL,'2024-01-05 01:47:22','2024-01-05 01:50:02'),(1610,31,'luxesquire','162.158.186.195',3,'3rd seever',NULL,NULL,'2024-01-05 01:50:10','2024-01-05 03:56:18'),(1611,31,'luxesquire','162.158.186.195',2,'Second Server',NULL,NULL,'2024-01-05 01:51:16','2024-01-05 03:56:18'),(1612,19,'Kamal','172.68.154.146',1,'First Server',NULL,NULL,'2024-01-05 04:03:40','2024-01-05 04:08:46'),(1613,31,'luxesquire','162.158.186.195',2,'Second Server',NULL,NULL,'2024-01-05 04:28:02','2024-01-05 04:28:33'),(1614,19,'Kamal','172.68.154.146',1,'First Server',NULL,NULL,'2024-01-05 04:29:20','2024-01-05 05:35:42'),(1615,31,'luxesquire','162.158.186.195',2,'Second Server',NULL,NULL,'2024-01-05 05:14:35','2024-01-05 05:16:42'),(1616,31,'luxesquire','162.158.186.195',2,'Second Server',NULL,NULL,'2024-01-05 05:16:50','2024-01-05 05:35:20'),(1617,31,'luxesquire','162.158.186.195',1,'First Server',NULL,NULL,'2024-01-05 05:35:39','2024-01-05 05:42:02'),(1618,10,'olga','162.158.238.250',3,'3rd seever',NULL,NULL,'2024-01-05 06:45:54','2024-01-05 09:01:25'),(1619,10,'olga','162.158.238.250',2,'Second Server',NULL,NULL,'2024-01-05 09:01:40','2024-01-05 09:06:40'),(1620,10,'olga','162.158.238.250',2,'Second Server',NULL,NULL,'2024-01-05 09:06:42','2024-01-05 11:15:02'),(1621,17,'cooley','172.71.98.36',1,'First Server',NULL,NULL,'2024-01-05 09:22:39','2024-01-05 09:31:06'),(1622,2,'hema','172.70.86.50',1,'First Server',NULL,NULL,'2024-01-05 09:37:04','2024-01-05 09:43:49'),(1623,31,'luxesquire','172.69.34.53',1,'First Server',NULL,NULL,'2024-01-05 10:29:17','2024-01-05 10:40:31'),(1624,31,'luxesquire','162.158.90.126',1,'First Server',NULL,NULL,'2024-01-05 17:38:28','2024-01-05 17:49:18'),(1625,31,'luxesquire','162.158.90.126',1,'First Server',NULL,NULL,'2024-01-05 17:51:34','2024-01-05 17:52:07'),(1626,31,'luxesquire','162.158.90.126',1,'First Server',NULL,NULL,'2024-01-05 17:56:07','2024-01-05 19:48:23'),(1627,31,'luxesquire','172.69.34.53',1,'First Server',NULL,NULL,'2024-01-06 00:58:49','2024-01-06 01:43:17'),(1628,31,'luxesquire','172.70.210.156',1,'First Server',NULL,NULL,'2024-01-06 06:00:17','2024-01-06 09:29:42'),(1629,31,'luxesquire','162.158.186.128',1,'First Server',NULL,NULL,'2024-01-06 09:35:35','2024-01-06 09:48:49'),(1630,31,'luxesquire','162.158.186.128',1,'First Server',NULL,NULL,'2024-01-06 09:55:12','2024-01-06 09:55:42'),(1631,31,'luxesquire','162.158.90.13',2,'Second Server',NULL,NULL,'2024-01-06 18:34:56','2024-01-06 18:35:45'),(1632,31,'luxesquire','162.158.90.13',2,'Second Server',NULL,NULL,'2024-01-06 18:49:52','2024-01-06 18:49:59'),(1633,31,'luxesquire','162.158.91.19',1,'First Server',NULL,NULL,'2024-01-06 20:03:53','2024-01-07 01:46:54'),(1634,31,'luxesquire','162.158.91.19',1,'First Server',NULL,NULL,'2024-01-07 01:47:28','2024-01-07 01:48:04'),(1635,31,'luxesquire','172.70.215.9',1,'First Server',NULL,NULL,'2024-01-07 06:39:55','2024-01-07 07:27:23'),(1636,19,'Kamal','172.68.154.142',1,'First Server',NULL,NULL,'2024-01-07 16:44:10','2024-01-07 17:09:26'),(1637,19,'Kamal','172.68.154.142',1,'First Server',NULL,NULL,'2024-01-07 17:12:30','2024-01-07 17:21:29'),(1638,19,'Kamal','172.68.154.142',1,'First Server',NULL,NULL,'2024-01-07 17:21:46','2024-01-07 17:31:45'),(1639,19,'Kamal','172.68.154.142',1,'First Server',NULL,NULL,'2024-01-07 17:32:02','2024-01-07 17:41:05'),(1640,19,'Kamal','172.68.154.142',1,'First Server',NULL,NULL,'2024-01-07 17:41:25','2024-01-07 18:37:39'),(1641,31,'luxesquire','172.69.34.48',1,'First Server',NULL,NULL,'2024-01-07 18:41:34','2024-01-07 19:03:56'),(1642,19,'Kamal','172.68.154.143',1,'First Server',NULL,NULL,'2024-01-07 19:03:52','2024-01-07 19:05:33'),(1643,31,'luxesquire','172.70.210.130',1,'First Server',NULL,NULL,'2024-01-07 20:20:16','2024-01-07 23:16:24'),(1644,31,'luxesquire','172.70.210.130',1,'First Server',NULL,NULL,'2024-01-07 23:50:08','2024-01-07 23:50:38'),(1645,14,'lukasz','172.71.182.35',3,'3rd seever',NULL,NULL,'2024-01-08 10:34:13','2024-01-08 10:34:32'),(1646,14,'lukasz','172.71.182.35',2,'Second Server',NULL,NULL,'2024-01-08 10:34:37','2024-01-08 10:54:22'),(1647,10,'olga','162.158.222.8',2,'Second Server',NULL,NULL,'2024-01-08 13:37:05','2024-01-08 13:43:15'),(1648,14,'lukasz','172.71.98.59',2,'Second Server',NULL,NULL,'2024-01-08 13:43:12','2024-01-08 19:00:16'),(1649,19,'Kamal','172.70.142.221',1,'First Server',NULL,NULL,'2024-01-08 16:02:55','2024-01-08 16:42:48'),(1650,19,'Kamal','172.70.142.221',1,'First Server',NULL,NULL,'2024-01-08 16:43:49','2024-01-08 16:47:50'),(1651,19,'Kamal','172.70.142.221',1,'First Server',NULL,NULL,'2024-01-08 16:48:36','2024-01-08 16:50:58'),(1652,19,'Kamal','162.158.54.139',1,'First Server',NULL,NULL,'2024-01-08 18:04:33','2024-01-08 18:26:32'),(1653,13,'fouad','108.162.242.54',1,'First Server',NULL,NULL,'2024-01-08 18:26:27','2024-01-08 18:26:58'),(1654,19,'Kamal','162.158.54.139',1,'First Server',NULL,NULL,'2024-01-08 18:26:55','2024-01-08 18:55:19'),(1655,13,'fouad','108.162.241.226',3,'3rd seever',NULL,NULL,'2024-01-08 18:27:17','2024-01-08 19:14:24'),(1656,19,'Kamal','162.158.54.139',1,'First Server',NULL,NULL,'2024-01-08 18:56:01','2024-01-08 19:11:17'),(1657,14,'lukasz','172.71.98.59',2,'Second Server',NULL,NULL,'2024-01-08 19:10:57','2024-01-08 20:10:20'),(1658,13,'fouad','108.162.241.226',3,'3rd seever',NULL,NULL,'2024-01-08 19:24:02','2024-01-08 19:24:04'),(1659,14,'lukasz','172.71.98.59',2,'Second Server',NULL,NULL,'2024-01-08 20:20:57','2024-01-08 23:32:58'),(1660,31,'luxesquire','162.158.245.74',1,'First Server',NULL,NULL,'2024-01-08 21:46:37','2024-01-08 21:48:54'),(1661,31,'luxesquire','162.158.245.74',1,'First Server',NULL,NULL,'2024-01-08 21:48:57','2024-01-08 21:49:50'),(1662,31,'luxesquire','162.158.245.74',1,'First Server',NULL,NULL,'2024-01-08 21:49:55','2024-01-08 21:51:21'),(1663,19,'Kamal','172.68.154.146',1,'First Server',NULL,NULL,'2024-01-08 21:51:18','2024-01-08 21:52:02'),(1664,31,'luxesquire','162.158.245.74',1,'First Server',NULL,NULL,'2024-01-08 21:51:59','2024-01-08 23:22:17'),(1665,31,'luxesquire','162.158.245.74',1,'First Server',NULL,NULL,'2024-01-08 23:56:34','2024-01-09 00:37:33'),(1666,2,'hema','172.71.242.71',3,'3rd seever',NULL,NULL,'2024-01-09 06:40:13','2024-01-09 06:40:57'),(1667,2,'hema','172.71.242.71',1,'First Server',NULL,NULL,'2024-01-09 06:41:00','2024-01-09 06:41:43'),(1668,2,'hema','172.71.242.71',2,'Second Server',NULL,NULL,'2024-01-09 06:41:46','2024-01-09 06:43:09'),(1669,10,'olga','162.158.238.57',2,'Second Server',NULL,NULL,'2024-01-09 06:52:10','2024-01-09 06:52:49'),(1670,10,'olga','162.158.238.57',3,'3rd seever',NULL,NULL,'2024-01-09 06:53:16','2024-01-09 07:50:00'),(1671,20,'Matthew','141.101.105.39',2,'Second Server',NULL,NULL,'2024-01-09 07:39:31','2024-01-09 08:40:51'),(1672,20,'Matthew','141.101.105.39',1,'First Server',NULL,NULL,'2024-01-09 07:49:12','2024-01-09 07:49:51'),(1673,20,'Matthew','141.101.105.39',3,'3rd seever',NULL,NULL,'2024-01-09 07:49:57','2024-01-09 07:54:53'),(1674,20,'Matthew','141.101.105.39',3,'3rd seever',NULL,NULL,'2024-01-09 07:54:55','2024-01-09 07:56:07'),(1675,10,'olga','162.158.238.57',3,'3rd seever',NULL,NULL,'2024-01-09 07:56:03','2024-01-09 07:56:14'),(1676,20,'Matthew','141.101.105.39',3,'3rd seever',NULL,NULL,'2024-01-09 07:56:09','2024-01-09 07:56:23'),(1677,20,'Matthew','141.101.105.39',3,'3rd seever',NULL,NULL,'2024-01-09 07:56:26','2024-01-09 08:04:54'),(1678,20,'Matthew','141.101.105.39',3,'3rd seever',NULL,NULL,'2024-01-09 08:04:55','2024-01-09 08:14:14'),(1679,10,'olga','162.158.238.57',3,'3rd seever',NULL,NULL,'2024-01-09 08:14:11','2024-01-09 08:17:37'),(1680,20,'Matthew','141.101.105.39',3,'3rd seever',NULL,NULL,'2024-01-09 08:17:34','2024-01-09 08:18:11'),(1681,10,'olga','162.158.238.57',3,'3rd seever',NULL,NULL,'2024-01-09 08:18:08','2024-01-09 08:21:46'),(1682,20,'Matthew','141.101.105.39',3,'3rd seever',NULL,NULL,'2024-01-09 08:21:43','2024-01-09 08:22:17'),(1683,10,'olga','162.158.238.57',3,'3rd seever',NULL,NULL,'2024-01-09 08:22:14','2024-01-09 08:22:59'),(1684,20,'Matthew','141.101.105.39',3,'3rd seever',NULL,NULL,'2024-01-09 08:22:55','2024-01-09 08:23:05'),(1685,10,'olga','162.158.238.57',3,'3rd seever',NULL,NULL,'2024-01-09 08:23:01','2024-01-09 08:23:18'),(1686,20,'Matthew','141.101.105.39',3,'3rd seever',NULL,NULL,'2024-01-09 08:23:15','2024-01-09 08:23:23'),(1687,10,'olga','162.158.238.57',3,'3rd seever',NULL,NULL,'2024-01-09 08:23:20','2024-01-09 08:23:29'),(1688,20,'Matthew','141.101.105.39',3,'3rd seever',NULL,NULL,'2024-01-09 08:23:25','2024-01-09 09:20:15'),(1689,20,'Matthew','141.101.105.39',2,'Second Server',NULL,NULL,'2024-01-09 08:51:53','2024-01-09 09:39:15'),(1690,19,'Kamal','172.70.142.132',1,'First Server',NULL,NULL,'2024-01-09 09:07:58','2024-01-09 09:22:37'),(1691,19,'Kamal','172.70.142.132',1,'First Server',NULL,NULL,'2024-01-09 09:22:42','2024-01-09 10:08:20'),(1692,20,'Matthew','141.101.105.39',3,'3rd seever',NULL,NULL,'2024-01-09 09:30:53','2024-01-09 10:03:37'),(1693,6,'yagoman','172.64.238.65',2,'Second Server',NULL,NULL,'2024-01-09 09:39:13','2024-01-09 10:07:30'),(1694,34,'nick','172.69.194.113',3,'Ahrefs 1st server',NULL,NULL,'2024-01-09 10:03:34','2024-01-09 10:07:16'),(1695,34,'nick','172.69.194.113',2,'Ahrefs 2nd server',NULL,NULL,'2024-01-09 10:07:27','2024-01-09 10:11:55'),(1696,34,'nick','172.69.194.113',1,'Surfer+Writing tools Server',NULL,NULL,'2024-01-09 10:08:17','2024-01-09 10:11:55'),(1697,19,'Kamal','172.70.142.132',1,'Surfer+Writing tools Server',NULL,NULL,'2024-01-09 10:13:48','2024-01-09 11:26:17'),(1698,20,'Matthew','141.101.105.109',2,'Ahrefs 2nd server',NULL,NULL,'2024-01-09 11:30:11','2024-01-09 11:58:06'),(1699,10,'olga','162.158.238.250',2,'Ahrefs 2nd server',NULL,NULL,'2024-01-09 11:58:04','2024-01-09 12:12:23'),(1700,10,'olga','162.158.238.250',3,'Ahrefs 1st server',NULL,NULL,'2024-01-09 12:00:35','2024-01-09 12:07:31'),(1701,10,'olga','162.158.238.250',2,'Ahrefs 2nd server',NULL,NULL,'2024-01-09 12:12:24','2024-01-09 12:39:33'),(1702,10,'olga','162.158.238.250',2,'Ahrefs 2nd server',NULL,NULL,'2024-01-09 12:39:34','2024-01-09 12:43:47'),(1703,19,'Kamal','172.70.147.60',1,'Surfer+Writing tools Server',NULL,NULL,'2024-01-09 12:39:40','2024-01-09 12:49:48'),(1704,10,'olga','162.158.238.250',3,'Ahrefs 1st server',NULL,NULL,'2024-01-09 12:43:34','2024-01-09 12:43:47'),(1705,10,'olga','162.158.238.250',2,'Ahrefs 2nd server',NULL,NULL,'2024-01-09 12:43:49','2024-01-09 12:52:53'),(1706,19,'Kamal','172.70.147.60',1,'Surfer+Writing tools Server',NULL,NULL,'2024-01-09 12:49:53','2024-01-09 15:00:54'),(1707,10,'olga','162.158.238.250',3,'Ahrefs 1st server',NULL,NULL,'2024-01-09 12:53:08','2024-01-09 13:02:00'),(1708,10,'olga','162.158.238.250',3,'Ahrefs 1st server',NULL,NULL,'2024-01-09 13:03:05','2024-01-09 14:50:46'),(1709,10,'olga','162.158.238.250',3,'Ahrefs 1st server',NULL,NULL,'2024-01-09 15:01:17','2024-01-09 15:24:17'),(1710,19,'Kamal','172.70.219.26',1,'Surfer+Writing tools Server',NULL,NULL,'2024-01-09 15:44:59','2024-01-09 15:53:36'),(1711,19,'Kamal','172.70.219.26',1,'Surfer+Writing tools Server',NULL,NULL,'2024-01-09 16:34:31','2024-01-09 16:42:27'),(1712,19,'Kamal','172.71.202.52',1,'Surfer+Writing tools Server',NULL,NULL,'2024-01-09 17:43:01','2024-01-09 18:00:10'),(1713,19,'Kamal','172.71.202.52',1,'Surfer+Writing tools Server',NULL,NULL,'2024-01-09 18:14:51','2024-01-09 18:43:50'),(1714,19,'Kamal','172.68.154.146',1,'Surfer+Writing tools Server',NULL,NULL,'2024-01-09 19:29:18','2024-01-09 19:34:35'),(1715,10,'olga','162.158.238.73',3,'Ahrefs 1st server',NULL,NULL,'2024-01-10 06:33:58','2024-01-10 06:36:08'),(1716,10,'olga','162.158.238.73',2,'Ahrefs 2nd server',NULL,NULL,'2024-01-10 06:35:30','2024-01-10 06:36:08'),(1717,10,'olga','162.158.238.73',2,'Ahrefs 2nd server',NULL,NULL,'2024-01-10 06:36:10','2024-01-10 06:39:26'),(1718,10,'olga','162.158.238.73',1,'Surfer+Writing tools Server',NULL,NULL,'2024-01-10 06:36:54','2024-01-10 08:12:42'),(1719,10,'olga','162.158.238.73',1,'Surfer+Writing tools Server',NULL,NULL,'2024-01-10 08:26:33','2024-01-10 09:04:22'),(1720,10,'olga','162.158.238.73',1,'Surfer+Writing tools Server',NULL,NULL,'2024-01-10 09:15:18','2024-01-10 09:33:07'),(1721,10,'olga','162.158.238.73',3,'Ahrefs 1st server',NULL,NULL,'2024-01-10 09:33:23','2024-01-10 12:46:55'),(1722,10,'olga','162.158.238.73',1,'Surfer+Writing tools Server',NULL,NULL,'2024-01-10 12:46:16','2024-01-10 12:58:59'),(1723,19,'Kamal','172.70.143.51',1,'Surfer+Writing tools Server',NULL,NULL,'2024-01-10 12:58:56','2024-01-10 13:00:56'),(1724,10,'olga','162.158.238.73',1,'Surfer+Writing tools Server',NULL,NULL,'2024-01-10 13:31:03','2024-01-10 14:37:33'),(1725,10,'olga','162.158.238.73',3,'Ahrefs 1st server',NULL,NULL,'2024-01-10 13:32:09','2024-01-10 20:44:38'),(1726,2,'hema','172.70.90.120',1,'Surfer+Writing tools Server',NULL,NULL,'2024-01-10 14:37:30','2024-01-10 14:47:17'),(1727,2,'hema','172.70.90.120',1,'Surfer+Writing tools Server',NULL,NULL,'2024-01-10 15:17:53','2024-01-10 15:19:25'),(1728,19,'Kamal','172.68.154.146',1,'Surfer+Writing tools Server',NULL,NULL,'2024-01-10 15:25:14','2024-01-10 15:26:06'),(1729,22,'Hallett','172.70.85.93',3,'Ahrefs 1st server',NULL,NULL,'2024-01-10 20:44:35','2024-01-10 20:46:55'),(1730,10,'olga','162.158.238.44',1,'Surfer+Writing tools Server',NULL,NULL,'2024-01-11 07:54:22','2024-01-11 12:11:49'),(1731,10,'olga','162.158.238.44',3,'Ahrefs 1st server',NULL,NULL,'2024-01-11 08:28:36','2024-01-11 09:34:34'),(1732,10,'olga','162.158.238.44',2,'Ahrefs 2nd server',NULL,NULL,'2024-01-11 09:33:46','2024-01-11 09:34:33'),(1733,14,'lukasz','172.71.98.110',2,'Ahrefs 2nd server',NULL,NULL,'2024-01-11 12:13:04','2024-01-11 12:13:27'),(1734,14,'lukasz','172.71.98.110',2,'Ahrefs 2nd server',NULL,NULL,'2024-01-11 12:13:27','2024-01-11 13:01:12'),(1735,14,'lukasz','172.71.98.110',2,'Ahrefs 2nd server',NULL,NULL,'2024-01-11 13:16:43','2024-01-11 15:21:45'),(1736,14,'lukasz','172.71.98.58',2,'Ahrefs 2nd server',NULL,NULL,'2024-01-11 15:26:44','2024-01-11 15:53:12'),(1737,35,'Michał','172.68.139.63',1,'Surfer+Writing tools Server',NULL,NULL,'2024-01-11 15:38:34','2024-01-11 16:15:26'),(1738,35,'Michał','172.68.139.63',1,'Surfer+Writing tools Server',NULL,NULL,'2024-01-11 16:15:26','2024-01-11 18:07:52'),(1739,10,'olga','162.158.222.8',1,'Surfer+Writing tools Server',NULL,NULL,'2024-01-11 18:07:48','2024-01-11 18:09:06'),(1740,10,'olga','162.158.222.8',2,'Ahrefs 2nd server',NULL,NULL,'2024-01-11 18:09:08','2024-01-11 18:09:23'),(1741,10,'olga','162.158.222.8',3,'Ahrefs 1st server',NULL,NULL,'2024-01-11 18:09:30','2024-01-11 18:18:27'),(1742,10,'olga','162.158.222.8',1,'Surfer+Writing tools Server',NULL,NULL,'2024-01-11 18:10:25',NULL),(1743,10,'olga','162.158.222.8',3,'Ahrefs 1st server',NULL,NULL,'2024-01-11 18:18:43',NULL);
/*!40000 ALTER TABLE `guacamole_connection_history` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `guacamole_connection_parameter`
--
DROP TABLE IF EXISTS `guacamole_connection_parameter`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `guacamole_connection_parameter` (
`connection_id` int NOT NULL,
`parameter_name` varchar(128) NOT NULL,
`parameter_value` varchar(4096) NOT NULL,
PRIMARY KEY (`connection_id`,`parameter_name`),
CONSTRAINT `guacamole_connection_parameter_ibfk_1` FOREIGN KEY (`connection_id`) REFERENCES `guacamole_connection` (`connection_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `guacamole_connection_parameter`
--
LOCK TABLES `guacamole_connection_parameter` WRITE;
/*!40000 ALTER TABLE `guacamole_connection_parameter` DISABLE KEYS */;
INSERT INTO `guacamole_connection_parameter` VALUES (1,'disable-download','true'),(1,'enable-desktop-composition','true'),(1,'enable-font-smoothing','true'),(1,'enable-full-window-drag','true'),(1,'enable-menu-animations','true'),(1,'enable-printing','true'),(1,'enable-theming','true'),(1,'enable-wallpaper','true'),(1,'hostname','3.70.18.8'),(1,'ignore-cert','true'),(1,'password','HFVHIDL12@q'),(1,'username','gb'),(2,'disable-bitmap-caching','true'),(2,'disable-glyph-caching','true'),(2,'disable-offscreen-caching','true'),(2,'enable-desktop-composition','true'),(2,'enable-font-smoothing','true'),(2,'enable-full-window-drag','true'),(2,'enable-menu-animations','true'),(2,'enable-printing','true'),(2,'enable-theming','true'),(2,'enable-wallpaper','true'),(2,'hostname','3.70.221.186'),(2,'ignore-cert','true'),(2,'password','HFVHIDL12@q'),(2,'username','gb'),(3,'color-depth','8'),(3,'disable-bitmap-caching','true'),(3,'disable-glyph-caching','true'),(3,'disable-offscreen-caching','true'),(3,'enable-desktop-composition','true'),(3,'enable-font-smoothing','true'),(3,'enable-full-window-drag','true'),(3,'enable-menu-animations','true'),(3,'enable-printing','true'),(3,'enable-theming','true'),(3,'enable-wallpaper','true'),(3,'force-lossless','true'),(3,'hostname','18.193.254.85'),(3,'ignore-cert','true'),(3,'password','HFVHIDL12@q'),(3,'resize-method','display-update'),(3,'username','gb'),(4,'hostname','3.249.24.148'),(4,'port','22'),(4,'private-key','-----BEGIN RSA PRIVATE KEY-----\nMIIEpAIBAAKCAQEAw8KsehEU0kalOfC6X6LjSoFZtkwiXUpEMf/GUDSAFAeYAzF1\nQAginqiM7jLCLM4BaI/ruJ/s5Sg3x6yuPRDdwdFfGs/hWoeeo9+fgafTdSMivYG8\nj2xC17MXNp/MelxdtO/rE2fKb4c2yZrweVQCpTJvrCGp7XUhRT6c2ryHRDuyCZhy\nulNUzSp91GoGsw6Uyd0pM+wR8WiOWJUQfKqZR3U4eBwcv107ASh3d1TiGqo5kjyw\nbP6NloqzEBEARTNi7Z/S9fXjTboH70b3d6ZFtGz5aWxrS6e7ptBojZ3STVP+V/SH\nDTmmxHwYYjHNitANHDP+ussDqCjnSBXUvpkQdQIDAQABAoIBAQC0qsILliAlQNXU\nd3tKMEacyGxHdlRwzM3LZ0dbVliuI6QDrm2LvvZUfzIx096pAycBnXHrXo1/oHJ6\nccAM07gV3GltkVVl+6xJiWTogD8D6H1zcHzZ0QyPjdVqsGhCtWQ2TQYjTrLh42SJ\nA9nT39jhJX8y2Y6+fE9MXNDefwhHy0G9fDJ35rI9WTyljwQJkiM9eXTig1/K31dZ\nUcqLSS2STKECnsXyXi/xFNPTpZXiaxUPkKRzXmcEkSwcoG2eVeqU8AwEzkKn5Y+o\ngQ2c/w2TQW784kdpiGpheOZxSS26cCyZUDiq+hU3EblkyEvLBStrzrDiVFbl+sqS\nKNywLTIBAoGBAPHhdjjueJprVDZ61/nnlX2XIzRxArZj/tzr/o88kXwznfR1BqgX\nl4yFQyTqgsp83AyLxFSkquGBrODOH5TOiDn2yQrzTIilbQy1cz0Rm2kPPhx968+S\ndCZYkuHhE0kNrES2Of1mZ2n6u18DdH5fUoiycjzJEPCOJ++iu1O5sW9VAoGBAM8w\nA9HLV3Fpy+AMKuNdSGEZg7gRLaTVUZNAf0KsFFXuVNbQ67zOfaJdeBpBaHV6FCrH\nf/oc3RnCUIUVJMsKB7aFiBpjffbuFe0y80+LSSuy85B0LHbmui2Id0q7cPV8AL9m\nC+3hl0Tkim1k5RexXpNbtn8D55PYW8/bLTzfAdyhAoGAIxK9UM4LgOC1Sl0PujYB\ncD+dJDqK2SWwzBoQRHbU5byaV9ssRu181SxxqwWyR2hJhCw0IM3r1V03UzWwUKSO\nDlGhn0veOiY6pNAe0Kkf7uD98aW0rtmeq/zF96jqYfpwk1oVGJBjyHNJ/iIDH1v1\nHMs7U2MYaLlEQzRGk4Jmny0CgYEAs7fimEjaQPaUcnQbf72a2x9WsoO0JBcl+6Um\nvp6lxSRHU09GLTCwqfaKB7xU8BJFDBahXENNRtrXHZmJoNXCewC5XqqOyXMccfSQ\nOZ+IiO9hdxxOtZTOSlDlqV2OTmKSA3RxRJc6r/fOW7X5QuQINaqIUwUAC67RdSuZ\nwgNvigECgYA36laBc0k/qYSBt/19tfR86Bdt0F630T0K/PIRJHNfyzaPV91rL9zs\nB7KTushaZp0YKQduPypQzdRnffvZ76fzbCZZYP3T2b1OqC25k/D4gWyPnOqJlPA5\nRgubaKCa7WkrBDzMK+x4XLiYfUbpSqSmufom3jv7HA4tGTVHZuXTFQ==\n-----END RSA PRIVATE KEY-----'),(4,'username','ubuntu'),(5,'hostname','ec2-13-38-69-1.eu-west-3.compute.amazonaws.com'),(5,'ignore-cert','true'),(5,'password','HFVHIDL12@q'),(5,'port','3306'),(5,'username','Administrator'),(6,'color-depth','8'),(6,'disable-bitmap-caching','true'),(6,'disable-glyph-caching','true'),(6,'disable-offscreen-caching','true'),(6,'enable-audio-input','true'),(6,'enable-desktop-composition','true'),(6,'enable-drive','true'),(6,'enable-font-smoothing','true'),(6,'enable-full-window-drag','true'),(6,'enable-menu-animations','true'),(6,'enable-printing','true'),(6,'enable-theming','true'),(6,'enable-wallpaper','true'),(6,'force-lossless','true'),(6,'hostname','ec2-13-38-69-1.eu-west-3.compute.amazonaws.com'),(6,'ignore-cert','true'),(6,'password','HFVHIDL12@q'),(6,'resize-method','display-update'),(6,'username','Administrator');
/*!40000 ALTER TABLE `guacamole_connection_parameter` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `guacamole_connection_permission`
--
DROP TABLE IF EXISTS `guacamole_connection_permission`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `guacamole_connection_permission` (
`entity_id` int NOT NULL,
`connection_id` int NOT NULL,
`permission` enum('READ','UPDATE','DELETE','ADMINISTER') NOT NULL,
PRIMARY KEY (`entity_id`,`connection_id`,`permission`),
KEY `guacamole_connection_permission_ibfk_1` (`connection_id`),
CONSTRAINT `guacamole_connection_permission_entity` FOREIGN KEY (`entity_id`) REFERENCES `guacamole_entity` (`entity_id`) ON DELETE CASCADE,
CONSTRAINT `guacamole_connection_permission_ibfk_1` FOREIGN KEY (`connection_id`) REFERENCES `guacamole_connection` (`connection_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `guacamole_connection_permission`
--
LOCK TABLES `guacamole_connection_permission` WRITE;
/*!40000 ALTER TABLE `guacamole_connection_permission` DISABLE KEYS */;
INSERT INTO `guacamole_connection_permission` VALUES (2,1,'READ'),(2,1,'UPDATE'),(2,1,'DELETE'),(2,1,'ADMINISTER'),(3,1,'READ'),(4,1,'READ'),(5,1,'READ'),(6,1,'READ'),(7,1,'READ'),(8,1,'READ'),(9,1,'READ'),(10,1,'READ'),(11,1,'READ'),(12,1,'READ'),(13,1,'READ'),(14,1,'READ'),(15,1,'READ'),(16,1,'READ'),(17,1,'READ'),(18,1,'READ'),(19,1,'READ'),(20,1,'READ'),(21,1,'READ'),(22,1,'READ'),(23,1,'READ'),(24,1,'READ'),(25,1,'READ'),(26,1,'READ'),(27,1,'READ'),(28,1,'READ'),(29,1,'READ'),(32,1,'READ'),(33,1,'READ'),(34,1,'READ'),(36,1,'READ'),(2,2,'READ'),(2,2,'UPDATE'),(2,2,'DELETE'),(2,2,'ADMINISTER'),(3,2,'READ'),(4,2,'READ'),(5,2,'READ'),(6,2,'READ'),(7,2,'READ'),(8,2,'READ'),(9,2,'READ'),(10,2,'READ'),(11,2,'READ'),(12,2,'READ'),(13,2,'READ'),(14,2,'READ'),(15,2,'READ'),(16,2,'READ'),(17,2,'READ'),(18,2,'READ'),(19,2,'READ'),(20,2,'READ'),(21,2,'READ'),(22,2,'READ'),(23,2,'READ'),(24,2,'READ'),(25,2,'READ'),(26,2,'READ'),(27,2,'READ'),(28,2,'READ'),(29,2,'READ'),(32,2,'READ'),(33,2,'READ'),(34,2,'READ'),(36,2,'READ'),(2,3,'READ'),(2,3,'UPDATE'),(2,3,'DELETE'),(2,3,'ADMINISTER'),(3,3,'READ'),(4,3,'READ'),(5,3,'READ'),(6,3,'READ'),(7,3,'READ'),(8,3,'READ'),(9,3,'READ'),(10,3,'READ'),(11,3,'READ'),(12,3,'READ'),(13,3,'READ'),(14,3,'READ'),(15,3,'READ'),(16,3,'READ'),(17,3,'READ'),(18,3,'READ'),(19,3,'READ'),(20,3,'READ'),(21,3,'READ'),(22,3,'READ'),(23,3,'READ'),(24,3,'READ'),(25,3,'READ'),(26,3,'READ'),(27,3,'READ'),(28,3,'READ'),(29,3,'READ'),(32,3,'READ'),(33,3,'READ'),(34,3,'READ'),(36,3,'READ'),(2,4,'READ'),(2,4,'UPDATE'),(2,4,'DELETE'),(2,4,'ADMINISTER'),(2,5,'READ'),(2,5,'UPDATE'),(2,5,'DELETE'),(2,5,'ADMINISTER'),(2,6,'READ'),(2,6,'UPDATE'),(2,6,'DELETE'),(2,6,'ADMINISTER'),(31,6,'READ');
/*!40000 ALTER TABLE `guacamole_connection_permission` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `guacamole_entity`
--
DROP TABLE IF EXISTS `guacamole_entity`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `guacamole_entity` (
`entity_id` int NOT NULL AUTO_INCREMENT,
`name` varchar(128) NOT NULL,
`type` enum('USER','USER_GROUP') NOT NULL,
PRIMARY KEY (`entity_id`),
UNIQUE KEY `guacamole_entity_name_scope` (`type`,`name`)
) ENGINE=InnoDB AUTO_INCREMENT=37 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `guacamole_entity`
--
LOCK TABLES `guacamole_entity` WRITE;
/*!40000 ALTER TABLE `guacamole_entity` DISABLE KEYS */;
INSERT INTO `guacamole_entity` VALUES (16,'arbmaniac','USER'),(12,'ben','USER'),(17,'cooley','USER'),(21,'Deen','USER'),(18,'Fernando','USER'),(13,'fouad','USER'),(28,'ghostz8520','USER'),(5,'goutham','USER'),(1,'guacadmin','USER'),(22,'Hallett','USER'),(8,'harouni','USER'),(2,'hema','USER'),(15,'impactcentric','USER'),(34,'Jason','USER'),(9,'jeff','USER'),(19,'Kamal','USER'),(33,'legacymail','USER'),(14,'lukasz','USER'),(32,'luxesquire','USER'),(29,'mariusz.grela','USER'),(20,'Matthew','USER'),(3,'mazen','USER'),(36,'Michał','USER'),(25,'mike','USER'),(35,'nick','USER'),(10,'olga','USER'),(4,'pablojoy','USER'),(23,'rickm','USER'),(24,'szymon','USER'),(31,'team','USER'),(7,'test','USER'),(27,'tony','USER'),(11,'vipin','USER'),(6,'yagoman','USER'),(26,'zvone','USER'),(30,'freelance','USER_GROUP');
/*!40000 ALTER TABLE `guacamole_entity` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `guacamole_sharing_profile`
--
DROP TABLE IF EXISTS `guacamole_sharing_profile`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `guacamole_sharing_profile` (
`sharing_profile_id` int NOT NULL AUTO_INCREMENT,
`sharing_profile_name` varchar(128) NOT NULL,
`primary_connection_id` int NOT NULL,
PRIMARY KEY (`sharing_profile_id`),
UNIQUE KEY `sharing_profile_name_primary` (`sharing_profile_name`,`primary_connection_id`),
KEY `guacamole_sharing_profile_ibfk_1` (`primary_connection_id`),
CONSTRAINT `guacamole_sharing_profile_ibfk_1` FOREIGN KEY (`primary_connection_id`) REFERENCES `guacamole_connection` (`connection_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `guacamole_sharing_profile`
--
LOCK TABLES `guacamole_sharing_profile` WRITE;
/*!40000 ALTER TABLE `guacamole_sharing_profile` DISABLE KEYS */;
/*!40000 ALTER TABLE `guacamole_sharing_profile` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `guacamole_sharing_profile_attribute`
--
DROP TABLE IF EXISTS `guacamole_sharing_profile_attribute`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `guacamole_sharing_profile_attribute` (
`sharing_profile_id` int NOT NULL,
`attribute_name` varchar(128) NOT NULL,
`attribute_value` varchar(4096) NOT NULL,
PRIMARY KEY (`sharing_profile_id`,`attribute_name`),
KEY `sharing_profile_id` (`sharing_profile_id`),
CONSTRAINT `guacamole_sharing_profile_attribute_ibfk_1` FOREIGN KEY (`sharing_profile_id`) REFERENCES `guacamole_sharing_profile` (`sharing_profile_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `guacamole_sharing_profile_attribute`
--
LOCK TABLES `guacamole_sharing_profile_attribute` WRITE;
/*!40000 ALTER TABLE `guacamole_sharing_profile_attribute` DISABLE KEYS */;
/*!40000 ALTER TABLE `guacamole_sharing_profile_attribute` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `guacamole_sharing_profile_parameter`
--
DROP TABLE IF EXISTS `guacamole_sharing_profile_parameter`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `guacamole_sharing_profile_parameter` (
`sharing_profile_id` int NOT NULL,
`parameter_name` varchar(128) NOT NULL,
`parameter_value` varchar(4096) NOT NULL,
PRIMARY KEY (`sharing_profile_id`,`parameter_name`),
CONSTRAINT `guacamole_sharing_profile_parameter_ibfk_1` FOREIGN KEY (`sharing_profile_id`) REFERENCES `guacamole_sharing_profile` (`sharing_profile_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `guacamole_sharing_profile_parameter`
--
LOCK TABLES `guacamole_sharing_profile_parameter` WRITE;
/*!40000 ALTER TABLE `guacamole_sharing_profile_parameter` DISABLE KEYS */;
/*!40000 ALTER TABLE `guacamole_sharing_profile_parameter` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `guacamole_sharing_profile_permission`
--
DROP TABLE IF EXISTS `guacamole_sharing_profile_permission`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `guacamole_sharing_profile_permission` (
`entity_id` int NOT NULL,
`sharing_profile_id` int NOT NULL,
`permission` enum('READ','UPDATE','DELETE','ADMINISTER') NOT NULL,
PRIMARY KEY (`entity_id`,`sharing_profile_id`,`permission`),
KEY `guacamole_sharing_profile_permission_ibfk_1` (`sharing_profile_id`),
CONSTRAINT `guacamole_sharing_profile_permission_entity` FOREIGN KEY (`entity_id`) REFERENCES `guacamole_entity` (`entity_id`) ON DELETE CASCADE,
CONSTRAINT `guacamole_sharing_profile_permission_ibfk_1` FOREIGN KEY (`sharing_profile_id`) REFERENCES `guacamole_sharing_profile` (`sharing_profile_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `guacamole_sharing_profile_permission`
--
LOCK TABLES `guacamole_sharing_profile_permission` WRITE;
/*!40000 ALTER TABLE `guacamole_sharing_profile_permission` DISABLE KEYS */;
/*!40000 ALTER TABLE `guacamole_sharing_profile_permission` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `guacamole_system_permission`
--
DROP TABLE IF EXISTS `guacamole_system_permission`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `guacamole_system_permission` (
`entity_id` int NOT NULL,
`permission` enum('CREATE_CONNECTION','CREATE_CONNECTION_GROUP','CREATE_SHARING_PROFILE','CREATE_USER','CREATE_USER_GROUP','ADMINISTER') NOT NULL,
PRIMARY KEY (`entity_id`,`permission`),
CONSTRAINT `guacamole_system_permission_entity` FOREIGN KEY (`entity_id`) REFERENCES `guacamole_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `guacamole_system_permission`
--
LOCK TABLES `guacamole_system_permission` WRITE;
/*!40000 ALTER TABLE `guacamole_system_permission` DISABLE KEYS */;
INSERT INTO `guacamole_system_permission` VALUES (1,'CREATE_CONNECTION'),(1,'CREATE_CONNECTION_GROUP'),(1,'CREATE_SHARING_PROFILE'),(1,'CREATE_USER'),(1,'CREATE_USER_GROUP'),(1,'ADMINISTER'),(2,'CREATE_CONNECTION'),(2,'CREATE_CONNECTION_GROUP'),(2,'CREATE_SHARING_PROFILE'),(2,'CREATE_USER'),(2,'CREATE_USER_GROUP'),(2,'ADMINISTER');
/*!40000 ALTER TABLE `guacamole_system_permission` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `guacamole_user`
--
DROP TABLE IF EXISTS `guacamole_user`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `guacamole_user` (
`user_id` int NOT NULL AUTO_INCREMENT,
`entity_id` int NOT NULL,
`password_hash` binary(32) NOT NULL,
`password_salt` binary(32) DEFAULT NULL,
`password_date` datetime NOT NULL,
`disabled` tinyint(1) NOT NULL DEFAULT '0',
`expired` tinyint(1) NOT NULL DEFAULT '0',
`access_window_start` time DEFAULT NULL,
`access_window_end` time DEFAULT NULL,
`valid_from` date DEFAULT NULL,
`valid_until` date DEFAULT NULL,
`timezone` varchar(64) DEFAULT NULL,
`full_name` varchar(256) DEFAULT NULL,
`email_address` varchar(256) DEFAULT NULL,
`organization` varchar(256) DEFAULT NULL,
`organizational_role` varchar(256) DEFAULT NULL,
PRIMARY KEY (`user_id`),
UNIQUE KEY `guacamole_user_single_entity` (`entity_id`),
CONSTRAINT `guacamole_user_entity` FOREIGN KEY (`entity_id`) REFERENCES `guacamole_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=36 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `guacamole_user`
--
LOCK TABLES `guacamole_user` WRITE;
/*!40000 ALTER TABLE `guacamole_user` DISABLE KEYS */;
INSERT INTO `guacamole_user` VALUES (1,1,_binary 'т<>\<5C>\<5C><>P\<5C><>\0<^\\<5C>A[\<5C>\<5C>I\<5C>\<5C>\<5C>=wo<77>k\<5C>',_binary '<EFBFBD>`\<5C>#<23><>\<5C>\<5C>$<24>E\<5C>4F j<><04>\'<EFBFBD>\<EFBFBD>\<EFBFBD><EFBFBD>\<EFBFBD>ߵ','2023-11-07 09:59:05',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2,2,_binary '<EFBFBD>U\<EFBFBD>\<EFBFBD>\<EFBFBD>\<EFBFBD>\<EFBFBD><EFBFBD><EFBFBD>\<EFBFBD>\<EFBFBD>hU<EFBFBD><EFBFBD>%b\<EFBFBD>{\<EFBFBD>\<EFBFBD>\'<EFBFBD>|r\<5C>p',_binary '<EFBFBD>/<2F>^<5E>\<5C>=\<5C>X\<5C><>V\<5C> !<21>ά\<5C>a4<61>%<25>I<EFBFBD><49><EFBFBD>','2023-11-07 10:00:30',0,0,NULL,NULL,NULL,NULL,'Asia/Kuwait','hema','hema@gb.tools','GB.tools','ADMIN'),(3,3,_binary ')\<5C>)\<5C>6<EFBFBD><36>s<EFBFBD>+un;<3B><><EFBFBD>GΕe ߝ Hs<48><73><13>',_binary '<EFBFBD><EFBFBD> G<>\<5C>l>\<5C>E\<5C><>r%״\<5C><>\<5C><>j:C7aDq<14>[','2023-11-07 13:14:44',0,0,NULL,NULL,NULL,NULL,NULL,'mazen','mazen@gb.tools','gb.tools',NULL),(4,4,_binary 'Zv4<EFBFBD>2\<5C>\<5C>D\<5C><19><>P\<5C>2<EFBFBD><32><EFBFBD>aB<61>U<EFBFBD>UԖu<D496> w\<5C>}',_binary 'f\<5C><><EFBFBD>\<5C>mv[\<5C>A\<5C>[<5B>\rN<72>T(<28><><EFBFBD>H<EFBFBD>4\<5C>G&\<5C>','2023-11-08 13:16:46',0,0,NULL,NULL,NULL,NULL,NULL,'pablojoy','pablojoy@gb.tools','GB.tools',NULL),(5,5,_binary '<EFBFBD><EFBFBD>A<EFBFBD>\<5C>\<5C>ӕ<EFBFBD><D395>n\<5C>SI<><49>1<EFBFBD>Y<EFBFBD>A<EFBFBD><41>㊼u<E38ABC>',_binary '.<2E><><EFBFBD>\<5C>\<5C>ӂ<0F><><EFBFBD>ĤYD><3E>\<5C>\<5C><08><><0qGů<47><C5AF>','2023-11-07 16:25:54',0,0,NULL,NULL,NULL,NULL,NULL,'goutham','goutham@gb.tools','GB.tools',NULL),(6,6,_binary '~<7E>\<5C>l<>O<EFBFBD>\<5C>><3E>+8a\<5C><>o<>JKe<4B>{z<>z',_binary 'LT\<5C>\<5C>\'Y<EFBFBD># <EFBFBD><EFBFBD>\n\r\<EFBFBD> \<EFBFBD>q=<EFBFBD>zkJ\<EFBFBD>sD\<EFBFBD>Ǥ','2023-11-07 16:27:25',0,0,NULL,NULL,NULL,NULL,NULL,'yagoman','yagoman@gb.tools','GB.tools',NULL),(7,7,_binary '\<EFBFBD>\<EFBFBD>%<EFBFBD>3\<EFBFBD><EFBFBD><EFBFBD>Hy<EFBFBD>\<EFBFBD>g\Z( o\<EFBFBD>_~S<EFBFBD><EFBFBD>\<EFBFBD>.\<EFBFBD>\<EFBFBD><EFBFBD>',_binary ',5<EFBFBD>n<EFBFBD><EFBFBD>^\<EFBFBD>\<EFBFBD> <EFBFBD>Uv<EFBFBD>7`8\<EFBFBD>)~Մ\<EFBFBD>\<EFBFBD>\<EFBFBD>\<EFBFBD><EFBFBD>','2023-11-07 16:28:20',0,0,NULL,NULL,NULL,NULL,NULL,'test',NULL,'GB.tools',NULL),(8,8,_binary '<EFBFBD>U}9<EFBFBD><EFBFBD><EFBFBD><EFBFBD>\<EFBFBD>ۇ<EFBFBD>N<EFBFBD>.*<EFBFBD>@<EFBFBD>Js<EFBFBD>A<EFBFBD>\<EFBFBD>`\<EFBFBD>QN<EFBFBD>',_binary 'p\<EFBFBD><EFBFBD>9\<EFBFBD><EFBFBD>0\<EFBFBD>\"_D<18><><EFBFBD>\Z<>\<5C>\<5C>%<25><><EFBFBD>6S<36><53><EFBFBD>','2023-11-07 16:35:05',0,0,NULL,NULL,NULL,NULL,NULL,'harouni','harouni@gb.tools','Gb.tools',NULL),(9,9,_binary '\nZ<6E>N<EFBFBD><4E>\<5C>#<23>\<5C>ﹰ\<5C>r^<19>E0\<5C>\<5C>\<5C>\<5C>\<5C>e,I/1F',_binary '\<5C><>\<5C>@<40>\<5C>\<5C><>\<5C>e\0<0E><>[\<5C>\<5C>8NYCd7<64>ϩ \<5C>9','2023-11-07 16:36:22',0,0,NULL,NULL,NULL,NULL,NULL,'jeff',NULL,'GB.tools',NULL),(10,10,_binary '\<5C>F!<21><>\<5C>c<EFBFBD>\Zu\<5C>\<5C>\<5C>\<5C>\<5C>\<5C>䀉\<5C>(q8<>MY\Z<><5A><EFBFBD>',_binary '<27><>\Z\<5C>Ӡ1u<><75>\<5C>b<1E><><EFBFBD><EFBFBD>\<5C>!<21><01>Ƥ\<5C><><02>','2023-11-07 16:38:06',0,0,NULL,NULL,NULL,NULL,NULL,'olga','olga@gb.tools','GB.tools',NULL),(11,11,_binary 'P<>vWGVf<56>{t<>V]\<5C><01>`{<7B>@\<5C>\<5C>X!\<5C>U\<5C>w<EFBFBD>)',_binary '\<5C><><EFBFBD><EFBFBD>*<2A><>T$<0F>9 <19><>Ь\<5C>t\<5C>8<EFBFBD><38>\<5C>c<0E><><EFBFBD><EFBFBD><EFBFBD>','2023-11-07 16:39:34',0,0,NULL,NULL,NULL,NULL,NULL,'vipin','vipin@gb.tools','GB.tools',NULL),(12,12,_binary 'g<>u<><75><EFBFBD>C<18><><EFBFBD>\<5C>\<5C>\<5C>%Ml<4D><6C><EFBFBD>\<5C><>V\0}J{<7B>k<EFBFBD>h',_binary '\<5C><>a<EFBFBD><61>,<>z\<5C>oo-\<5C>\<5C>.<2E><EFBFBD><E8AE83>І\<5C>','2023-11-07 16:42:55',0,0,NULL,NULL,NULL,NULL,NULL,'ben','ben@gb.tools','GB.tools',NULL),(13,13,_binary '\<5C>\<5C>\<5C><>\<5C>RL<>]B\<5C>\<5C>qj\<5C>p8\<5C><><EFBFBD>\<5C>ˏb<CB8F><62><EFBFBD>\n',_binary '!c\<5C>\<5C><>V\\\<5C>|<03>֠ݜJ<DD9C>|<06>@m~\<5C>xŅ~f','2023-11-07 16:44:58',0,0,NULL,NULL,NULL,NULL,NULL,'fouad','fouad@gb.tools','GB.tools',NULL),(14,14,_binary '\Z<>#=W܊\<5C>\<5C>\<5C>j`V<><56><EFBFBD>E\<5C>\rU\<5C>DB&\<5C>\<5C><><EFBFBD>֥<EFBFBD>',_binary '0\<5C>-\<5C>j8<6A>q<EFBFBD>r\<5C>\n<>\<5C>6\<5C><>c<EFBFBD>t*cA<16>J<EFBFBD>Jq<4A>\<5C>','2023-11-29 14:33:51',0,0,NULL,NULL,NULL,NULL,NULL,'lukasz','lukasz@gb.tools','GB.tools',NULL),(15,15,_binary '\<5C>\<5C>\<5C>X\<5C>!\<5C>%\<5C>X\<5C>=X2&:z<><7A>6f<36><66><EFBFBD>]Bqx',_binary '<11>%V~\ra\Z<>؄\<5C><><EFBFBD>\r\<5C>B\<5C><>4<EFBFBD>\<5C>\<5C><>\<5C>\<5C>\<5C>','2023-11-07 16:55:25',0,0,NULL,NULL,NULL,'2024-01-13',NULL,'impactcentric','impactcentric@gb.tools','GB.tools',NULL),(16,16,_binary '5<><1E>CZ\<5C>\<5C><><EFBFBD>߹\<5C><>S [8<><38><1B>\<5C>K<EFBFBD>\<5C><>7\<5C><02>',_binary '<27><>RS\<5C><>;\<5C>\<5C>D\<5C><><EFBFBD>T^Z\<5C><>y\<5C>:L<><13>W<EFBFBD>GzM','2023-11-07 16:56:13',0,0,NULL,NULL,NULL,NULL,NULL,'arbmaniac','arbmaniac@gb.tools','GB.tools',NULL),(17,17,_binary 'r\<5C><>Ǥ.\<5C>.\<5C><>\<5C>Pk1<31>\<5C>j<02>6<EFBFBD>\<5C>\n<>%P<>.y\<5C>',_binary '<27><>)2/Gv <0C><>\<5C>*<2A>3\<5C>\<5C>}HK5t<35>:<3A>\<5C>W\<5C>M\<5C>խ','2023-11-07 16:59:59',0,0,NULL,NULL,NULL,NULL,NULL,'Cooley','Cooley@gb.tools','GB.tools',NULL),(18,18,_binary '.\<5C><11><11>]<5D>v<EFBFBD>/+\<5C> ْyZ<18><>\<5C>R mFx',_binary '48<34>t<EFBFBD><18>\<5C>O\<5C>QwG<77>!͏<><CD8F><EFBFBD>\<5C>T<>0\<5C>u\<5C>','2023-11-07 17:01:20',0,0,NULL,NULL,NULL,NULL,NULL,'Fernando','Fernando@gb.tools','GB.tools',NULL),(19,19,_binary '\n`<60>1\<5C>\<5C>FDK)<29><><EFBFBD>\<5C>F\<5C>\<5C>$<24>q\r\<5C>2<EFBFBD>',_binary '=<3D>\<5C>\'\<5C><><EFBFBD><EFBFBD>+^W?\<5C>4uBy\<5C>̒Ew<45><77>ߧ<EFBFBD>\<5C><>9A','2023-11-07 17:03:28',0,0,NULL,NULL,NULL,NULL,NULL,'Kamal','Kamal@gb.tools','GB.tools',NULL),(20,20,_binary '<27>s\<5C>PuB%\0i@<40>I<EFBFBD>vV\<5C><>`\<5C><>kԣF<D4A3>r<EFBFBD>.c<>r',_binary 'L`]\<5C><>i_<69>\';vp\"Qy\<EFBFBD><EFBFBD>\Z@\<EFBFBD>\<EFBFBD>\<EFBFBD>D<EFBFBD>/<EFBFBD>\r&q','2023-11-07 17:04:39',0,0,NULL,NULL,NULL,NULL,NULL,'Matthew','Matthew@gb.tools','GB.tools',NULL),(21,21,_binary '<EFBFBD><EFBFBD>@Ή=QFt!\\v\<EFBFBD>P <EFBFBD>Q<EFBFBD>\<EFBFBD>\<EFBFBD>\<EFBFBD>z<EFBFBD>p2\Z<EFBFBD>\<EFBFBD>2',_binary '\<EFBFBD>6X<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ơ<EFBFBD>8<EFBFBD>%\<EFBFBD>\nAߝA\<EFBFBD>\<EFBFBD>Ӌn','2023-11-07 17:05:37',0,0,NULL,NULL,NULL,NULL,NULL,'Deen','Deen@gb.tools','GB.tools',NULL),(22,22,_binary 'w\<EFBFBD>6T <EFBFBD>f@s==b\<EFBFBD>s<EFBFBD>R<EFBFBD>3S<EFBFBD>R(<EFBFBD>¸G\<EFBFBD><EFBFBD>',_binary 'UM<EFBFBD>\<EFBFBD>u<EFBFBD>4\<EFBFBD>D\<EFBFBD>(\<EFBFBD>0<EFBFBD>\<EFBFBD>d\<EFBFBD><EFBFBD>x\<EFBFBD><EFBFBD>&\0<EFBFBD>1<EFBFBD>f','2023-11-07 17:13:13',0,0,NULL,NULL,NULL,NULL,NULL,'Hallett','Hallett@gb.tools','GB.tools',NULL),(23,23,_binary '<EFBFBD><EFBFBD>OaRw#W!\<EFBFBD>\<EFBFBD><EFBFBD>\<EFBFBD>Ӛ<EFBFBD><EFBFBD>\<EFBFBD>;<EFBFBD><EFBFBD>\<EFBFBD><EFBFBD><EFBFBD>I1l',_binary 'ͩ\<EFBFBD>\'S<EFBFBD>\n<><6E>\"<22><>?V\<5C>[n@˛:\<5C><>o篌<6F>q','2023-11-07 17:27:25',0,0,NULL,NULL,NULL,NULL,NULL,'rickm','rickm@gb.tools','GB.tools',NULL),(24,24,_binary '+ɖdL5;<3B> \<5C>G\<5C><>44?\<5C>E<EFBFBD>-<18>H<03>\<5C>?G<05>=',_binary 'Q6I\<5C>e\<5C><>k\<5C>\<5C>\<5C>L<EFBFBD><4C>.9o$J\<5C><41>f<EFBFBD>\<5C><>\<5C><>','2023-11-07 18:22:37',0,0,NULL,NULL,NULL,NULL,NULL,'Szymon','Szymon@gb.tools','GB.tools',NULL),(25,25,_binary '<EFBFBD>\<5C>&\\\<5C>S<EFBFBD>|)<29>]u<><75>I<EFBFBD>\<5C>Wz<0E>Mt\<5C>Q<EFBFBD>\<5C>e\<5C><01>',_binary '<EFBFBD><EFBFBD>hh<EFBFBD><EFBFBD><EFBFBD><EFBFBD>\0\<5C>S\<5C>(p\r<>SQ^2<>\<5C>\<5C>5<EFBFBD><35>\<5C>\<5C>\<5C>^','2023-11-12 07:18:27',0,0,NULL,NULL,NULL,NULL,NULL,'mike','mike@gb.tools','GB.tools',NULL),(26,26,_binary '>t<05>\<5C>\<5C>|=z<><7A>\<5C>‡<EFBFBD>a\n7<6E><19><>/<2F>#\<5C>G<EFBFBD><47>D\<5C>',_binary '5o!$\<5C><>|=/-n<>4$VG\<5C>.<2E>x\<5C>\<5C>\<5C>:_<>[','2023-11-13 13:19:56',0,0,NULL,NULL,NULL,NULL,NULL,'zvone','zvone@gb.tools','GB.tools',NULL),(27,27,_binary 'Z\\<5C>m<EFBFBD><14><>཮ӡ<E0BDAE>d<EFBFBD>\<5C><0E><>\<5C><><EFBFBD>l7<6C>E9<45>:I',_binary 'kx<EFBFBD><EFBFBD>><07><>\<5C>\Z<>b\<5C>Nu\<5C><><EFBFBD><08><>N<><4E>\0<1E><><EFBFBD>\<5C>@','2023-11-13 17:48:17',0,0,NULL,NULL,NULL,NULL,NULL,'tony','tony@gb.tools','GB.toools',NULL),(28,28,_binary 'P<EFBFBD><EFBFBD>^<5E>B^+;<3B><0F>\'<EFBFBD><EFBFBD>\<EFBFBD>$ h<EFBFBD>\<EFBFBD><EFBFBD>3\<EFBFBD>><EFBFBD>G$',_binary '<EFBFBD><EFBFBD>,<EFBFBD>9-<EFBFBD>t<EFBFBD>S<EFBFBD>\<EFBFBD>:\<EFBFBD>R<EFBFBD>\rS<EFBFBD>\<EFBFBD>K<EFBFBD>><EFBFBD>K','2023-11-23 12:34:51',0,0,NULL,NULL,NULL,'2023-12-24',NULL,'ghostz8520','ghostz8520@gb.tools','GB.tools',NULL),(29,29,_binary '<EFBFBD>[V;<EFBFBD>Dd{@@m<EFBFBD>4<EFBFBD>5<EFBFBD>Fx\<EFBFBD><EFBFBD>a5<EFBFBD>W\<EFBFBD>D\<EFBFBD>\<EFBFBD><EFBFBD>',_binary '<EFBFBD><EFBFBD>\<EFBFBD>Zk<EFBFBD>\Z<EFBFBD>\<EFBFBD><EFBFBD>\<EFBFBD>`p}<EFBFBD>kDΧZ<EFBFBD><EFBFBD><EFBFBD>S{<EFBFBD><EFBFBD>','2023-11-27 10:05:10',0,0,NULL,NULL,NULL,'2023-12-27',NULL,'mariusz.grela','mariusz.grela@gb.tools','GB.tools',NULL),(30,31,_binary '5\r6>)<EFBFBD><EFBFBD><EFBFBD>\<EFBFBD>C6\<EFBFBD>\07<EFBFBD>اr\<EFBFBD>\<EFBFBD>i<EFBFBD>52\<EFBFBD>\<EFBFBD>{',_binary '\"<EFBFBD>mNi><3E> gbNPn\<5C><>m5<6D><35>\'#\<5C>\<5C>=<3D><>r<EFBFBD>','2023-11-27 17:29:27',0,0,NULL,NULL,NULL,NULL,NULL,'team','team@gb.tools','freelance',NULL),(31,32,_binary '<27>{<7B>\<5C><>=M<5A><DFB3><EFBFBD><EFBFBD>6<EFBFBD><36>P\<5C>-y6<79>Yd\<5C>CWR<57>',_binary '<27>db-<2D>\<5C>-V<>\<5C>X\<5C>}x<>RmS\r7\n <13>\<5C><>xP\<5C>z','2023-12-10 17:16:53',0,0,NULL,NULL,NULL,'2024-01-10',NULL,'luxesquire','luxesquire@gb.tools','GB.tools',NULL),(32,33,_binary '<27><>դ<EFBFBD>&W \<5C>:\<5C>պB\<5C>e<EFBFBD>S<EFBFBD>v<EFBFBD>Lui<75>\n+;h/',_binary 'D<>F<EFBFBD>\<5C><>h<EFBFBD>\<5C>x\<5C><>#%<25>\<5C>B<EFBFBD>A\<5C>\<5C>;<0F>:\<5C><>QH \<5C>','2023-12-13 09:19:23',0,0,NULL,NULL,NULL,'2024-01-13',NULL,'legacymail','legacymail@gb.tools','GB.tools',NULL),(33,34,_binary ' <16> \<5C><><EFBFBD><EFBFBD>..\<5C>\<5C>\<5C>\<5C>љÉyw\<5C>!4Jb4<62><34>\<5C>7',_binary '\<5C>\<5C>\<5C>D\<5C><><EFBFBD>\<5C>s\<5C>uP<75>\<5C>\<5C><>a<EFBFBD>2\<5C><>Z<EFBFBD> <20>\<5C>2<EFBFBD>ɗ\<5C>','2023-12-14 06:41:07',0,0,NULL,NULL,NULL,'2024-06-14',NULL,'Jason','Jason@gb.tools','GB.tools',NULL),(34,35,_binary 'D\<5C>.<2E><>5\<5C><>\<5C>D<EFBFBD>.<2E>:w<>\<5C>8\nxY\<5C><> \<5C><05>E=<3D>',_binary '揇US<55><53><EFBFBD>I<?>\<5C>\\ <0C>\<5C>j<EFBFBD><6A><08>\<5C>7\<5C><>\<5C><>\<5C><>','2024-01-09 09:55:10',0,0,NULL,NULL,NULL,'2024-02-10',NULL,'nick','nick@gb.tools','GB.tools',NULL),(35,36,_binary '<27>w<16><>B\<5C>\0Ѝ<30>\<5C><>`B과\<5C><55><DAAB><EFBFBD><EFBFBD>\<5C>\<5C>\<5C>w',_binary '\<5C>6<1C><>_)|<7C><>,<2C>\<5C>\<5C>Ļ\<5C>>4<>i$<24>!P\<5C>oe<6F><65>','2024-01-11 15:32:39',0,0,NULL,NULL,NULL,NULL,NULL,'Michal','Michal@gb.tools','GB.tools',NULL);
/*!40000 ALTER TABLE `guacamole_user` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `guacamole_user_attribute`
--
DROP TABLE IF EXISTS `guacamole_user_attribute`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `guacamole_user_attribute` (
`user_id` int NOT NULL,
`attribute_name` varchar(128) NOT NULL,
`attribute_value` varchar(4096) NOT NULL,
PRIMARY KEY (`user_id`,`attribute_name`),
KEY `user_id` (`user_id`),
CONSTRAINT `guacamole_user_attribute_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `guacamole_user` (`user_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `guacamole_user_attribute`
--
LOCK TABLES `guacamole_user_attribute` WRITE;
/*!40000 ALTER TABLE `guacamole_user_attribute` DISABLE KEYS */;
/*!40000 ALTER TABLE `guacamole_user_attribute` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `guacamole_user_group`
--
DROP TABLE IF EXISTS `guacamole_user_group`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `guacamole_user_group` (
`user_group_id` int NOT NULL AUTO_INCREMENT,
`entity_id` int NOT NULL,
`disabled` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`user_group_id`),
UNIQUE KEY `guacamole_user_group_single_entity` (`entity_id`),
CONSTRAINT `guacamole_user_group_entity` FOREIGN KEY (`entity_id`) REFERENCES `guacamole_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `guacamole_user_group`
--
LOCK TABLES `guacamole_user_group` WRITE;
/*!40000 ALTER TABLE `guacamole_user_group` DISABLE KEYS */;
INSERT INTO `guacamole_user_group` VALUES (1,30,0);
/*!40000 ALTER TABLE `guacamole_user_group` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `guacamole_user_group_attribute`
--
DROP TABLE IF EXISTS `guacamole_user_group_attribute`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `guacamole_user_group_attribute` (
`user_group_id` int NOT NULL,
`attribute_name` varchar(128) NOT NULL,
`attribute_value` varchar(4096) NOT NULL,
PRIMARY KEY (`user_group_id`,`attribute_name`),
KEY `user_group_id` (`user_group_id`),
CONSTRAINT `guacamole_user_group_attribute_ibfk_1` FOREIGN KEY (`user_group_id`) REFERENCES `guacamole_user_group` (`user_group_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `guacamole_user_group_attribute`
--
LOCK TABLES `guacamole_user_group_attribute` WRITE;
/*!40000 ALTER TABLE `guacamole_user_group_attribute` DISABLE KEYS */;
/*!40000 ALTER TABLE `guacamole_user_group_attribute` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `guacamole_user_group_member`
--
DROP TABLE IF EXISTS `guacamole_user_group_member`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `guacamole_user_group_member` (
`user_group_id` int NOT NULL,
`member_entity_id` int NOT NULL,
PRIMARY KEY (`user_group_id`,`member_entity_id`),
KEY `guacamole_user_group_member_entity_id` (`member_entity_id`),
CONSTRAINT `guacamole_user_group_member_entity_id` FOREIGN KEY (`member_entity_id`) REFERENCES `guacamole_entity` (`entity_id`) ON DELETE CASCADE,
CONSTRAINT `guacamole_user_group_member_parent_id` FOREIGN KEY (`user_group_id`) REFERENCES `guacamole_user_group` (`user_group_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `guacamole_user_group_member`
--
LOCK TABLES `guacamole_user_group_member` WRITE;
/*!40000 ALTER TABLE `guacamole_user_group_member` DISABLE KEYS */;
/*!40000 ALTER TABLE `guacamole_user_group_member` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `guacamole_user_group_permission`
--
DROP TABLE IF EXISTS `guacamole_user_group_permission`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `guacamole_user_group_permission` (
`entity_id` int NOT NULL,
`affected_user_group_id` int NOT NULL,
`permission` enum('READ','UPDATE','DELETE','ADMINISTER') NOT NULL,
PRIMARY KEY (`entity_id`,`affected_user_group_id`,`permission`),
KEY `guacamole_user_group_permission_affected_user_group` (`affected_user_group_id`),
CONSTRAINT `guacamole_user_group_permission_affected_user_group` FOREIGN KEY (`affected_user_group_id`) REFERENCES `guacamole_user_group` (`user_group_id`) ON DELETE CASCADE,
CONSTRAINT `guacamole_user_group_permission_entity` FOREIGN KEY (`entity_id`) REFERENCES `guacamole_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `guacamole_user_group_permission`
--
LOCK TABLES `guacamole_user_group_permission` WRITE;
/*!40000 ALTER TABLE `guacamole_user_group_permission` DISABLE KEYS */;
INSERT INTO `guacamole_user_group_permission` VALUES (2,1,'READ'),(2,1,'UPDATE'),(2,1,'DELETE'),(2,1,'ADMINISTER');
/*!40000 ALTER TABLE `guacamole_user_group_permission` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `guacamole_user_history`
--
DROP TABLE IF EXISTS `guacamole_user_history`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `guacamole_user_history` (
`history_id` int NOT NULL AUTO_INCREMENT,
`user_id` int DEFAULT NULL,
`username` varchar(128) NOT NULL,
`remote_host` varchar(256) DEFAULT NULL,
`start_date` datetime NOT NULL,
`end_date` datetime DEFAULT NULL,
PRIMARY KEY (`history_id`),
KEY `user_id` (`user_id`),
KEY `start_date` (`start_date`),
KEY `end_date` (`end_date`),
KEY `user_start_date` (`user_id`,`start_date`),
CONSTRAINT `guacamole_user_history_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `guacamole_user` (`user_id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=494 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `guacamole_user_history`
--
LOCK TABLES `guacamole_user_history` WRITE;
/*!40000 ALTER TABLE `guacamole_user_history` DISABLE KEYS */;
INSERT INTO `guacamole_user_history` VALUES (1,1,'guacadmin','37.37.238.188','2023-11-07 09:58:43','2023-11-07 10:01:28'),(2,2,'hema','37.37.238.188','2023-11-07 10:01:34','2023-11-07 10:53:25'),(3,2,'hema','172.70.90.167','2023-11-07 10:30:45',NULL),(4,2,'hema','172.71.242.203','2023-11-07 13:04:52','2023-11-07 14:15:37'),(5,2,'hema','172.71.178.44','2023-11-07 16:19:58','2023-11-07 19:54:37'),(6,6,'yagoman','172.64.238.64','2023-11-07 16:28:05','2023-11-07 17:28:37'),(7,7,'test','172.69.194.14','2023-11-07 16:28:34','2023-11-07 16:51:24'),(8,4,'pablojoy','162.158.129.211','2023-11-07 16:42:36','2023-11-07 17:53:37'),(9,7,'test','172.69.194.14','2023-11-07 17:14:03','2023-11-07 18:15:37'),(10,3,'mazen','172.69.214.93','2023-11-07 17:15:37','2023-11-07 18:16:37'),(11,24,'szymon','162.158.102.166','2023-11-07 18:30:36','2023-11-07 20:43:37'),(12,24,'szymon','172.68.138.64','2023-11-07 19:22:31','2023-11-07 20:23:37'),(13,11,'vipin','162.158.23.58','2023-11-08 01:39:13','2023-11-08 02:59:37'),(14,18,'Fernando','108.162.210.245','2023-11-08 05:04:13','2023-11-08 06:04:37'),(15,2,'hema','172.69.194.169','2023-11-08 06:04:40','2023-11-08 07:05:37'),(16,8,'harouni','172.69.238.138','2023-11-08 06:36:17','2023-11-08 07:36:37'),(17,2,'hema','162.158.194.135','2023-11-08 13:16:21','2023-11-08 14:17:37'),(18,4,'pablojoy','172.71.114.137','2023-11-08 13:24:54','2023-11-08 14:28:37'),(19,4,'pablojoy','172.71.115.48','2023-11-08 15:17:01','2023-11-08 17:48:37'),(20,2,'hema','162.158.194.136','2023-11-08 17:00:26','2023-11-08 18:00:37'),(21,11,'vipin','162.158.62.237','2023-11-08 17:02:50','2023-11-08 19:23:37'),(22,4,'pablojoy','162.158.129.210','2023-11-08 17:56:03','2023-11-08 18:56:37'),(23,24,'szymon','162.158.103.210','2023-11-08 18:22:44','2023-11-08 20:07:37'),(24,2,'hema','162.158.194.143','2023-11-08 18:30:14','2023-11-08 19:35:37'),(25,24,'szymon','172.68.138.199','2023-11-08 19:49:21','2023-11-08 21:16:37'),(26,2,'hema','172.70.90.178','2023-11-08 21:05:58','2023-11-08 22:06:37'),(27,11,'vipin','162.158.154.162','2023-11-09 10:55:38','2023-11-09 14:15:37'),(28,2,'hema','162.158.194.144','2023-11-09 11:34:10','2023-11-09 12:35:37'),(29,9,'jeff','108.162.241.195','2023-11-09 17:03:34','2023-11-09 18:20:37'),(30,3,'mazen','172.69.214.15','2023-11-10 01:53:17','2023-11-10 02:56:37'),(31,3,'mazen','172.69.214.96','2023-11-10 02:57:36','2023-11-10 03:58:37'),(32,5,'goutham','172.70.126.81','2023-11-10 03:35:26','2023-11-10 04:46:37'),(33,8,'harouni','172.69.238.132','2023-11-10 07:38:38','2023-11-10 08:39:37'),(34,24,'szymon','162.158.102.166','2023-11-10 11:11:45','2023-11-10 12:14:37'),(35,9,'jeff','108.162.242.53','2023-11-10 17:17:16','2023-11-10 20:16:37'),(36,5,'goutham','172.70.178.67','2023-11-10 17:18:23','2023-11-10 18:24:37'),(37,11,'vipin','162.158.158.103','2023-11-10 17:23:55','2023-11-10 20:09:37'),(38,5,'goutham','172.69.59.8','2023-11-11 01:21:50','2023-11-11 04:06:37'),(39,16,'arbmaniac','172.71.26.76','2023-11-11 02:58:32','2023-11-11 05:47:37'),(40,16,'arbmaniac','172.70.114.206','2023-11-11 02:59:19','2023-11-12 08:57:37'),(41,13,'fouad','172.69.214.97','2023-11-11 16:55:20','2023-11-11 17:56:37'),(42,6,'yagoman','172.64.236.58','2023-11-11 18:30:49','2023-11-11 20:12:37'),(43,24,'szymon','162.158.103.59','2023-11-11 19:15:20','2023-11-11 20:18:37'),(44,6,'yagoman','172.64.238.88','2023-11-11 23:45:06','2023-11-12 00:45:37'),(45,2,'hema','172.70.86.46','2023-11-12 07:14:52','2023-11-12 08:19:37'),(46,9,'jeff','172.69.33.201','2023-11-12 07:55:57','2023-11-12 09:46:37'),(47,6,'yagoman','172.64.236.120','2023-11-12 10:11:48','2023-11-12 11:20:37'),(48,24,'szymon','162.158.103.232','2023-11-12 16:50:38','2023-11-12 19:18:37'),(49,24,'szymon','162.158.102.75','2023-11-12 19:47:25','2023-11-12 21:56:37'),(50,6,'yagoman','188.114.111.183','2023-11-12 20:31:28','2023-11-12 21:53:37'),(51,8,'harouni','172.69.238.135','2023-11-13 05:58:03','2023-11-13 11:02:37'),(52,6,'yagoman','172.68.134.12','2023-11-13 11:11:12','2023-11-13 15:25:37'),(53,6,'yagoman','172.64.238.57','2023-11-13 11:15:38','2023-11-13 12:16:37'),(54,2,'hema','172.70.90.243','2023-11-13 13:19:20','2023-11-13 14:20:37'),(55,26,'zvone','108.162.221.87','2023-11-13 13:20:42','2023-11-13 14:21:37'),(56,4,'pablojoy','162.158.129.83','2023-11-13 13:21:07','2023-11-13 14:21:37'),(57,3,'mazen','172.69.214.174','2023-11-13 14:25:13','2023-11-13 18:57:37'),(58,6,'yagoman','188.114.111.136','2023-11-13 17:20:04','2023-11-13 18:20:37'),(59,8,'harouni','172.69.238.133','2023-11-13 17:35:42','2023-11-13 19:10:37'),(60,2,'hema','172.70.86.65','2023-11-13 17:47:47','2023-11-13 18:48:37'),(61,27,'tony','172.70.211.2','2023-11-13 18:22:27','2023-11-13 21:22:37'),(62,11,'vipin','162.158.154.167','2023-11-14 04:54:54','2023-11-14 06:16:37'),(63,24,'szymon','162.158.103.162','2023-11-14 05:13:01','2023-11-14 06:16:37'),(64,2,'hema','172.69.194.197','2023-11-14 06:42:07','2023-11-14 09:44:37'),(65,11,'vipin','162.158.163.236','2023-11-14 08:24:05','2023-11-14 09:44:37'),(66,6,'yagoman','172.64.236.121','2023-11-14 09:41:52','2023-11-14 11:11:37'),(67,26,'zvone','141.101.105.6','2023-11-14 10:11:19','2023-11-14 11:12:37'),(68,11,'vipin','162.158.106.224','2023-11-14 12:49:35','2023-11-14 14:03:37'),(69,11,'vipin','162.158.159.39','2023-11-14 12:50:03','2023-11-14 13:54:37'),(70,11,'vipin','162.158.158.229','2023-11-14 14:52:27','2023-11-14 18:17:37'),(71,6,'yagoman','172.64.238.89','2023-11-14 15:19:48','2023-11-14 16:21:37'),(72,6,'yagoman','172.64.238.89','2023-11-14 16:26:17','2023-11-14 19:13:37'),(73,24,'szymon','172.68.138.161','2023-11-14 17:11:14','2023-11-14 18:29:37'),(74,24,'szymon','172.68.138.160','2023-11-14 18:11:56','2023-11-14 20:35:37'),(75,24,'szymon','162.158.103.171','2023-11-15 10:42:01','2023-11-15 14:36:37'),(76,6,'yagoman','172.68.134.31','2023-11-15 14:48:02','2023-11-15 16:25:37'),(77,20,'Matthew','141.101.105.138','2023-11-15 18:22:55','2023-11-16 03:08:37'),(78,8,'harouni','172.69.238.132','2023-11-15 19:39:48','2023-11-15 20:40:37'),(79,17,'cooley','172.71.99.195','2023-11-15 19:41:12','2023-11-15 20:42:37'),(80,17,'cooley','172.71.99.26','2023-11-15 19:48:35','2023-11-15 22:59:37'),(81,10,'olga','162.158.239.74','2023-11-16 06:39:40','2023-11-16 08:40:37'),(82,10,'olga','162.158.239.74','2023-11-16 09:09:06','2023-11-16 10:54:37'),(83,20,'Matthew','108.162.220.84','2023-11-16 10:27:47','2023-11-16 19:10:37'),(84,10,'olga','162.158.239.17','2023-11-16 10:55:27','2023-11-16 12:02:37'),(85,6,'yagoman','172.64.238.65','2023-11-16 11:54:13','2023-11-16 13:25:37'),(86,11,'vipin','172.70.114.109','2023-11-16 12:55:32','2023-11-16 14:10:37'),(87,24,'szymon','162.158.103.142','2023-11-16 17:59:41','2023-11-16 20:34:37'),(88,20,'Matthew','172.70.51.149','2023-11-16 23:21:38','2023-11-17 06:30:37'),(89,17,'cooley','162.158.111.15','2023-11-17 00:06:29','2023-11-17 08:37:37'),(90,10,'olga','162.158.238.33','2023-11-17 05:29:25','2023-11-17 06:30:37'),(91,10,'olga','162.158.239.74','2023-11-17 08:13:12','2023-11-17 09:13:37'),(92,26,'zvone','172.68.51.167','2023-11-17 09:33:25','2023-11-17 10:35:37'),(93,10,'olga','162.158.238.54','2023-11-17 11:34:00','2023-11-17 14:42:37'),(94,11,'vipin','162.158.189.33','2023-11-17 12:39:43','2023-11-17 14:18:37'),(95,20,'Matthew','141.101.105.5','2023-11-17 13:18:21','2023-11-18 17:13:37'),(96,4,'pablojoy','162.158.129.83','2023-11-17 16:08:43','2023-11-17 16:43:06'),(97,24,'szymon','172.68.138.161','2023-11-18 14:55:24','2023-11-18 18:08:37'),(98,20,'Matthew','141.101.105.72','2023-11-18 17:28:11','2023-11-18 21:22:37'),(99,2,'hema','172.70.85.137','2023-11-18 19:13:31','2023-11-18 20:19:37'),(100,20,'Matthew','141.101.105.161','2023-11-18 21:23:42','2023-11-19 18:22:11'),(101,20,'Matthew','108.162.220.85','2023-11-19 18:22:31','2023-11-22 17:54:37'),(102,4,'pablojoy','172.71.114.136','2023-11-20 16:22:21','2023-11-20 17:33:37'),(103,24,'szymon','162.158.102.173','2023-11-20 17:49:55','2023-11-20 18:50:37'),(104,2,'hema','172.70.85.187','2023-11-20 19:13:44','2023-11-20 20:15:37'),(105,24,'szymon','162.158.103.176','2023-11-20 20:42:58','2023-11-20 21:43:37'),(106,10,'olga','162.158.238.32','2023-11-21 06:40:11','2023-11-21 09:33:37'),(107,6,'yagoman','172.64.238.64','2023-11-21 15:37:28','2023-11-22 00:34:37'),(108,4,'pablojoy','172.71.114.10','2023-11-22 11:06:10','2023-11-22 12:06:37'),(109,10,'olga','162.158.222.93','2023-11-22 12:59:56','2023-11-22 16:19:37'),(110,4,'pablojoy','162.158.129.83','2023-11-22 13:50:10','2023-11-22 15:22:37'),(111,24,'szymon','162.158.103.73','2023-11-22 16:53:39','2023-11-22 17:56:37'),(112,8,'harouni','172.69.238.130','2023-11-22 18:04:55','2023-11-22 21:05:37'),(113,8,'harouni','162.158.22.235','2023-11-22 21:14:45','2023-11-22 22:49:37'),(114,8,'harouni','172.69.238.130','2023-11-23 08:04:52','2023-11-23 09:20:37'),(115,24,'szymon','162.158.103.59','2023-11-23 08:09:00','2023-11-23 12:47:29'),(116,10,'olga','162.158.239.18','2023-11-23 08:15:34','2023-11-23 09:22:37'),(117,8,'harouni','162.158.23.2','2023-11-23 10:19:20','2023-11-23 11:25:37'),(118,2,'hema','172.69.194.15','2023-11-23 10:38:21','2023-11-23 11:39:37'),(119,2,'hema','172.69.43.232','2023-11-23 12:33:14','2023-11-23 13:35:37'),(120,28,'ghostz8520','172.71.210.31','2023-11-23 12:35:32','2023-11-23 13:36:37'),(121,28,'ghostz8520','172.71.214.23','2023-11-23 12:37:47','2023-11-23 13:52:37'),(122,10,'olga','162.158.183.205','2023-11-23 18:57:25','2023-11-23 21:51:37'),(123,28,'ghostz8520','172.71.210.214','2023-11-24 00:18:22','2023-11-24 01:30:37'),(124,11,'vipin','162.158.22.233','2023-11-24 01:14:54','2023-11-24 03:01:37'),(125,8,'harouni','162.158.18.169','2023-11-24 06:36:39','2023-11-24 08:16:37'),(126,10,'olga','162.158.238.33','2023-11-24 06:44:15','2023-11-24 08:27:37'),(127,24,'szymon','172.68.138.73','2023-11-24 08:53:21','2023-11-24 12:04:37'),(128,28,'ghostz8520','162.158.179.31','2023-11-24 09:32:36','2023-11-24 11:28:37'),(129,8,'harouni','162.158.18.112','2023-11-24 09:38:59','2023-11-24 12:00:37'),(130,20,'Matthew','162.158.210.169','2023-11-24 10:50:18','2023-11-24 12:00:37'),(131,20,'Matthew','141.101.105.6','2023-11-24 11:00:51','2023-11-24 14:21:37'),(132,24,'szymon','162.158.102.172','2023-11-24 12:07:34','2023-11-24 12:14:49'),(133,24,'szymon','172.68.139.61','2023-11-24 12:57:42','2023-11-24 13:25:18'),(134,20,'Matthew','141.101.105.161','2023-11-24 19:21:15','2023-11-25 17:31:37'),(135,20,'Matthew','141.101.105.161','2023-11-24 19:21:37','2023-11-24 22:19:37'),(136,8,'harouni','172.69.238.135','2023-11-25 09:51:48','2023-11-25 09:55:48'),(137,8,'harouni','172.69.238.138','2023-11-25 09:55:25','2023-11-25 10:55:37'),(138,8,'harouni','172.69.238.135','2023-11-25 09:55:53','2023-11-25 09:56:06'),(139,8,'harouni','172.69.238.134','2023-11-25 09:56:11','2023-11-25 10:56:37'),(140,9,'jeff','162.158.186.24','2023-11-25 16:30:32','2023-11-25 18:19:37'),(141,20,'Matthew','141.101.105.138','2023-11-25 20:21:22','2023-11-27 10:51:37'),(142,8,'harouni','172.69.238.135','2023-11-25 20:57:05','2023-11-25 23:06:37'),(143,2,'hema','172.69.194.15','2023-11-26 12:51:28','2023-11-26 13:56:37'),(144,10,'olga','172.70.42.223','2023-11-27 09:28:16','2023-11-27 10:51:37'),(145,2,'hema','141.101.98.128','2023-11-27 10:04:35','2023-11-27 11:06:37'),(146,29,'mariusz.grela','162.158.103.115','2023-11-27 10:07:13','2023-11-27 17:18:37'),(147,10,'olga','162.158.238.78','2023-11-27 10:20:19','2023-11-27 10:29:41'),(148,20,'Matthew','141.101.105.6','2023-11-27 12:46:08','2023-11-28 08:13:37'),(149,10,'olga','172.71.223.134','2023-11-27 14:38:10','2023-11-27 16:09:37'),(150,5,'goutham','172.70.126.103','2023-11-27 16:36:53','2023-11-27 20:51:37'),(151,2,'hema','172.70.86.27','2023-11-27 17:20:26','2023-11-27 20:41:37'),(152,30,'team','172.71.103.41','2023-11-27 17:29:43','2023-11-27 18:32:37'),(153,30,'team','172.70.85.25','2023-11-27 18:52:46','2023-11-27 19:12:09'),(154,30,'team','172.70.91.148','2023-11-27 19:12:38','2023-11-27 19:25:56'),(155,30,'team','172.70.90.236','2023-11-27 19:33:32','2023-11-27 19:41:38'),(156,30,'team','172.70.86.140','2023-11-27 19:45:42','2023-11-27 21:08:37'),(157,30,'team','162.158.22.235','2023-11-27 23:31:37','2023-11-28 00:32:37'),(158,30,'team','172.71.186.204','2023-11-27 23:40:47','2023-11-28 00:41:37'),(159,24,'szymon','162.158.102.181','2023-11-28 06:31:21','2023-11-28 06:32:23'),(160,2,'hema','172.70.86.152','2023-11-28 06:54:05','2023-11-28 08:20:37'),(161,29,'mariusz.grela','172.68.139.21','2023-11-28 08:22:41','2023-11-28 09:32:37'),(162,28,'ghostz8520','172.71.214.24','2023-11-28 08:32:10','2023-11-28 09:34:37'),(163,20,'Matthew','141.101.105.161','2023-11-28 08:33:51','2023-11-29 11:13:37'),(164,10,'olga','172.70.42.30','2023-11-28 09:20:17','2023-11-28 09:45:47'),(165,2,'hema','172.69.194.167','2023-11-28 09:43:11','2023-11-28 11:32:37'),(166,24,'szymon','172.68.138.178','2023-11-28 10:38:40','2023-11-28 11:39:37'),(167,30,'team','172.71.186.145','2023-11-28 13:41:49','2023-11-28 14:04:36'),(168,30,'team','172.71.186.248','2023-11-28 14:04:39','2023-11-28 15:23:37'),(169,2,'hema','172.71.178.82','2023-11-28 16:50:44','2023-11-28 17:51:37'),(170,30,'team','162.158.22.234','2023-11-28 17:07:14','2023-11-28 21:13:37'),(171,2,'hema','172.71.99.99','2023-11-28 18:34:30','2023-11-28 19:32:15'),(172,2,'hema','172.69.194.167','2023-11-28 20:36:45','2023-11-28 21:37:37'),(173,30,'team','172.68.62.49','2023-11-28 22:46:50','2023-11-29 01:00:37'),(174,17,'cooley','172.71.99.107','2023-11-29 03:50:40','2023-11-29 05:04:37'),(175,10,'olga','162.158.239.17','2023-11-29 07:35:59','2023-11-29 10:49:37'),(176,29,'mariusz.grela','172.68.138.236','2023-11-29 08:03:02','2023-11-29 09:03:37'),(177,29,'mariusz.grela','172.68.138.237','2023-11-29 08:04:04','2023-11-29 08:13:07'),(178,30,'team','172.68.62.121','2023-11-29 08:14:23','2023-11-29 11:44:37'),(179,29,'mariusz.grela','172.68.139.5','2023-11-29 09:38:54','2023-11-29 13:47:37'),(180,30,'team','172.68.62.107','2023-11-29 09:53:17','2023-11-29 10:53:37'),(181,30,'team','162.158.23.2','2023-11-29 12:12:00','2023-11-29 16:53:37'),(182,30,'team','162.158.22.254','2023-11-29 12:12:17','2023-11-29 13:12:37'),(183,10,'olga','162.158.239.73','2023-11-29 14:29:28','2023-11-29 17:20:37'),(184,2,'hema','172.71.103.90','2023-11-29 14:33:28','2023-11-29 15:34:37'),(185,14,'lukasz','172.68.139.28','2023-11-29 14:37:33','2023-11-29 15:38:37'),(186,14,'lukasz','172.68.138.179','2023-11-29 14:38:52','2023-11-29 15:39:37'),(187,10,'olga','172.71.222.217','2023-11-29 19:24:25','2023-11-29 20:24:37'),(188,6,'yagoman','141.101.68.238','2023-11-29 23:12:16','2023-11-30 00:12:37'),(189,10,'olga','172.70.34.240','2023-11-30 06:37:59','2023-11-30 10:52:37'),(190,6,'yagoman','172.64.238.88','2023-11-30 08:09:50','2023-11-30 12:44:37'),(191,14,'lukasz','172.71.98.110','2023-11-30 09:17:44','2023-11-30 10:19:37'),(192,30,'team','162.158.22.234','2023-11-30 10:52:28','2023-11-30 13:54:37'),(193,20,'Matthew','108.162.220.122','2023-11-30 11:24:09','2023-11-30 18:56:37'),(194,28,'ghostz8520','172.71.215.80','2023-11-30 11:44:00','2023-11-30 12:44:37'),(195,10,'olga','172.70.42.160','2023-11-30 11:53:29','2023-11-30 14:04:37'),(196,30,'team','162.158.22.14','2023-11-30 11:59:39','2023-11-30 11:59:52'),(197,30,'team','162.158.22.15','2023-11-30 11:59:56','2023-11-30 13:00:37'),(198,13,'fouad','172.69.214.93','2023-11-30 13:12:17','2023-11-30 14:56:37'),(199,30,'team','162.158.23.2','2023-11-30 14:11:04','2023-11-30 15:34:37'),(200,30,'team','141.101.69.53','2023-11-30 15:20:20','2023-11-30 16:20:37'),(201,2,'hema','172.69.194.197','2023-11-30 17:56:08','2023-11-30 18:56:37'),(202,30,'team','162.158.22.254','2023-11-30 23:06:55','2023-12-01 00:16:37'),(203,30,'team','162.158.22.253','2023-12-01 00:42:44','2023-12-01 02:07:37'),(204,10,'olga','162.158.239.74','2023-12-01 07:21:39','2023-12-01 11:17:37'),(205,20,'Matthew','162.158.210.27','2023-12-01 07:59:22','2023-12-01 09:52:37'),(206,10,'olga','162.158.238.78','2023-12-01 11:36:29','2023-12-01 12:37:37'),(207,10,'olga','162.158.238.79','2023-12-01 18:55:12','2023-12-01 22:49:37'),(208,10,'olga','162.158.239.74','2023-12-02 07:01:34','2023-12-02 08:26:37'),(209,10,'olga','162.158.239.17','2023-12-02 15:20:55','2023-12-02 16:21:37'),(210,17,'cooley','172.71.103.175','2023-12-02 20:46:32','2023-12-03 00:26:37'),(211,30,'team','172.71.186.196','2023-12-03 02:21:48','2023-12-03 03:22:37'),(212,2,'hema','141.101.99.203','2023-12-03 07:59:59','2023-12-03 09:29:37'),(213,25,'mike','162.158.126.21','2023-12-03 08:41:35','2023-12-03 11:17:37'),(214,30,'team','172.71.186.144','2023-12-03 10:17:14','2023-12-03 12:15:37'),(215,25,'mike','162.158.126.18','2023-12-03 11:17:50','2023-12-03 12:29:37'),(216,30,'team','172.71.186.145','2023-12-03 12:18:36','2023-12-03 13:25:37'),(217,6,'yagoman','172.64.236.28','2023-12-03 13:11:51','2023-12-03 14:13:37'),(218,30,'team','141.101.68.219','2023-12-03 14:56:31','2023-12-03 16:16:37'),(219,30,'team','172.71.186.144','2023-12-03 15:01:42','2023-12-03 16:03:37'),(220,30,'team','172.71.186.17','2023-12-03 16:34:28','2023-12-03 22:07:37'),(221,17,'cooley','172.70.46.56','2023-12-03 21:39:36','2023-12-04 09:07:37'),(222,30,'team','162.158.22.82','2023-12-04 04:39:26','2023-12-04 07:22:37'),(223,30,'team','172.68.62.209','2023-12-04 07:55:35','2023-12-04 10:13:37'),(224,10,'olga','162.158.238.32','2023-12-04 08:02:12','2023-12-04 13:07:37'),(225,10,'olga','162.158.222.105','2023-12-04 13:16:37','2023-12-04 18:27:37'),(226,30,'team','172.71.186.145','2023-12-04 14:51:45','2023-12-04 15:56:37'),(227,30,'team','141.101.68.123','2023-12-04 17:29:59','2023-12-04 19:20:37'),(228,2,'hema','172.70.91.6','2023-12-04 17:31:54','2023-12-04 18:35:37'),(229,30,'team','162.158.22.251','2023-12-04 21:15:42','2023-12-04 23:56:37'),(230,10,'olga','162.158.239.18','2023-12-05 04:30:14','2023-12-05 05:30:37'),(231,10,'olga','141.101.105.161','2023-12-05 08:20:47','2023-12-05 12:02:37'),(232,30,'team','162.158.22.180','2023-12-05 10:06:04','2023-12-05 13:19:37'),(233,29,'mariusz.grela','172.68.138.198','2023-12-05 11:00:44','2023-12-05 12:03:37'),(234,30,'team','162.158.22.254','2023-12-05 12:09:09','2023-12-05 14:23:37'),(235,20,'Matthew','162.158.18.168','2023-12-05 13:48:35','2023-12-05 22:04:37'),(236,29,'mariusz.grela','162.158.102.162','2023-12-05 21:03:41','2023-12-05 22:27:37'),(237,30,'team','162.158.22.180','2023-12-05 22:01:42','2023-12-05 23:56:37'),(238,27,'tony','162.158.186.166','2023-12-05 22:19:43','2023-12-05 23:50:37'),(239,17,'cooley','172.70.46.118','2023-12-06 02:59:47','2023-12-06 05:55:37'),(240,10,'olga','162.158.238.32','2023-12-06 06:33:01','2023-12-06 16:52:37'),(241,30,'team','162.158.22.28','2023-12-06 10:34:10','2023-12-06 11:34:37'),(242,30,'team','172.71.186.249','2023-12-06 10:44:52','2023-12-06 11:45:37'),(243,30,'team','162.158.22.235','2023-12-06 11:41:46','2023-12-06 12:42:37'),(244,30,'team','172.71.186.134','2023-12-06 12:04:38','2023-12-06 13:34:37'),(245,2,'hema','162.158.194.134','2023-12-06 12:59:52','2023-12-06 14:00:37'),(246,30,'team','172.71.186.135','2023-12-06 14:23:43','2023-12-06 16:30:37'),(247,30,'team','172.71.186.17','2023-12-06 14:34:22','2023-12-06 14:39:57'),(248,30,'team','162.158.23.68','2023-12-06 14:40:01','2023-12-06 16:24:37'),(249,6,'yagoman','188.114.111.131','2023-12-06 16:32:32','2023-12-06 17:32:37'),(250,30,'team','172.71.186.16','2023-12-06 16:47:57','2023-12-06 18:50:37'),(251,29,'mariusz.grela','162.158.103.102','2023-12-06 19:03:27','2023-12-06 21:59:37'),(252,10,'olga','162.158.238.79','2023-12-07 06:51:52','2023-12-07 08:50:37'),(253,10,'olga','162.158.239.74','2023-12-07 08:55:53','2023-12-07 10:22:37'),(254,30,'team','162.158.22.28','2023-12-07 09:25:41','2023-12-07 10:35:37'),(255,20,'Matthew','162.158.18.89','2023-12-07 10:48:11','2023-12-07 15:03:37'),(256,30,'team','162.158.22.180','2023-12-07 12:14:00','2023-12-07 13:14:37'),(257,30,'team','172.71.186.135','2023-12-07 12:54:42','2023-12-07 16:06:37'),(258,10,'olga','162.158.239.73','2023-12-07 14:03:09','2023-12-07 16:20:37'),(259,10,'olga','162.158.239.18','2023-12-07 16:20:41','2023-12-07 18:26:37'),(260,30,'team','162.158.23.2','2023-12-07 17:22:39','2023-12-07 19:04:37'),(261,10,'olga','162.158.238.32','2023-12-07 18:59:40','2023-12-07 20:00:37'),(262,27,'tony','162.158.90.206','2023-12-07 21:04:12','2023-12-07 22:26:37'),(263,4,'pablojoy','172.71.114.7','2023-12-07 21:25:32','2023-12-07 22:25:37'),(264,28,'ghostz8520','162.158.178.170','2023-12-08 00:32:17','2023-12-08 03:43:37'),(265,10,'olga','162.158.239.73','2023-12-08 14:31:17','2023-12-08 17:23:37'),(266,28,'ghostz8520','172.71.218.88','2023-12-08 14:52:29','2023-12-08 15:52:37'),(267,2,'hema','172.69.194.24','2023-12-09 09:14:27','2023-12-09 10:20:37'),(268,28,'ghostz8520','172.71.210.105','2023-12-09 09:17:52','2023-12-09 16:31:37'),(269,28,'ghostz8520','162.158.179.109','2023-12-10 03:20:38','2023-12-10 04:21:37'),(270,30,'team','162.158.23.67','2023-12-10 14:05:02','2023-12-10 17:01:37'),(271,28,'ghostz8520','172.71.219.84','2023-12-10 15:04:12','2023-12-10 16:07:37'),(272,2,'hema','172.70.91.78','2023-12-10 17:16:12','2023-12-10 18:57:37'),(273,31,'luxesquire','162.158.245.77','2023-12-10 17:19:16','2023-12-10 17:56:33'),(274,31,'luxesquire','162.158.245.54','2023-12-10 17:57:50','2023-12-10 20:52:37'),(275,30,'team','162.158.22.180','2023-12-10 18:00:35','2023-12-10 19:47:37'),(276,30,'team','172.68.62.16','2023-12-10 18:52:18','2023-12-10 19:58:37'),(277,30,'team','162.158.22.199','2023-12-10 20:06:23','2023-12-10 21:26:37'),(278,30,'team','172.71.186.76','2023-12-10 23:21:54','2023-12-11 00:45:37'),(279,11,'vipin','162.158.23.2','2023-12-11 00:43:01','2023-12-11 02:05:37'),(280,30,'team','172.71.186.77','2023-12-11 05:57:28','2023-12-11 07:51:37'),(281,24,'szymon','162.158.103.232','2023-12-11 08:55:16','2023-12-11 09:08:43'),(282,4,'pablojoy','172.71.114.7','2023-12-11 09:14:10','2023-12-11 10:16:37'),(283,30,'team','172.68.62.17','2023-12-11 10:57:02','2023-12-11 13:26:37'),(284,10,'olga','162.158.239.18','2023-12-11 11:42:52','2023-12-11 18:26:37'),(285,28,'ghostz8520','162.158.179.110','2023-12-11 12:24:50','2023-12-11 13:27:37'),(286,30,'team','172.71.186.249','2023-12-11 19:21:44','2023-12-11 20:22:37'),(287,20,'Matthew','162.158.18.112','2023-12-11 21:11:29','2023-12-12 07:46:37'),(288,30,'team','162.158.22.163','2023-12-11 21:41:31','2023-12-11 22:45:37'),(289,10,'olga','162.158.239.73','2023-12-12 06:46:21','2023-12-12 08:52:37'),(290,20,'Matthew','162.158.18.50','2023-12-12 10:21:47','2023-12-12 12:04:37'),(291,20,'Matthew','141.101.104.86','2023-12-12 13:58:54','2023-12-13 09:57:37'),(292,30,'team','172.68.62.95','2023-12-12 17:34:40','2023-12-12 19:44:37'),(293,30,'team','172.68.62.16','2023-12-12 21:47:03','2023-12-13 02:40:37'),(294,10,'olga','172.71.103.8','2023-12-13 08:55:46','2023-12-13 09:58:37'),(295,2,'hema','172.70.86.173','2023-12-13 09:18:19','2023-12-13 10:19:37'),(296,32,'legacymail','172.71.147.179','2023-12-13 09:29:33','2023-12-13 11:03:37'),(297,27,'tony','162.158.187.16','2023-12-13 14:40:47','2023-12-13 18:53:37'),(298,30,'team','162.158.22.15','2023-12-13 16:45:14','2023-12-13 17:51:37'),(299,30,'team','162.158.23.67','2023-12-13 16:57:13','2023-12-13 16:57:21'),(300,30,'team','162.158.23.67','2023-12-13 16:57:23','2023-12-13 16:57:35'),(301,30,'team','162.158.23.68','2023-12-13 16:57:59','2023-12-13 16:58:33'),(302,30,'team','162.158.22.162','2023-12-13 16:58:35','2023-12-13 16:58:40'),(303,30,'team','172.68.62.120','2023-12-13 22:34:47','2023-12-13 23:35:37'),(304,30,'team','162.158.22.107','2023-12-14 01:04:42','2023-12-14 03:33:37'),(305,2,'hema','172.69.195.28','2023-12-14 06:40:06','2023-12-14 07:41:37'),(306,31,'luxesquire','162.158.245.75','2023-12-14 08:30:29','2023-12-14 09:31:37'),(307,20,'Matthew','162.158.210.23','2023-12-14 09:14:58','2023-12-14 11:34:37'),(308,10,'olga','172.71.98.116','2023-12-14 10:34:20','2023-12-14 12:14:37'),(309,10,'olga','172.70.46.187','2023-12-14 12:25:45','2023-12-14 16:26:37'),(310,29,'mariusz.grela','162.158.102.26','2023-12-14 15:21:36','2023-12-14 15:33:35'),(311,14,'lukasz','172.71.134.247','2023-12-14 15:25:57','2023-12-14 17:18:37'),(312,29,'mariusz.grela','162.158.102.102','2023-12-14 15:34:53','2023-12-14 16:49:37'),(313,30,'team','172.71.115.58','2023-12-14 17:37:26','2023-12-14 20:19:37'),(314,30,'team','162.158.22.251','2023-12-14 19:10:01','2023-12-14 20:10:37'),(315,29,'mariusz.grela','162.158.103.245','2023-12-14 20:58:48','2023-12-14 22:38:37'),(316,9,'jeff','172.69.214.181','2023-12-14 23:07:09','2023-12-15 00:17:37'),(317,9,'jeff','172.71.147.180','2023-12-14 23:11:55','2023-12-15 00:12:37'),(318,30,'team','172.68.62.106','2023-12-15 01:14:03','2023-12-15 03:07:37'),(319,10,'olga','172.71.98.242','2023-12-15 05:29:09','2023-12-15 07:35:37'),(320,10,'olga','162.158.239.73','2023-12-15 09:42:48','2023-12-15 13:35:37'),(321,29,'mariusz.grela','162.158.102.229','2023-12-15 10:16:50','2023-12-15 11:47:37'),(322,4,'pablojoy','172.71.114.11','2023-12-15 11:38:55','2023-12-15 12:39:37'),(323,14,'lukasz','172.70.47.20','2023-12-15 13:17:12','2023-12-15 14:18:37'),(324,30,'team','162.158.23.57','2023-12-17 10:49:52','2023-12-17 12:40:37'),(325,20,'Matthew','141.101.105.39','2023-12-17 13:32:08','2023-12-17 15:42:37'),(326,24,'szymon','162.158.102.102','2023-12-17 14:32:12','2023-12-17 15:56:37'),(327,30,'team','172.71.186.249','2023-12-17 16:01:07','2023-12-17 18:04:37'),(328,10,'olga','162.158.239.17','2023-12-17 17:39:56','2023-12-18 09:37:37'),(329,20,'Matthew','141.101.105.40','2023-12-18 12:14:55','2023-12-18 20:04:37'),(330,30,'team','172.68.62.217','2023-12-18 14:11:21','2023-12-18 15:11:37'),(331,14,'lukasz','162.158.103.231','2023-12-18 14:13:09','2023-12-18 15:39:37'),(332,10,'olga','162.158.239.17','2023-12-18 14:38:57','2023-12-18 18:59:37'),(333,27,'tony','172.70.211.37','2023-12-18 17:59:38','2023-12-18 19:11:30'),(334,24,'szymon','172.68.138.200','2023-12-18 19:03:58','2023-12-18 20:04:37'),(335,27,'tony','162.158.187.77','2023-12-18 19:11:45','2023-12-18 22:19:37'),(336,14,'lukasz','162.158.102.228','2023-12-18 19:54:17','2023-12-18 21:56:37'),(337,33,'Jason','162.158.186.231','2023-12-18 20:55:28','2023-12-18 22:13:37'),(338,10,'olga','162.158.239.18','2023-12-19 07:01:02','2023-12-19 08:48:37'),(339,20,'Matthew','162.158.210.27','2023-12-19 07:47:49','2023-12-20 06:56:37'),(340,14,'lukasz','141.101.76.227','2023-12-19 10:55:26','2023-12-19 15:23:37'),(341,6,'yagoman','172.64.238.131','2023-12-19 15:52:45','2023-12-19 16:56:37'),(342,6,'yagoman','188.114.111.78','2023-12-19 22:15:31','2023-12-19 22:18:28'),(343,6,'yagoman','172.64.236.29','2023-12-19 22:18:48','2023-12-19 23:20:37'),(344,2,'hema','172.69.194.53','2023-12-20 05:55:49','2023-12-20 06:59:37'),(345,10,'olga','141.101.105.40','2023-12-20 06:43:36','2023-12-20 07:56:37'),(346,17,'cooley','172.71.103.7','2023-12-20 06:56:01','2023-12-20 11:27:37'),(347,29,'mariusz.grela','172.68.139.64','2023-12-20 10:26:00','2023-12-20 11:56:37'),(348,6,'yagoman','172.64.238.89','2023-12-20 11:13:39','2023-12-20 14:02:37'),(349,3,'mazen','108.162.242.54','2023-12-20 13:01:51','2023-12-20 13:02:38'),(350,3,'mazen','108.162.242.53','2023-12-20 13:02:42','2023-12-20 14:22:37'),(351,10,'olga','141.101.105.110','2023-12-20 13:40:46','2023-12-20 16:31:37'),(352,6,'yagoman','172.64.236.49','2023-12-20 15:07:34','2023-12-20 16:53:37'),(353,17,'cooley','172.71.103.70','2023-12-20 15:22:10','2023-12-20 17:37:37'),(354,10,'olga','162.158.238.251','2023-12-20 18:47:14','2023-12-20 19:47:37'),(355,10,'olga','162.158.222.48','2023-12-20 18:49:17','2023-12-20 20:41:37'),(356,3,'mazen','108.162.242.53','2023-12-20 18:54:08','2023-12-20 23:34:37'),(357,17,'cooley','172.71.99.225','2023-12-21 03:48:18','2023-12-21 07:33:22'),(358,17,'cooley','172.71.102.58','2023-12-21 07:33:25','2023-12-21 08:34:37'),(359,10,'olga','162.158.238.44','2023-12-21 09:00:03','2023-12-21 10:33:37'),(360,20,'Matthew','108.162.220.84','2023-12-21 09:05:18','2023-12-21 16:11:37'),(361,3,'mazen','172.69.214.180','2023-12-21 14:58:15','2023-12-21 16:13:37'),(362,17,'cooley','172.71.103.4','2023-12-21 15:09:32','2023-12-21 16:13:37'),(363,27,'tony','162.158.187.16','2023-12-21 21:34:35','2023-12-22 00:36:37'),(364,10,'olga','162.158.238.72','2023-12-22 06:52:50','2023-12-22 10:07:37'),(365,20,'Matthew','162.158.210.169','2023-12-22 09:31:32','2023-12-24 12:20:37'),(366,24,'szymon','162.158.103.245','2023-12-22 10:00:33','2023-12-22 10:05:36'),(367,24,'szymon','162.158.103.231','2023-12-22 10:13:04','2023-12-22 10:29:14'),(368,10,'olga','162.158.238.73','2023-12-22 12:40:51','2023-12-22 14:50:37'),(369,16,'arbmaniac','172.70.230.52','2023-12-22 13:17:19','2023-12-22 14:22:37'),(370,31,'luxesquire','172.69.146.130','2023-12-23 02:20:09','2023-12-23 17:07:37'),(371,6,'yagoman','172.64.238.65','2023-12-23 10:28:29','2023-12-23 11:28:37'),(372,2,'hema','172.70.91.160','2023-12-23 19:13:38','2023-12-23 20:50:37'),(373,31,'luxesquire','172.68.34.52','2023-12-24 03:31:22','2023-12-24 06:01:37'),(374,24,'szymon','162.158.103.101','2023-12-24 11:19:10','2023-12-24 12:20:37'),(375,2,'hema','162.158.194.135','2023-12-24 16:59:59','2023-12-24 18:00:37'),(376,10,'olga','162.158.238.44','2023-12-25 09:26:58','2023-12-25 11:35:37'),(377,10,'olga','162.158.238.44','2023-12-25 12:08:21','2023-12-25 15:31:37'),(378,10,'olga','162.158.238.251','2023-12-26 06:16:53','2023-12-26 08:05:37'),(379,10,'olga','162.158.238.72','2023-12-26 11:27:31','2023-12-26 13:33:37'),(380,29,'mariusz.grela','172.68.139.63','2023-12-26 12:31:55','2023-12-26 13:33:37'),(381,27,'tony','172.70.210.177','2023-12-26 18:21:17','2023-12-27 02:48:37'),(382,19,'Kamal','172.68.154.141','2023-12-26 21:19:08','2023-12-26 22:21:37'),(383,10,'olga','162.158.238.251','2023-12-27 07:53:11','2023-12-27 09:55:37'),(384,10,'olga','162.158.222.192','2023-12-27 10:59:03','2023-12-27 13:29:37'),(385,19,'Kamal','172.68.154.147','2023-12-27 11:46:28','2023-12-27 12:46:37'),(386,19,'Kamal','172.68.154.147','2023-12-27 11:47:23','2023-12-27 12:47:37'),(387,9,'jeff','162.158.186.150','2023-12-27 16:44:43','2023-12-27 18:31:37'),(388,19,'Kamal','172.68.154.144','2023-12-27 20:40:49','2023-12-27 21:46:37'),(389,10,'olga','172.68.238.20','2023-12-28 06:15:54','2023-12-28 07:24:37'),(390,27,'tony','162.158.186.106','2023-12-28 16:41:31','2023-12-28 18:45:37'),(391,27,'tony','162.158.90.113','2023-12-28 17:51:10','2023-12-28 18:19:19'),(392,19,'Kamal','172.68.154.146','2023-12-28 18:10:07','2023-12-28 20:24:37'),(393,27,'tony','162.158.90.132','2023-12-28 18:19:22','2023-12-28 21:39:37'),(394,19,'Kamal','172.68.154.145','2023-12-28 21:44:00','2023-12-28 23:05:37'),(395,27,'tony','172.70.206.242','2023-12-29 00:12:46','2023-12-29 01:13:37'),(396,10,'olga','162.158.238.251','2023-12-29 06:20:54','2023-12-29 10:53:37'),(397,24,'szymon','162.158.103.232','2023-12-29 13:22:04','2023-12-29 15:30:37'),(398,10,'olga','162.158.238.250','2023-12-29 13:41:00','2023-12-29 15:19:37'),(399,20,'Matthew','108.162.221.129','2023-12-29 14:47:41','2023-12-29 16:55:37'),(400,10,'olga','162.158.238.45','2023-12-29 15:54:51','2023-12-29 17:51:37'),(401,20,'Matthew','108.162.221.130','2023-12-29 19:13:48','2023-12-31 03:38:37'),(402,19,'Kamal','172.68.154.141','2023-12-30 10:51:46','2023-12-30 12:08:37'),(403,31,'luxesquire','172.69.34.146','2023-12-31 02:31:13','2023-12-31 04:52:37'),(404,2,'hema','172.69.43.145','2023-12-31 06:26:42','2023-12-31 07:32:37'),(405,19,'Kamal','172.68.154.142','2023-12-31 09:15:13','2023-12-31 19:04:37'),(406,31,'luxesquire','172.70.210.14','2023-12-31 17:16:48','2024-01-01 01:18:37'),(407,2,'hema','172.70.91.159','2023-12-31 17:52:45','2023-12-31 18:53:37'),(408,6,'yagoman','172.68.134.12','2023-12-31 18:02:34','2023-12-31 19:10:37'),(409,22,'Hallett','172.69.194.254','2024-01-01 13:11:56','2024-01-01 14:17:37'),(410,19,'Kamal','172.68.154.140','2024-01-01 14:20:19','2024-01-01 16:44:37'),(411,19,'Kamal','162.158.54.141','2024-01-01 20:58:21','2024-01-01 23:31:37'),(412,20,'Matthew','172.69.116.131','2024-01-01 22:42:50','2024-01-02 16:10:37'),(413,24,'szymon','162.158.102.27','2024-01-02 06:55:29','2024-01-02 07:14:51'),(414,2,'hema','172.69.43.145','2024-01-02 07:44:28','2024-01-02 08:46:37'),(415,14,'lukasz','172.70.46.237','2024-01-02 14:00:34','2024-01-02 15:01:37'),(416,19,'Kamal','172.68.154.142','2024-01-02 15:09:50','2024-01-02 18:17:37'),(417,20,'Matthew','141.101.105.39','2024-01-02 17:13:54','2024-01-02 18:16:37'),(418,27,'tony','172.70.214.152','2024-01-02 18:37:31','2024-01-02 18:40:34'),(419,19,'Kamal','172.68.154.142','2024-01-02 18:39:24','2024-01-02 19:45:37'),(420,27,'tony','162.158.90.182','2024-01-02 18:44:13','2024-01-02 18:44:52'),(421,27,'tony','162.158.90.182','2024-01-02 18:44:56','2024-01-02 19:45:37'),(422,24,'szymon','162.158.102.27','2024-01-02 19:47:37','2024-01-02 21:08:37'),(423,27,'tony','162.158.186.195','2024-01-02 20:17:08','2024-01-02 21:39:37'),(424,2,'hema','141.101.98.133','2024-01-03 06:46:19','2024-01-03 09:04:37'),(425,2,'hema','172.69.43.145','2024-01-03 10:01:50','2024-01-03 11:02:37'),(426,14,'lukasz','172.70.47.19','2024-01-03 11:48:43','2024-01-03 13:34:37'),(427,24,'szymon','172.68.138.201','2024-01-03 13:28:00','2024-01-03 14:50:37'),(428,2,'hema','141.101.98.19','2024-01-03 17:13:00','2024-01-03 18:13:37'),(429,31,'luxesquire','172.70.211.128','2024-01-03 18:09:59','2024-01-04 03:37:37'),(430,4,'pablojoy','162.158.129.7','2024-01-03 18:51:44','2024-01-03 19:59:37'),(431,19,'Kamal','172.68.154.143','2024-01-03 19:34:56','2024-01-03 22:04:37'),(432,10,'olga','172.70.111.67','2024-01-04 07:51:44','2024-01-04 14:05:37'),(433,20,'Matthew','108.162.220.84','2024-01-04 09:46:56','2024-01-04 14:06:37'),(434,14,'lukasz','172.71.103.45','2024-01-04 10:59:21','2024-01-04 12:11:37'),(435,2,'hema','172.69.194.53','2024-01-04 11:07:03','2024-01-04 12:11:37'),(436,19,'Kamal','172.70.143.23','2024-01-04 12:09:42','2024-01-04 13:13:37'),(437,24,'szymon','172.68.139.63','2024-01-04 13:05:20','2024-01-04 14:06:37'),(438,19,'Kamal','172.70.142.25','2024-01-04 13:49:37','2024-01-04 14:50:37'),(439,14,'lukasz','172.70.46.119','2024-01-04 16:00:43','2024-01-04 17:59:37'),(440,19,'Kamal','172.68.154.140','2024-01-04 18:05:26','2024-01-04 20:38:37'),(441,31,'luxesquire','162.158.186.195','2024-01-04 19:37:44','2024-01-05 06:42:37'),(442,19,'Kamal','172.68.154.146','2024-01-05 04:03:36','2024-01-05 06:36:37'),(443,10,'olga','162.158.238.250','2024-01-05 06:45:44','2024-01-05 11:15:37'),(444,17,'cooley','172.71.98.36','2024-01-05 09:22:38','2024-01-05 10:23:37'),(445,2,'hema','172.70.86.50','2024-01-05 09:37:01','2024-01-05 10:37:37'),(446,31,'luxesquire','172.69.34.53','2024-01-05 10:29:16','2024-01-05 11:40:37'),(447,31,'luxesquire','162.158.90.126','2024-01-05 17:38:27','2024-01-05 20:48:37'),(448,31,'luxesquire','172.69.34.53','2024-01-06 00:58:47','2024-01-06 01:59:37'),(449,31,'luxesquire','172.70.210.156','2024-01-06 06:00:16','2024-01-06 09:30:37'),(450,31,'luxesquire','162.158.186.128','2024-01-06 09:35:34','2024-01-06 11:30:37'),(451,2,'hema','172.71.242.83','2024-01-06 13:52:49','2024-01-06 14:53:37'),(452,31,'luxesquire','162.158.90.13','2024-01-06 18:34:48','2024-01-06 19:50:37'),(453,31,'luxesquire','162.158.91.19','2024-01-06 20:03:52','2024-01-07 02:47:37'),(454,31,'luxesquire','172.70.215.9','2024-01-07 06:39:54','2024-01-07 08:27:37'),(455,19,'Kamal','172.68.154.142','2024-01-07 16:44:06','2024-01-07 18:41:37'),(456,31,'luxesquire','172.69.34.48','2024-01-07 18:41:32','2024-01-07 20:04:37'),(457,19,'Kamal','172.68.154.143','2024-01-07 19:03:49','2024-01-07 20:04:37'),(458,31,'luxesquire','172.70.210.130','2024-01-07 20:20:15','2024-01-08 00:50:37'),(459,14,'lukasz','172.71.182.35','2024-01-08 10:34:12','2024-01-08 11:34:37'),(460,10,'olga','162.158.222.8','2024-01-08 13:37:01','2024-01-08 14:43:37'),(461,14,'lukasz','172.71.98.59','2024-01-08 13:43:08','2024-01-08 23:33:37'),(462,19,'Kamal','172.70.142.221','2024-01-08 16:02:52','2024-01-08 17:48:37'),(463,19,'Kamal','162.158.54.139','2024-01-08 18:04:29','2024-01-08 19:56:37'),(464,13,'fouad','108.162.242.54','2024-01-08 18:26:17','2024-01-08 18:27:06'),(465,13,'fouad','108.162.241.226','2024-01-08 18:27:14','2024-01-08 20:24:37'),(466,31,'luxesquire','162.158.245.74','2024-01-08 21:46:36','2024-01-09 01:37:37'),(467,19,'Kamal','172.68.154.146','2024-01-08 21:51:15','2024-01-08 22:52:37'),(468,2,'hema','172.71.242.71','2024-01-09 06:40:09','2024-01-09 07:43:37'),(469,10,'olga','162.158.238.57','2024-01-09 06:52:10','2024-01-09 09:23:37'),(470,20,'Matthew','141.101.105.39','2024-01-09 07:39:31','2024-01-09 11:04:37'),(471,19,'Kamal','172.70.142.132','2024-01-09 09:05:26','2024-01-09 11:26:37'),(472,6,'yagoman','172.64.238.65','2024-01-09 09:39:09','2024-01-09 11:07:37'),(473,2,'hema','172.70.86.47','2024-01-09 09:54:13','2024-01-09 10:56:37'),(474,34,'nick','172.69.194.113','2024-01-09 10:01:59','2024-01-09 10:11:55'),(475,34,'nick','162.158.202.20','2024-01-09 10:12:05','2024-01-09 10:15:25'),(476,2,'hema','172.70.90.121','2024-01-09 11:21:55','2024-01-09 12:22:37'),(477,20,'Matthew','141.101.105.109','2024-01-09 11:30:10','2024-01-09 12:58:37'),(478,10,'olga','162.158.238.250','2024-01-09 11:57:43','2024-01-09 16:01:37'),(479,19,'Kamal','172.70.147.60','2024-01-09 12:39:37','2024-01-09 15:01:37'),(480,19,'Kamal','172.70.219.26','2024-01-09 15:44:54','2024-01-09 17:34:37'),(481,19,'Kamal','172.71.202.52','2024-01-09 17:42:56','2024-01-09 19:15:37'),(482,19,'Kamal','172.68.154.146','2024-01-09 19:29:13','2024-01-09 20:29:37'),(483,10,'olga','162.158.238.73','2024-01-10 06:33:46','2024-01-10 20:45:37'),(484,19,'Kamal','172.70.143.51','2024-01-10 12:58:52','2024-01-10 13:59:37'),(485,2,'hema','172.70.90.120','2024-01-10 14:37:23','2024-01-10 16:19:37'),(486,19,'Kamal','172.68.154.146','2024-01-10 15:24:38','2024-01-10 16:26:37'),(487,22,'Hallett','172.70.85.93','2024-01-10 20:44:23','2024-01-10 21:44:37'),(488,10,'olga','162.158.238.44','2024-01-11 07:54:18','2024-01-11 12:12:37'),(489,14,'lukasz','172.71.98.110','2024-01-11 12:12:58','2024-01-11 15:22:37'),(490,14,'lukasz','172.71.98.58','2024-01-11 15:26:39','2024-01-11 16:27:37'),(491,2,'hema','172.71.242.102','2024-01-11 15:30:13','2024-01-11 16:33:37'),(492,35,'Michał','172.68.139.63','2024-01-11 15:38:10','2024-01-11 19:08:37'),(493,10,'olga','162.158.222.8','2024-01-11 18:07:48',NULL);
/*!40000 ALTER TABLE `guacamole_user_history` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `guacamole_user_password_history`
--
DROP TABLE IF EXISTS `guacamole_user_password_history`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `guacamole_user_password_history` (
`password_history_id` int NOT NULL AUTO_INCREMENT,
`user_id` int NOT NULL,
`password_hash` binary(32) NOT NULL,
`password_salt` binary(32) DEFAULT NULL,
`password_date` datetime NOT NULL,
PRIMARY KEY (`password_history_id`),
KEY `user_id` (`user_id`),
CONSTRAINT `guacamole_user_password_history_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `guacamole_user` (`user_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `guacamole_user_password_history`
--
LOCK TABLES `guacamole_user_password_history` WRITE;
/*!40000 ALTER TABLE `guacamole_user_password_history` DISABLE KEYS */;
/*!40000 ALTER TABLE `guacamole_user_password_history` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `guacamole_user_permission`
--
DROP TABLE IF EXISTS `guacamole_user_permission`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `guacamole_user_permission` (
`entity_id` int NOT NULL,
`affected_user_id` int NOT NULL,
`permission` enum('READ','UPDATE','DELETE','ADMINISTER') NOT NULL,
PRIMARY KEY (`entity_id`,`affected_user_id`,`permission`),
KEY `guacamole_user_permission_ibfk_1` (`affected_user_id`),
CONSTRAINT `guacamole_user_permission_entity` FOREIGN KEY (`entity_id`) REFERENCES `guacamole_entity` (`entity_id`) ON DELETE CASCADE,
CONSTRAINT `guacamole_user_permission_ibfk_1` FOREIGN KEY (`affected_user_id`) REFERENCES `guacamole_user` (`user_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `guacamole_user_permission`
--
LOCK TABLES `guacamole_user_permission` WRITE;
/*!40000 ALTER TABLE `guacamole_user_permission` DISABLE KEYS */;
INSERT INTO `guacamole_user_permission` VALUES (1,1,'READ'),(1,1,'UPDATE'),(1,1,'ADMINISTER'),(1,2,'READ'),(1,2,'UPDATE'),(1,2,'DELETE'),(1,2,'ADMINISTER'),(2,2,'READ'),(2,2,'UPDATE'),(2,3,'READ'),(2,3,'UPDATE'),(2,3,'DELETE'),(2,3,'ADMINISTER'),(3,3,'READ'),(3,3,'UPDATE'),(2,4,'READ'),(2,4,'UPDATE'),(2,4,'DELETE'),(2,4,'ADMINISTER'),(4,4,'READ'),(4,4,'UPDATE'),(2,5,'READ'),(2,5,'UPDATE'),(2,5,'DELETE'),(2,5,'ADMINISTER'),(5,5,'READ'),(5,5,'UPDATE'),(2,6,'READ'),(2,6,'UPDATE'),(2,6,'DELETE'),(2,6,'ADMINISTER'),(6,6,'READ'),(6,6,'UPDATE'),(2,7,'READ'),(2,7,'UPDATE'),(2,7,'DELETE'),(2,7,'ADMINISTER'),(7,7,'READ'),(7,7,'UPDATE'),(2,8,'READ'),(2,8,'UPDATE'),(2,8,'DELETE'),(2,8,'ADMINISTER'),(8,8,'READ'),(8,8,'UPDATE'),(2,9,'READ'),(2,9,'UPDATE'),(2,9,'DELETE'),(2,9,'ADMINISTER'),(9,9,'READ'),(9,9,'UPDATE'),(2,10,'READ'),(2,10,'UPDATE'),(2,10,'DELETE'),(2,10,'ADMINISTER'),(10,10,'READ'),(10,10,'UPDATE'),(2,11,'READ'),(2,11,'UPDATE'),(2,11,'DELETE'),(2,11,'ADMINISTER'),(11,11,'READ'),(11,11,'UPDATE'),(2,12,'READ'),(2,12,'UPDATE'),(2,12,'DELETE'),(2,12,'ADMINISTER'),(12,12,'READ'),(12,12,'UPDATE'),(2,13,'READ'),(2,13,'UPDATE'),(2,13,'DELETE'),(2,13,'ADMINISTER'),(13,13,'READ'),(13,13,'UPDATE'),(2,14,'READ'),(2,14,'UPDATE'),(2,14,'DELETE'),(2,14,'ADMINISTER'),(14,14,'READ'),(14,14,'UPDATE'),(2,15,'READ'),(2,15,'UPDATE'),(2,15,'DELETE'),(2,15,'ADMINISTER'),(15,15,'READ'),(15,15,'UPDATE'),(2,16,'READ'),(2,16,'UPDATE'),(2,16,'DELETE'),(2,16,'ADMINISTER'),(16,16,'READ'),(16,16,'UPDATE'),(2,17,'READ'),(2,17,'UPDATE'),(2,17,'DELETE'),(2,17,'ADMINISTER'),(17,17,'READ'),(2,18,'READ'),(2,18,'UPDATE'),(2,18,'DELETE'),(2,18,'ADMINISTER'),(18,18,'READ'),(18,18,'UPDATE'),(2,19,'READ'),(2,19,'UPDATE'),(2,19,'DELETE'),(2,19,'ADMINISTER'),(19,19,'READ'),(19,19,'UPDATE'),(2,20,'READ'),(2,20,'UPDATE'),(2,20,'DELETE'),(2,20,'ADMINISTER'),(20,20,'READ'),(20,20,'UPDATE'),(2,21,'READ'),(2,21,'UPDATE'),(2,21,'DELETE'),(2,21,'ADMINISTER'),(21,21,'READ'),(21,21,'UPDATE'),(2,22,'READ'),(2,22,'UPDATE'),(2,22,'DELETE'),(2,22,'ADMINISTER'),(22,22,'READ'),(22,22,'UPDATE'),(2,23,'READ'),(2,23,'UPDATE'),(2,23,'DELETE'),(2,23,'ADMINISTER'),(23,23,'READ'),(23,23,'UPDATE'),(2,24,'READ'),(2,24,'UPDATE'),(2,24,'DELETE'),(2,24,'ADMINISTER'),(24,24,'READ'),(24,24,'UPDATE'),(2,25,'READ'),(2,25,'UPDATE'),(2,25,'DELETE'),(2,25,'ADMINISTER'),(25,25,'READ'),(25,25,'UPDATE'),(2,26,'READ'),(2,26,'UPDATE'),(2,26,'DELETE'),(2,26,'ADMINISTER'),(26,26,'READ'),(26,26,'UPDATE'),(2,27,'READ'),(2,27,'UPDATE'),(2,27,'DELETE'),(2,27,'ADMINISTER'),(27,27,'READ'),(27,27,'UPDATE'),(2,28,'READ'),(2,28,'UPDATE'),(2,28,'DELETE'),(2,28,'ADMINISTER'),(28,28,'READ'),(2,29,'READ'),(2,29,'UPDATE'),(2,29,'DELETE'),(2,29,'ADMINISTER'),(29,29,'READ'),(29,29,'UPDATE'),(2,30,'READ'),(2,30,'UPDATE'),(2,30,'DELETE'),(2,30,'ADMINISTER'),(31,30,'READ'),(31,30,'UPDATE'),(2,31,'READ'),(2,31,'UPDATE'),(2,31,'DELETE'),(2,31,'ADMINISTER'),(32,31,'READ'),(32,31,'UPDATE'),(2,32,'READ'),(2,32,'UPDATE'),(2,32,'DELETE'),(2,32,'ADMINISTER'),(33,32,'READ'),(33,32,'UPDATE'),(2,33,'READ'),(2,33,'UPDATE'),(2,33,'DELETE'),(2,33,'ADMINISTER'),(34,33,'READ'),(34,33,'UPDATE'),(2,34,'READ'),(2,34,'UPDATE'),(2,34,'DELETE'),(2,34,'ADMINISTER'),(35,34,'READ'),(35,34,'UPDATE'),(2,35,'READ'),(2,35,'UPDATE'),(2,35,'DELETE'),(2,35,'ADMINISTER'),(36,35,'READ'),(36,35,'UPDATE');
/*!40000 ALTER TABLE `guacamole_user_permission` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2024-01-11 19:45:32